I'm using the CF7 Custom Recipient plugin and i need to change some text on it.
In that red square i just want to change "CF7 Custom Recipient" to "Enter mail for inquiries" or something like that.
How can i do it?
I'm using the CF7 Custom Recipient plugin and i need to change some text on it.
In that red square i just want to change "CF7 Custom Recipient" to "Enter mail for inquiries" or something like that.
How can i do it?
Share Improve this question asked May 3, 2019 at 4:42 Draws Ren GundamDraws Ren Gundam 251 gold badge2 silver badges6 bronze badges 1- To change this, I think you've to change plugin files – Vishwa Commented May 3, 2019 at 5:20
1 Answer
Reset to default 0You can put this below code into theme's functions.php
file and check it. see this screenshot
function add_wpcf7_custom_recipient_meta_box_changed() {
add_meta_box(
'wpcf7_custom_recipient_meta_box',
'Enter mail for inquiries', //just here to change text you want
'show_wpcf7_custom_recipient_meta_box',
get_post_types(array('public' => true), 'names'),
'side',
'high'
);
}
add_action( 'add_meta_boxes', 'add_wpcf7_custom_recipient_meta_box_changed' );
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745529281a4631617.html
评论列表(0条)