angieg
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [eStore] Estore overwriting WooCommerce Creating IssuesOK, that was not possible. I went to the website again, but I am not a premium user and I cannot create a ticket on your website.
Forum: Themes and Templates
In reply to: [eStore] Estore overwriting WooCommerce Creating IssuesNo offense, but I went to Theme Grill website first and saw that I had to come here for “e-store free version” support. I will go there now.
Forum: Themes and Templates
In reply to: [eStore] Remove Magnify Glass and Add to Cart IconsHi Rajesh,
Thank you for your reply. Geeze, I spent so much time trying to track down how to remove those icons and all I had to do was check a box. Now I know, huh? ?? Thank you!
Forum: Themes and Templates
In reply to: [eStore] Remove Magnify Glass and Add to Cart IconsHi @antipodesaudio!
Thank you for your detailed reply. I had been using the ‘inspect” page technique and went around in circles, and had tried some PHP code… But for some reason when someone else says “do this” it works! I had forgotten about the !important” and when I added that, it worked! I found both classes of icons and disabled them. Finally, I googled how to make the images clickable in my theme, and saw all I had to do for that is check a box under WooCommmerce Archive Page Layout. THANK YOU FOR YOUR HELP, YOU ROCK!
For anyone who may have the same problem, here’s the “additional CSS” code:
—————–
/* Shop Page – hide magnifier icon */
a.zoom {
display: none !important;
}/* Shop Page – hide cart icon */
a.button.product_type_variable.add_to_cart_button {
display: none !important;
}
————————————
To make the archive photo (shop page images) clickable, go to
Appearance-> Customize-> WooCommerce Settings-> Archive Page Layout, and check the box “Check to hide hover effect on Product Images in WooCommerce Archive Pages”.