• Resolved lesliedeanbrown

    (@lesliedeanbrown)


    Hello,

    I am trying to display quick view on this page:
    https://www.vandenhooven.com.au/store

    Backup store is here, same thing:
    https://www.vandenhooven.com.au/shop/

    There seems to be some sort of conflict with my theme (or something).
    I was going to lower the quick view button and put it down towards the bottom of the thumbnail image. But I do not even see the quick view button at all!

    I would consider purchasing the premium plugin (because I want the navigation feature), but it would be nice to see it working first…??

    Do you know what might be wrong, causing it not to work correctly???

    ??

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Iván Sosa

    (@ivansosa)

    Hi there,

    It seems your theme is not adding the right hook to show the button (woocommerce_after_shop_loop_item).

    You should contact with theme developers in order to add it, or use their own hook and add this shortcode [yith_quick_view].

    We hope it helps you.

    • This reply was modified 1 year ago by Iván Sosa.
    Thread Starter lesliedeanbrown

    (@lesliedeanbrown)

    Yes that is helpful. ??
    Unfortunately I am not smart enough to know what you are talking about exactly (or how to solve it myself).??
    I will definitely contact them.????
    Then see about getting pro version (because I want the product navigation feature)??

    Thread Starter lesliedeanbrown

    (@lesliedeanbrown)

    Well, that is done.
    It looks like they reinstated this bit of code to make it show after product thumbnail:

    <?php do_action( 'woocommerce_after_shop_loop_item' ); ?>

    Okay. However, now the site shows unwanted default woo “add to cart” text link, like so: https://www.vandenhooven.com.au/store/ ??

    Is there any way to remove that???

    Here’s how it looked before: https://web.archive.org/web/20231101175400/https://www.vandenhooven.com.au/store/

    I usually try to solve some problems myself so I googled and found this bit of code:

    add_action( 'woocommerce_after_shop_loop_item', 'remove_add_to_cart_buttons', 1 );
    
        function remove_add_to_cart_buttons() {
          if( is_shop()) { 
            remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
          }
        }

    However I tried that and it didn’t work.

    And also, for the YITH admin option “Quick View Button Position” when I select “Inside product image”, quick view button/icon still doesn’t show in my theme. So I used “after ‘add to cart’ button and moved the element with css.??

    I decided to purchase premium version.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Quick view not displaying at all.??’ is closed to new replies.