Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • I’ve solved this using css. The top block appear for a second and goes in hidden. But after loading page looks fine now. Hope authors of the plugin will fix this soon.

    Here is the two links I’ve added to theme file style.css

    .page-template-default .wpfp-span { display:none !important; }
    .page-content .wpfp-span { display:block !important; }

    Hope this helps someone.
    Cheers
    [WP Version 3.4.2]

    nadula

    (@nadula)

    We are using Magic Members latest version (with unlimited license) with eWay payment gateway for 3 months. Magic Members failing to update some members and their credit card charged by eWay. When members can not login they try to renew the account and Magic Members billing them for the second time. Magic Members tech support pretending to be trying to resolve this. But after three months we still have customers calling in and Magic Members failed to update their accounts while eWay billed their credit cards. When their plugin working with Credit Cards, they should be more careful than this. Magic Members fooling businesses who purchased license for the software. Promising something they can not offer. I do not recommend Magic Members for paid services.

    nadula

    (@nadula)

    We are using Magic Members latest version (with unlimited license) with eWay payment gateway for 3 months. Magic Members failing to update some members and their credit card charged by eWay. When members can not login they try to renew the account and Magic Members billing them for the second time. Magic Members tech support pretending to be trying to resolve this. But after three months we still have customers calling in and Magic Members failed to update their accounts while eWay billed their credit cards. When their plugin working with Credit Cards, they should be more careful than this. Magic Members fooling businesses who purchased license for the software. Promising something they can not offer. I do not recommend Magic Members for paid services.

    nadula

    (@nadula)

    We are using Magic Members (unlimited license) with eWay payment gateway for 3 months. Magic Members failing to update some members and their credit card charged by eWay. When members can not login they try to renew the account and Magic Members billing them for the second time. Magic Members tech support pretending to be trying to resolve this. But after three months we still have customers calling in and Magic Members failed to update their accounts while eWay billed their credit cards. When their plugin working with Credit Cards, they should be more careful than this. Magic Members fooling businesses who purchased license for the software. Promising something they can not offer. I do not recommend Magic Members for paid services.

    Forum: Plugins
    In reply to: anyone using magic members?
    nadula

    (@nadula)

    We are using Magic Members with eWay payment gateway for 3 months. Magic Members failing to update some members and their credit card charged by eWay. When they can not login they try to renew the account and Magic Members billing them for the second time. Magic Members tech support pretending to be trying to resolve this. But after three months we still have customers calling in and their accounts Magic Members failed to update their accounts while eWay billed their credit cards. I do not recommend Magic Members for paid services.

    Solution is on this thread

    Forum: Plugins
    In reply to: change default display-name

    Following is the updated version of the plugin wrote by vtxyzzy

    Create a folder like this: wp-content/plugins/substitute_displayname
    Create a new file in that folder called substitute_displayname.php
    Paste the code below into that file.
    Activate the plugin.

    <?php
    /*
    Plugin Name: Substitute Displayname
    Version: 0.1
    Description: Substitutes a default Display name for new registrants.
    Author: Mac McDonald
    */
    ?>
    <?php
    /* Version check */
    global $wp_version;
    $exit_msg='Substitute Author requires WordPress 2.5 or newer.  <a href="https://codex.www.ads-software.com/Upgrading_WordPress">Please update!</a>';
    if (version_compare($wp_version,"2.5","<")) {
       exit ($exit_msg);
    }
    function sd_new_login_filter ($login) {
    /* Don't do anything to login, just see if already in database.*/
       global $wpdb, $sd_is_new_login;
    
       $id = $wpdb->get_var("SELECT ID FROM $wpdb->users WHERE user_login = '$login'");
       $sd_is_new_login = (isset($id)) ? false : true;
       return $login;
    }
    
    function sd_substitute_displayname_filter ($display_name) {
       global $sd_is_new_login;
    
       if ($sd_is_new_login) $display_name = $_POST['first_name']." ".$_POST['last_name'];
       return $display_name;
    }
    add_filter('pre_user_login', 'sd_new_login_filter');
    add_filter('pre_user_display_name', 'sd_substitute_displayname_filter');
    ?>

    This is THE BEST method I found on the net so far to manipulate display name without altering wp core files (all the changes made to wp core files will be lost after a wp update).

    My member directory page is sorting on display name. So now I can peacefully use that code, knowing it will always sort on surname.

    I can not thank the original plugin coder (vtxyzzy) for his effort on this, as that thread is now locked. But his work helped me a lot.

    Hope this helps u guys too.

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