Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Custom Product Price in Loop of Woocomare

<?php
global $woocommerce;
$currency = get_woocommerce_currency_symbol();
$price = get_post_meta( get_the_ID(), '_regular_price', true);
$sale = get_post_meta( get_the_ID(), '_sale_price', true);
?>

<?php if($sale) : ?>
<p class="product-price-tickr"><del><?php echo $currency; echo $price; ?></del> <?php echo $currency; echo $sale; ?></p>    
<?php elseif($price) : ?>
<p class="product-price-tickr"><?php echo $currency; echo $price; ?></p>    
<?php endif; ?>
Comment

Custom Product Price in Loop of Woocomare

<?php
global $woocommerce;
$currency = get_woocommerce_currency_symbol();
$price = get_post_meta( get_the_ID(), '_regular_price', true);
$sale = get_post_meta( get_the_ID(), '_sale_price', true);
?>

<?php if($sale) : ?>
<p class="product-price-tickr"><del><?php echo $currency; echo $price; ?></del> <?php echo $currency; echo $sale; ?></p>    
<?php elseif($price) : ?>
<p class="product-price-tickr"><?php echo $currency; echo $price; ?></p>    
<?php endif; ?>
Comment

PREVIOUS NEXT
Code Example
Php :: php jquery plus 1 day 
Php :: laravel scheduler every 2 hours 
Php :: laravel model casts 
Php :: laravel pagination with get parameters 
Php :: How to get a substring between two strings in PHP? 
Php :: sum of columns laravel eloquent 
Php :: http error 500 - php file 
Php :: get single column value in laravel eloquent 
Php :: convert image to base64 in laravel 
Php :: wordpress featured image show 
Php :: migration create symfony 
Php :: 15000 tl to usd 
Php :: blade if 
Php :: change php version in linux 
Php :: flutter network image svg 
Php :: select query in php 
Php :: only display part of string php 
Php :: php delete json object from a collection object 
Php :: wordpress get current taxonomy 
Php :: how to get current location in laravel 
Php :: why pusher not working in laravel 
Php :: php required 
Php :: csrf token mismatch laravel 
Php :: date diff php 
Php :: laravel launch only one dusk test 
Php :: wp_query order by taxonomy 
Php :: alerta con php 
Php :: acf get field 
Php :: php must be an array or an object that implements Countable i 
Php :: duplicate record laravel 
ADD CONTENT
Topic
Content
Source link
Name
4+4 =