Home › Forums › Jevelin Theme › Jevelin Questions
Home › Forums › Jevelin Theme › Jevelin Questions
I wanted to know how I can update the theme? I keep getting emails
saying there is an update to the theme, but when I’m in the wordpress back end
and logged in, there are no available updates for the theme. Can you
please advise how to update to the latest theme version?
Also, I’m using the blog version and have attached an image of what it
currently looks like. For just normal blogs, on the home page, I don’t
want the hover option to either link to the blog or to expand the
image. When someone clicks on the blog, I want it to automatically
link to the blog and not give the option to link or expand the photo.
How can I do this? (I realise this will be different for embedded
video and galleries.)
Also, how can I hide the ‘tags’ at the bottom of each blog? There
doesn’t seem to be an option to hide the tags.
Thanks
Solution for this topic
Hi @jordenteo,
I hope you are well today and thank you for your questions.
I wanted to know how I can update the theme? I keep getting emails
saying there is an update to the theme, but when I’m in the wordpress back end
and logged in, there are no available updates for the theme. Can you
please advise how to update to the latest theme version?
You can update the theme as described on this page http://docs.rescuethemes.com/article/59-how-do-i-update-my-themeforest-theme
Alternatively you can also update the theme by deleting existing theme and using latest version of it from http://support.shufflehound.com/download/jevelin-beta/
Also, I’m using the blog version and have attached an image of what it
currently looks like. For just normal blogs, on the home page, I don’t
want the hover option to either link to the blog or to expand the
image. When someone clicks on the blog, I want it to automatically
link to the blog and not give the option to link or expand the photo.
How can I do this? (I realise this will be different for embedded
video and galleries.)
It seems you have missed to attach an image so could you please share it along with your site URL where it is displaying?
Also, how can I hide the ‘tags’ at the bottom of each blog? There
doesn’t seem to be an option to hide the tags.
You can try achieving it by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.blog-single .sh-blog-tags {
display: none;
}
Best regards,
Shufflehound team
Thanks for your help! I managed to update the theme and also hide the tags.
The other query was how can I make standard blogs not have the hover option on the home page. I’ve attached a screen shot to show when you hover over the standard blog it give the option to either link to the blog, or to expand the photo. I don’t want this at all. I would like a hover to do nothing (not grey out the picture) and by clicking on the image, or the actual title of the blog, will then open the blog on its page.
Also, how can you hide the number of comments on each blog on the home page? (you’ll see on the same screenshot, the number 0 next to a grey speech bubble)
Thanks
You can try achieving both of this by configuring theme blog settings as shown in the attached screenshots.
Thanks.
I want the comments enabled, but I don’t want the number of comments to be displayed on the home page, I only want people to see them at the bottom of each blog.
If I turn off the comments as per the above screenshots you attached, it completely disables the comments.
I just want the greyed out speech bubble and the number zero removed from the home page which displays all of the blogs as per the attached screenshot.
Solution for this topic
Please use the below custom CSS code to disable comments on home page.
body.home .post-meta-two .sh-columns.post-meta-comments .post-meta-comments {
display: none;
}
Thanks.
Can you also please provide me with the CSS code so that I can remove the category of the blog and also the grey line that sits below the blog preview on the home page?
On the above (previous) screenshot I sent through, it’s the word uncategorized and the grey line. I want to keep the categories for blogs and for them to be displayed once you on the blog’s page, but I just don’t want this displayed on the home page.
Solution for this topic
You can use the below CSS code to remove the category and grey line.
body.home .post-meta.post-meta-two{
display: none;
}
Thank you.
Is it possible to change the style of the ‘recent posts’ in both the footer widget and sidebar widget inside each blog?
When you hover over the thumbnail image, I don’t want the ‘link’ symbol to appear, I just want the image to turn blue as if it was being selected.
Also, I want the number of comments (the blue number zero) to be hidden.
I would like the category to be hidden as well, so that would just leave the thumbnail image and the title of the blog.
Is it also possible to have a post preview appear?
Thanks
Could you please share me your site URL where it’s displaying so that i can help you to achieve it?
Also to help us keep support thread separates could you please create new thread for each of your other questions, instead of asking them in your single thread as it makes the thread messy and hard to read.
If you want to you can also add reference of this thread in your newly created thread.
The URL is: http://jordenteo.com
And you’ll see the recent posts sections I’m referencing in the bottom footer on the left hand side.
I’m also referencing the widget in the right hand column when you go into any blog.
Use the below custom CSS code to achieve this.
.sh-recent-posts-widgets i.icon-link,
.sh-recent-posts-widgets-item-content span.post-meta-categories,
.sh-recent-posts-widgets .sh-recent-posts-widgets-count {
display: none;
}