Hello ,
I dont now can you help me with my problem , but I need to change text on button on all my items you can see on this link http://fei.weboteka.info/shop/china-classic-beijing/
But I dont now how to change text?
Regards
Hi Zaccc!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_text(){
?>
<script>
jQuery(window).load(function(){
jQuery('button.addquotelistbutton_prodpage').each(function() {
var text = jQuery(this).text();
jQuery(this).text(text.replace('Enquire now', 'Your New Text HERE'));
});
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_text');
Regards,
Yigit