- This topic has 7 replies, 2 voices, and was last updated 3 years, 1 month ago by
Shahjada.
Viewing 8 posts - 1 through 8 (of 8 total)
Hello
I would like to edit the text “Name your price”. How can I do this?
Thanks a lot!
Bernie
Use the following code snippet:
add_filter( "wpdmpp_as_you_pay_label", function ( $str, $product_id ) {
$str = "Your custom text";
return $str;
}, 10, 2 );
Add the code at the end of your active theme’s functions.php
Yes, use the following code:
add_action( "wpdmpp_before_add_to_cart_button", function ( $product_id ) {
echo "...Your message here, supports html code too...";
} );
Sure, That’s done now 🙂
When using the “Search function is there
1: a way to change the text inside the box from “Search…” to “”Search for anything here”. or whatver…?
2: On the page for Search results, the main button is a Download button. Can this be changed, so that people will go to the specific page only and from there they can download? I need them to read some info, so don’t want them to skip this stage.
Thanks!
Viewing 8 posts - 1 through 8 (of 8 total)
The topic "Edit text" is closed to new replies.