Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Neah Plugins

    (@gplsaver)

    Hi icnetto,

    If I understand correctly, you want to modify the RFQ cartt. You need to look for this file:
    wordpress/wp-content/plugins/woo-rfq-for-commerce/woo-rfq/rfq-cart.php

    you can change any words you like in this file and that should do it.

    Plugin Author Neah Plugins

    (@gplsaver)

    search for products and quantity in the the file above

    Dear Mr
    I did exactly as mentioned in open FTP, /rfq-cart.php file, searched for “Product”, “Quantity” and “Update”, changed the sentences to Portuguese and has not changed.
    Would you can help me, because I’m not experienced in this area.

    Plugin Author Neah Plugins

    (@gplsaver)

    that should have done it. because that is where the text is coming from.
    make sure you have uploaded the file and did not just change it locally.
    If you are trying to change those words in the WooCommerce cart then that is outside of the plugin. you can try this see if it helps you

    Modify below to fit your needs and add the whole thing at the end of your functions.php file in your theme directory. Hope it works.

    function replace_content_on_the_fly($text){
    	$replace = array(
    		// 'words to find' => 'replace with this'
    		'wordpress' => '<a href="https://www.www.ads-software.com/">wordpress</a>',
    		'google' => '<a href="https://www.google.com/">excerpt</a>',
    		'function' => '<a href="#">function</a>'
    	);
    	$text = str_replace(array_keys($replace), $replace, $text);
    	return $text;
    }
    add_filter('the_content', 'replace_content_on_the_fly');
    add_filter('the_excerpt', 'replace_content_on_the_fly');

    Good Morning,
    I have no experience and do not understand how to proceed. is that you can help me setting on my server

    @gplsaver

    Thanks for this awesome plugin. It came out more than helpful to me. It was exactly wat I was looking for. I’m so glad for it that I want to help you in setting it ready for translating, mostly to PT-BR. I think I could help you and @brindesbrasilmmk alike by doing this. Hope I can help you both soon.

    Hello, anybody there?

    • This reply was modified 8 years, 2 months ago by birous.
    Plugin Author Neah Plugins

    (@gplsaver)

    birous,
    sorry for the delay, i have prepared the plugin for translation if you are still interested.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘translate’ is closed to new replies.