How I can make the product listing to have “More Colours” under it
-
I want to have a LINK under each product listing in the landing page or products listing page saying “more colours” or “more options” so when they click on the link it takes them to the single product listing page so from there they can see different colours.
Similar to the “Add to Cart” Button but under the product image and name. This makes the page less busy and cleaner.
Added this to the theme’s function;
_______________________________________
function zxcvb_product_text_link() {
?>
“>More Colors
<?php
}
add_action( ‘woocommerce_after_shop_loop_item’,’zxcvb_product_text_link’, 99 );
_______________________________________and it works but the problem is that some products don’t have attributes like different colors so is there any way that I can make it only shows under the product’s listing which options or attribute, so if the product has only one type it doesn’t show this or says something like “More info”.
Many thanks in advance
Mitchell
- The topic ‘How I can make the product listing to have “More Colours” under it’ is closed to new replies.