I am using easy digital downloads for my products I add custom field in the title of the EDD Product Title using Advanced custom field. I ‘ve added the codes in edd_templates -> shortcode-content-title.php.
<div class="product-meta">
<?php get_template_part( 'includes/product-meta' ); ?>
<?php if ( get_field ( 'custom_product_version' ) ) : ?><span class="custom_product_version"><?php the_field ( 'custom_product_version' ); ?></span><?php endif; ?>
this CSS
.custom_product_version {
font-size: .8rem;
line-height: 1rem;
float: right;
margin: 0 1rem 0 0;
color: #999;
}
But with this code shows custom field only on the https://www.domain.com/products but on the home page domain..com not showing custom field on any product.
please screenshot
On product page showing custom field
https://www.example.com/products
View post on imgur.com
https://www.example.com
On the Home page not showing custom field.
View post on imgur.com
the question is how to display custom field everywhere on the product title.