Tagged: ecommerce, woocommerece
-
AuthorPosts
-
December 30, 2014 at 5:39 pm #373203
There are arrows that appear on each individual product page within WooCommerce (while the site is using your theme). If I click on it, then it takes me forward or back to a different product. I don’t want the customer to have this option.
I contacted WooCommerce & they said it was happening due to the theme. How do I turn that off/get rid of it?
Thanks,
CTDecember 30, 2014 at 6:14 pm #373221Hey imagemakerswi!
Add this to your custom CSS.
.avia-post-nav { display: none !important; }
Cheers!
ElliottDecember 30, 2014 at 6:31 pm #373231Perfect thank you!!
December 30, 2014 at 6:51 pm #373239Is there a way to get rid of the image hover & lightbox on each product page or is that a function of WooCommerce (not your theme)? Thanks!
December 30, 2014 at 7:11 pm #373251Also, how can I replace the word “cart” on the nav bar, with an image of a shopping cart?
December 30, 2014 at 9:05 pm #373285Hey!
Open up /enfold/config-woocommerce/config.php and change line 1235 from this.
return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
To this.
return sprintf( '<a href="%s" itemprop="image" class="noLightbox woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
And line 1254 from this.
$img = sprintf( '<a href="%s" class="%s" title="%s" rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );
To this.
$img = sprintf( '<a href="%s" class="%s noLightbox" title="%s" rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );
I’m not sure what you mean by cart in the navbar. Send us a link and we’ll take a look.
Cheers!
ElliottDecember 30, 2014 at 11:52 pm #373357Thank you very much – worked like a charm.
As for the cart thing – here’s what I want to do. When I go mobile view, I get a sharp cart icon along with the button to be clicked to activate the menu. I would like to replace the cart link on the homepage (in my menu) with that icon. So whether you are looking at my site on a mobile device, tablet or desktop, you’ll never see the word “cart” on the homepage, you’ll always see the cart image.
Let me know how to accomplish this – thanks!
-CTDecember 30, 2014 at 11:54 pm #373358correction to my last sentence —> *you’ll never see the word “cart” on the header of each page, you’ll always just see the cart image instead.
December 31, 2014 at 1:02 am #373378This reply has been marked as private.December 31, 2014 at 4:44 pm #373588Hey!
Edit your link in Dashboard > Appearance > Menus and then change the navigation label to this.
<img src = "URL to your icon" />
Regards,
Elliott -
AuthorPosts
- You must be logged in to reply to this topic.