This topic has 15 replies, 2 voices, and was last updated 5 years, 7 months ago ago by Rose Tyler
Hi,
I want to remove the quickview for some article, is it possible ?
Regards
Hello,
Thanks for using our theme.
Where exactly do you want to disable it?
“Quick view” can be disabled for all products via Theme Options > Shop elements.
Regards
Hello
This is a screenshot.
Can i disable it on some items, it is hidding some products like bags?
Thanks
Hello,
You can use such screenshot maker as Lightshot https://prnt.sc/
Disable “footer-product” on page of this category “term-tote-bag” by adding code in Theme Options > Custom CSS > Global custom CSS:
.term-tote-bag .footer-product {
display: none;
}
Regards
thank you it is working
I have another question, how do i remove the SKU on your theme ?
To remove SKU from Single product page you can add this PHP Snippet in functions.php of child-theme – https://businessbloomer.com/woocommerce-hide-sku-front-end/
add_filter( 'wc_product_sku_enabled', 'custom_remove_product_page_sku' );
function custom_remove_product_page_sku( $enabled ) {
if ( !is_admin() && is_product() ) {
return false;
}
return $enabled;
}
OR
add this code in Theme Options > Custom CSS > Global custom CSS:
.single-product .product_meta .sku_wrapper {
display: none;
}
Regards
I put the code, it is removing the sku on the product page but not in the quick view
can you help me ?
i want to hide the categories, calendar and search on my checkout page and my account
Hello,
1)
.product_meta .sku_wrapper {
display: none;
}
2) Theme Options > Blog > Sidebar position > Widthout. Also, you can disable the sidebar for a page separately, go to Edit page > http://prntscr.com/n4zbvk
Regards
Thanks for your help,
1) it is not still not working for the ski on the quick view.
it is ok for the 2)
Hello,
1) Have you cleared cache? Please provide URL of page where I will be able to open the quick view and see the SKU.
2) Great.
Regards
Hello
This is the link.
Hello,
On your site I can see this code http://prntscr.com/n6sxdn, not this one http://prntscr.com/n6syky
because of cache I can’t say for sure where it comes from, if you have this code in the Custom CSS area, change it to http://prntscr.com/n6sy5b
Do not forget to clear cache before checking the result.
If the problem won’t be solved, provide temporary wp-admin access, so I can take a closer look.
Regards
Thanks for your help, i don’t know why it is not working in your global css section,
i put the code directly on the css theme in the css additional, it is ok now.
You’re welcome!
We don’t have access to your Dashboard to check, so I don’t know also.
You can use Global custom CSS area, style.css file of a child-theme or Customizing > Additional CSS area, but do not edit style.css file of the parent theme, because changes will be lost after update of XStore theme.
Feel free to ask if you have any other questions.
Regards
You must be logged in to reply to this topic.Log in/Sign up