The solution for the Column Grid mod will use the same kinds of additions, but differently enough organized that it warrants an answer in this thread. I'll go look at the file and come back with some specifics.
The solution for the Column Grid mod will use the same kinds of additions, but differently enough organized that it warrants an answer in this thread. I'll go look at the file and come back with some specifics.
In /includes/modules/your_template/product_listing.php, find thisand addPHP Code:case 'PRODUCT_LIST_PRICE':
$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
$lc_align = 'right';
$lc_text = $lc_price;
// more info in place of buy now
'<div class="productListPrice">' .
and
</div>
to get thisThen you can style .productListPrice in your stylesheet.PHP Code:case 'PRODUCT_LIST_PRICE':
$lc_price = '<div class="productListPrice">' . zen_get_products_display_price($listing->fields['products_id']) . '</div><br />';
$lc_align = 'right';
$lc_text = $lc_price;
// more info in place of buy now
Many thanks for the answer!
I´ll try this when I´m back home.
Thx!
Ps. No idea how to fix a button instead of Read more link?
Search for threads discussing how to replace the "...more info" with an image or button.