Tagged: date, price, Product, woocommerce
HI,
how do i replace the date on blog post grid with the product prices? and limit the excerpt?
please see https://webtechnology.ph/cctv-camera/
Hey Roy!
Thank you for using the theme.
Please edit config-templatebuilder > avia-shortcodes > postslider.php, find this code on line 386:
$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
Replace it with:
global $product;
$product = new WC_Product( $entry->ID );
$price = $product->price;
$output .= "<time class='slide-meta-time updated' $markup>" .$price."</time>";
Regards,
Ismael
thanks