Edit text

Viewing 8 posts - 1 through 8 (of 8 total)
#181992

Bernie B.
Participant

Hello

I would like to edit the text “Name your price”. How can I do this?

Thanks a lot!
Bernie

#181993

Shahjada
Keymaster

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

#181994

Bernie B.
Participant
This reply has been marked as private.
#181995

Shahjada
Keymaster

Yes, use the following code:

add_action( "wpdmpp_before_add_to_cart_button", function ( $product_id ) {
	echo "...Your message here, supports html code too...";
} );
#181996

Bernie B.
Participant

Thanks so much, sir!

#181997

Shahjada
Keymaster
This reply has been marked as private.
#182042

Bernie B.
Participant

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!

#182050

Shahjada
Keymaster

Please give me your URL to check.

Viewing 8 posts - 1 through 8 (of 8 total)

The topic ‘Edit text’ is closed to new replies.