Help for a little translation
-
Hi,
I added this code into my website to display a badge.
This works great but my site is multilingual.I want to know how to translate the “sold out”
What should I add to make it detected by poedit?
//* Do NOT include the opening php tag
//* Add sold out badge on single product pages
add_action( ‘woocommerce_before_single_product_summary’, function() {
global $product;
if ( !$product->is_in_stock() ) {
echo ‘<span class=”soldout”>Sold out</span>’;
}
});
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Help for a little translation’ is closed to new replies.