Quickview - by squalle - on WordPress WooCommerce support

This topic has 15 replies, 2 voices, and was last updated 5 years ago ago by Rose Tyler

  • Avatar: squalle
    squalle
    Participant
    March 24, 2019 at 22:22

    Hi,
    I want to remove the quickview for some article, is it possible ?
    Regards

    14 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 25, 2019 at 07:54

    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

    Avatar: squalle
    squalle
    Participant
    March 25, 2019 at 08:25

    Hello
    This is a screenshot.
    Can i disable it on some items, it is hidding some products like bags?

    Thanks

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 25, 2019 at 08:46

    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

    Avatar: squalle
    squalle
    Participant
    March 28, 2019 at 23:37

    thank you it is working

    Avatar: squalle
    squalle
    Participant
    March 28, 2019 at 23:59

    I have another question, how do i remove the SKU on your theme ?

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 29, 2019 at 08:08

    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

    Avatar: squalle
    squalle
    Participant
    March 30, 2019 at 00:04

    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

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 30, 2019 at 08:41

    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

    Avatar: squalle
    squalle
    Participant
    April 2, 2019 at 23:16

    Thanks for your help,
    1) it is not still not working for the ski on the quick view.
    it is ok for the 2)

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 3, 2019 at 07:40

    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

    Avatar: squalle
    squalle
    Participant
    April 3, 2019 at 09:42

    Hello
    This is the link.

    Please contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 3, 2019 at 09:47

    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

    Avatar: squalle
    squalle
    Participant
    April 3, 2019 at 19:08

    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.

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    April 4, 2019 at 08:09

    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

  • Viewing 15 results - 1 through 15 (of 15 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.