ReThink Blog Page Changes

Discussion in 'ReThink WordPress Theme' started by ldriley66, Dec 8, 2015.

  1. ldriley66

    ldriley66 New Member

    Joined:
    Dec 5, 2015
    Messages:
    6
    Likes Received:
    0
    Hello, here's what I would like to do for my ReThink theme...

    1) Remove the green "Read Review" button the the main blog roll page

    2) On the individual blog page itself, remove the "The post written by..." shaded box

    3) Remove the "comments closed" text at the bottom of the page.

    There will be only one author for posts (and it's listed on the post itself) and I'd like to comment features permanently disabled.

    Thanks
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    As per your above requirements, solutions are accordingly.

    1) Remove the green "Read Review" button the main blog roll page

    For this, you just need to paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .product .buttons {
        display: none !important;
    }
    2) On the individual blog page itself, remove the "The post written by..." shaded box

    Code is given below,
    Code:
    .post_meta li.admin {
        display: none !important;
    }
    3) Remove the "comments closed" text at the bottom of the page.

    For this, please provide us your site URL with screenshot so that we can assist you accordingly.

    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. ldriley66

    ldriley66 New Member

    Joined:
    Dec 5, 2015
    Messages:
    6
    Likes Received:
    0
    Thank you. The site isn't accessible live right now but here is a screen shot.

    The first modification worked well (removing the button from the blog roll) but the second removed the name from the title line and not the shaded box below the post. I'd like to have the name in the title line (so I removed that second mod). Can you remove the shaded box with "This post was written by Derek"? Also, you can see the "comments are closed" text at the bottom? Can you remove this? Again, there won't be feedback on this.

    Thanks!
     

    Attached Files:

  4. priya

    priya Guest

    Hello,​
    Regarding your second issue, let me tell you that we didn't find such shaded box at our end.​
    Now for the last issue i.e. to remove "Comment are closed" text,​
    You just need to paste the code given below in Custom CSS section(Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #commentsbox {
        display: none !important;
    }
    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  5. ldriley66

    ldriley66 New Member

    Joined:
    Dec 5, 2015
    Messages:
    6
    Likes Received:
    0
    Thanks, the "comments are closed" text is gone.

    So you didn't find code for the shaded box that contains the text "This post was written by Derek" like in the screen shot? Any thoughts where it came from? (the yellow box)

    The only other edit would be to remove the "No Comments" and the dialog icon in the line below the title...see yellow highlight

    You've been VERY helpful so whatever you can do is great.

    Thx
     

    Attached Files:

  6. priya

    priya Guest

    Hello,

    Sorry, we didn't find any shaded box at our end, please have a look over the below screenshot.

    rethink_user.png

    It seems that you are using any plugin for this section.

    To remove the "No Comments", use below code in Custom CSS field of your dashboard.
    Code:
    .product-info .post_meta li.commentt {
        display: none !important;
    }
    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  7. ldriley66

    ldriley66 New Member

    Joined:
    Dec 5, 2015
    Messages:
    6
    Likes Received:
    0
    OK, thanks! I've looked through all my plugins and can't seen to figure out what's putting it there. One last try...attached is the code for my blog page template...can you find it there? Perhaps this isn't the best way to go (In the example I did find and remove the text "This post written by..."

    Finally, the "No Comment" was removed just fine for the individual post page but can you also remove it from the blog roll? See attached. This is a bit of work and I'd be happy to submit payment.
     

    Attached Files:

  8. priya

    priya Guest

    Hello,

    It's not a big issue to remove that shaded area ("This post written by...") but believe me without your site URL it will be difficult for us to provide you any solution as you can see in my last post screenshot that we didn't find any shaded area at our end..

    So it would be better to either provide us your site URL or dashboard credentials at [email protected] along with this thread link so that we can easily resolve your issue.

    Regarding your second issue i.e. to remove "No Comment",

    Please paste the code given below in Custom CSS section of your dashboard.
    Code:
    .product .post_meta li.commentt {
        display: none !important;
    }
    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  9. onlyzaman

    onlyzaman New Member

    Joined:
    Jun 6, 2016
    Messages:
    13
    Likes Received:
    0
    Hello Boss....How did you remove 'This post written by..."
     
  10. priya

    priya Guest

    Hi,

    For that, code is given below..
    Code:
    .author_info {
        display: none;
    }
    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  11. onlyzaman

    onlyzaman New Member

    Joined:
    Jun 6, 2016
    Messages:
    13
    Likes Received:
    0
    Hello Priya
    last few days I was struggling to remove h1 title for post page. I was given this two css code and none of them worked. But I solved by downloading a plugin called 'Hide Title' and it worked. I am sharing this info so that it might help someone. Now I need to remove ' This post was written by '. The code you have given me above is not working.

    These two codes to remove h1 post title done work

    1.
    .product .product_title {
    display: none;
    }
    2.
    .content_bar .product-info h1.page-heading {
    display: none;
    }

    I need the code to remove ' This post was written by '. The above solution doesn't work

    thanks
     
  12. nitin

    nitin Guest

    Hi,

    Hope you are doing good...!

    You can try the custom CSS code given below:-

    Code:
    .author_info {
        display: none !important;
    }
    
    If you are still unable to see the changes, it must be the cache issue on your browser. For once, try refreshing the page by pressing Ctrl+F5 and then clearing your web browser's cache. Also, clear the contents of any cache plugin if you are using.

    If the problem persists, do let me know.

    Thanks & Regards!
    Nitin
    InkThemes.com
     
  13. onlyzaman

    onlyzaman New Member

    Joined:
    Jun 6, 2016
    Messages:
    13
    Likes Received:
    0
    It didnt work Nitin :(
     
  14. priya

    priya Guest

    Hi,

    Would you please clear you cache and check the changes after that..?

    Hope it will resolve your issue

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  15. onlyzaman

    onlyzaman New Member

    Joined:
    Jun 6, 2016
    Messages:
    13
    Likes Received:
    0
    thanks Priya....... Its a basic thing i always do that I change something. IT DIDNT WORK.
     
  16. priya

    priya Guest

    Hi,

    You are kindly requested to make your site live first and then send us your site URL so that I can give you solution accordingly..

    Or send us your dashboard details at [email protected] along with this thread link..

    Looking forward to your reply.

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  17. onlyzaman

    onlyzaman New Member

    Joined:
    Jun 6, 2016
    Messages:
    13
    Likes Received:
    0
    Thanks Priya..... I will make my site live later when I am done. Then I will ask you again. Thanks for your support.
    regards :)
     
  18. priya

    priya Guest

    Alright...!!!:)
     

Share This Page