• Hi

    I have just added your plugin and would like it to write the product name instead of “Product” when a product is added to the card. Also the “se kurv” to the left of the Add to cart button “tilf?j til kurv” is on top of each other, how can I change that?

    Best regards

    Katrine

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @humle,

    Kindly follow the instructions in this article https://wpclever.net/faqs/plugin-translation to learn how to find the strings in our plugin and provide equivalent translation for translating texts and change the wording.

    Best regards.

    Thread Starter humle

    (@humle)

    Hi @miemie

    Thank you for the link. I have pasted the code in below and have some questions.

    If I would like it to return with the product name how do I that?

    add_filter( 'gettext', 'wpc_translations', 99, 2 );
    function wpc_translations( $translation, $text ) {
    	if ( $text === 'Qty:' ) {
    		return 'Cant:';
    	}
    
    	if ( $text === 'Original text' ) {
    		return 'Your text';
    	}
    
    	return $translation;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change “Product” to product name’ is closed to new replies.