For the old posts you are hiding featured images using temporary fix as stated above but for new posts you are displaying featured images therefore it displays with default featured image size which you can see on our demo site here https://gillion.shufflehound.com/2017/01/31/what-to-look-forward-in-2017-style-wise/
To make it convenient to use above solution for others, I have implemented the solution in the attached Gillion Child theme.
To achieve that please use the following CSS code instead of shared above.
.cat-item, .post-categories{
font-size: 0;
}
.cat-item a,
.post-categories a {
display: none;
}
.cat-item a[href*="zambales"],
.cat-item a[href*="cebu"],
.post-categories a[href*="zambales"],
.post-categories a[href*="cebu"] {
display: block;
}You can disable it developing custom code as described in the following pages.
https://snippets.khromov.se/stop-visual-composer-activation-nag/
https://www.wpoptimus.com/626/7-ways-disable-update-wordpress-notifications/
You are most welcome here 🙂
Hi @kmga,
I hope you are well today and thank you for your question.
You can display first category of them 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
.cat-item, .post-categories{
font-size: 0;
}
.cat-item a,
.post-categories a {
display: none;
}
.cat-item a:first-child,
.post-categories a:first-child {
display: block;
}
Best regards,
Shufflehound team
It is working fine for me.
Please try changing above CSS code as following.
.archive.category .titlebar-title {
display: none !important;
}
If it still doesn’t work for you then could you please share me your site URL where it’s happening so that i can troubleshoot it?
You are most welcome here 🙂
Hi Adam,
I hope you are well today and thank you for your question.
I logged in to your site and used Yellow Pencil Editor on it but didn’t see any animation on the shop button as shown in the attached screenshot.
Could you please tell me what type of animation you have applied on the button and when does it play?
Best regards,
Shufflehound team
You can share me your site log in details privately by adding them in the box having text “Click here to share private content. Only you and forum moderators will be able see it.”.
Solution for this topic
Hi Eric,
I hope you are well today and thank you for your question.
You can remove 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
.woocommerce .product .product_meta > span.posted_in {
display: none;
}
Best regards,
Shufflehound team
You are most welcome here 🙂
Solution for this topic
Hi @brank87,
I hope you are well today and thank you for your question.
You can achieve this by configuring the new social icon as shown in the attached screenshot. You can use any whatsapp URl that you want there.
Then add 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
a.social-media-wordpress i {
background: url("https://cdn2.iconfinder.com/data/icons/social-media-logos-linear-black/614/5302_-_Whatsapp-128.png") no-repeat center;
background-size: 100%;
height: 16px;
width: 21px;
}
a.social-media-wordpress i:before{
display:none;
}
Best regards,
Shufflehound team
Hi @asierratorres,
I hope you are well today and thank you for your question.
It is displayed on the demo site using the attached custom plugin.
Best regards,
Shufflehound team
Solution for this topic
You can achieve 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
@media (min-width: 800px) {
section#objectives .sh-column.fw-col-xs-12.fw-col-sm-6 {
float: right;
}
}You are most welcome here 🙂
Please update the theme as described in the following topic.
We can remove it developing custom CSS code when you don’t need it.
If you don’t need it now then could you please share me the page URL from your site where it is displaying so that i can help you to remove it?
Then please try temporary deactivating Yellow Pencil plugin to see whether it works fine.