I need translated line of custom button in a code, but its not working my solution.
This is the line in file which I need translate (line 13, name of file: add-to-quote-button.php)
<a href="#" class="<?php echo $class ?>" data-product_id="<?php echo $product_id ?>" data-wp_nonce="<?php echo $wpnonce ?>">Quick Quote</a>
There is my solution which is not working:
Additional informations:
name of my translated file: yith-woocommerce-request-a-quote-cs_CZ.mo
file location: plugins/woocommerce request a quote v1.6.1/templates/add-to-quote-button.php
There are two ways to do this. One is a bit hacky and might get you into trouble if some huge change happens to woocommerce and other one is using CSS.
You could override that file in your child theme if you have one. if not you can do so in your parent theme.
Inside your theme folder create new folder 'woocommerce' and within woocommerce create 'templates' within that folder create file add-to-quote-button.php and copy whole content of the original file into this one and update that text. Now that should overwrite woocommerce plugin file.
CSS Way would be to find class that's on that button - I'll name it 'someQuoteButton' just so I can give you an example.