Hello
Below is the code from my theme’s meta.php. Can you please let me know the php code which I can just add after tags or SKU to show ‘sold by’ link?
<?php do_action( 'woocommerce_product_meta_start' ); ?>
<div class="product-meta-inner">
<?php
if ( ! $has_brand_image && $brand_html ) :
echo wolmart_strip_script_tags( $brand_html );
endif;
?>
<?php echo wc_get_product_category_list( $product->get_id(), ', ', '<span class="posted_in">' . _n( 'Tag:', 'Tags:', count( $product->get_category_ids() ), 'woocommerce' ) . ' ', '</span>' ); ?>
<?php echo wc_get_product_tag_list( $product->get_id(), ', ', '<span class="tagged_as">' . _n( 'Category:', 'Categories:', count( $product->get_tag_ids() ), 'woocommerce' ) . ' ', '</span>' ); ?>
<?php if ( wc_product_sku_enabled() && ( $product->get_sku() || $product->is_type( 'variable' ) ) ) : ?>
<span class="sku_wrapper">
<?php esc_html_e( 'SKU:', 'woocommerce' ); ?>
<span class="sku">
<?php
$sku = $product->get_sku();
echo wolmart_escaped( $sku ) ? $sku : esc_html__( 'N/A', 'woocommerce' );
?>
</span>
</span>
<?php endif; ?>
</div>
Thanks