I have already notified the theme developer about this so that it will be fixed.
The issue will be fixed ASAP.
I can see you are using older version of theme on your site so could you please update the theme to the below latest version?
Please login to access this file
You can update it by either deleting existing theme and then install latest theme version of it or use the following plugin to update the theme.
https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/
After activating the above plugin just install the downloaded theme on your site.
You won’t lose your site content after updating the theme but for safer side you can take backup of your site before updating the theme.
Solution for this topic
I now have another issue that’s related (shown in attachments). My store displays the breadcrumb correctly, but products will display the wrong parent breadcrumb. Clicking the “incorrect” breadcrumb will still take you back to the store with the correct name.
Anything I might need to change in that custom breadcrumb function?
You can achieve that by adding below code in the functions.php file of your child theme.
function vvd_change_post_labels($post_type, $args){ /* change assigned labels */ global $wp_post_types; if($post_type != 'product') return; $wp_post_types[$post_type]->labels->name = __( 'Shop', 'woocommerce'); } add_action('registered_post_type', 'vvd_change_post_labels', 2, 2);
Hi @Koygani,
I hope you are well today and thank you for your question.
You can resolve 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.single-product .product .summary { position: static; } .woocommerce.single-product .sh-woo-layout-right.col-md-6 { float: none; margin: 0 auto; }
Best regards,
Shufflehound team
Solution for this topic
Hi @samv,
I hope you are well today and thank you for your question.
You can just hide that text 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
.page-template-page-blog article .post-content { display: none; }
Best regards,
Shufflehound team
In that case please tell me which Header Layout you are using on your site and share me whole screen screenshots instead of partial screenshots which you shared above.
@Worldfutureshift You will have theme updates forever.
If you have further questions then to help us keep support thread separates could you please create your own thread for your question instead of replying on others 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.
We would be more than happy to help you on your new thread.
1.) I would like my top header (with the contact information) to be white, with grey text. However, I can’t seem to adjust the text color to anything other than white.
You can change it from theme styling settings as displayed in the attached screenshot.
If it doesn’t work for you then 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
#page-container .primary-desktop .sh-header-top:not(.sh-header-top-10) { background-color: #fff !important; } #page-container .primary-desktop .sh-header-top:not(.sh-header-top-10) * { color: #808080 !important; }
2.) Can you pls tell me the correct logo size? It is coming through fuzzy or too large.
You can set whatever width you want but maximum height allowed is 250px as shown in the attached screenshot.
I logged in to your site and troubleshooted the issue.
For those categories instead of category name please use category slug as shown in the attached screenshots.
@onsicht Your question is different from the question asked in this topic so to help us keep support thread separates could you please create your own thread for your question instead of replying on others 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.
We would be more than happy to help you on your new thread.
We are troubleshooting it and will update you here soon.
Would you mind if i log in to your site and do some troubleshooting? If this is ok then could you please 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 bee able see it.”?
Hi @siberus,
I hope you are well today and thank you for your question.
In WordPress posts are created to display dynamic content and pages are used to display static content but if you want to use pages instead of posts then to achieve this, you have to develop custom code in the child theme of Gillion theme.
Developing custom code for custom functionality is beyond the scope of support that we provide here.
If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site. Shufflehound recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5
Best regards,
Shufflehound team
You are most welcome here 🙂
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
.error404 .header-logo { background: url("https://rednugget.fr/wp-content/uploads/2017/12/RedNugget-lab-min.png") no-repeat; background-size: 100%; } .error404 .header-logo img { visibility: hidden; }
You are most welcome here 🙂
Solution for this topic
You can change browser shop page title as described in the following pages.
http://www.cpu20.com/2016/change-woocommerce-shop-title-product-archive-to-something-meaningful/
https://kb.yoast.com/kb/how-do-i-change-the-woocommerce-shop-page-title/
You can change breadcrumb title by developing custom code in the child theme shared in the following topic.
https://support.shufflehound.com/forums/topic/titlebar-of-shop-page-product/#post-13547
I could confirm the issue on your site but it seems you are using older version of theme on your site so please update your theme to the below latest version.
Please login to access this file
If the issue still persists then Would you mind if i log in to your site and do some troubleshooting? If this is ok then could you please 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 bee able see it.”?
Hi B,
I hope you are well today and thank you for your question.
The Yellow Pencil Editor provides functionality to edit styling of content but not actual content.
To edit content you can use post or page editor in the admin area of site as shown in the attached screenshot.
Best regards,
Shufflehound team
Solution for this topic
Hi @siberus,
I hope you are well today and thank you for your question.
You can change it by overwriting and editing the theme file /gillion/inc/templates/titlebar.php in the Gillion child theme.
Best regards,
Shufflehound team