• Resolved kdub22

    (@kdub22)


    Hello,

    I need to change/customize the notification text that appears after a person logs in. Presently it goes to a page that says “You currently have a subscription for the [Get a FREE Account to View Complaints]subscription. If you wish to sign up a different subscription then you can do below.” This text is grammatically incorrect. It should say ‘…you can do so below.’ Regardless I only have one membership level activated so there is no other option appearing below. I need to change the text. How can this be done?

    * Tried to make a new page all together but the short codes given do not render anything.

    Thanks for your help!

    Please help.

    http://wordpress.org/plugins/membership/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    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.

    Thread Starter kdub22

    (@kdub22)

    Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    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!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Customize Registration Prompts/Text’ is closed to new replies.