Hi @kdub22,
Thanks for your question.
You can change easily it from the plugin files membership\membershipincludes\icludes\popover_payment.form.php and membership\membershipincludes\icludes\payment.form.php on line numbers 54 and 22 respectively but editing the core plugin files is not good as updating the plugin will overwrite it and you will lose any changes made in it so instead of editing plugin files the most update-proof way to customize text strings in any plugin is to create a new language file. See a good example here:
http://premium.wpmudev.org/forums/topic/front-end-labels-of-appointment-in-french
You can use a tool on your computer to create your custom language file like PoEdit:
http://www.poedit.net/
Or try an online tool like Google’s toolkit:
http://translate.google.com/toolkit
Cheers.
Thread Starter
kdub22
(@kdub22)
Thanks for the reply. Your instructions are perfect.
One more question: After a person is registered they are sent an auto email with their login credentials. How do I change it from saying it was sent from WordPress (both senders name and senders email say wordpress)? I have tried using plug ins but they all return:
Warning: Cannot modify header information – headers already sent by (output started at /home/content/46/11419646/html/test/wp-content/themes/porto/functions.php:153) in /home/content/46/11419646/html/test/wp-includes/pluggable.php on line 899
Warning: Cannot modify header information – headers already sent by (output started at /home/content/46/11419646/html/test/wp-content/themes/porto/functions.php:153) in /home/content/46/11419646/html/test/wp-includes/pluggable.php on line 899
I can’t seem to figure this out.
Thanks.
Hi @kdub22,
You are welcome.
One more question: After a person is registered they are sent an auto email with their login credentials. How do I change it from saying it was sent from WordPress (both senders name and senders email say wordpress)? I have tried using plug ins but they all return:
Warning: Cannot modify header information – headers already sent by
You can try using this plugin to change it http://www.tipsandtricks-hq.com/wordpress-plugin-change-wp-email-from-details-1883 or add following code in functions.php file of your theme.
function custom_wp_mail_from($email) {
$wpfrom = get_option('admin_email'); // You can change it to whatever mail id you want to use in email
return $wpfrom;
}
function custom_wp_mail_from_name($email){
$wpfrom = get_option('blogname'); // You can change it to whatever mail from name you want to use in email
return $wpfrom;
}
add_filter('wp_mail_from', 'custom_wp_mail_from');
add_filter('wp_mail_from_name', 'custom_wp_mail_from_name');
Set WP_DEBUG to false in wp-config.php file to hide warning messages.
Best Regards,
Hey there.
We haven’t heard from you in awhile, so I just wanted to check in to make sure all was good.
This thread was marked resolved, but please, if you still need help then just respond and open it back up. We can then take it from there. 🙂
Hope you have a fantastic day!