Horje
Add text below product title on archive page + ACF Code Example
Add text below product title on archive page + ACF
add_action( 'woocommerce_after_shop_loop_item_title', 'custom_field_display_below_title', 2 );
function custom_field_display_below_title(){
    global $product;

    // Get the custom field value
    $custom_field = the_field( 'start_date' ); 
 
    // Display
    if( ! empty($custom_field) ){
        echo '<p class="my-custom-field">'.$custom_field.'</p>';
    }
}




Php

Related
pagenavi plugin Code Example pagenavi plugin Code Example
shopware redirect ot homepage Code Example shopware redirect ot homepage Code Example
afosto/yaac error parsing certificate request Code Example afosto/yaac error parsing certificate request Code Example
php check connection to database Code Example php check connection to database Code Example
imagefont.truetype python don't work Code Example imagefont.truetype python don't work Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9