BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 6,061 through 6,070 (of 15,332 total)
  • Author
    Posts
  • in reply to: ERROR: Entry Could Not Be Added #370922
    Steven Zahm
    Keymaster

    @ Michelle

    I noticed you did supply a website when posting. I went to the site and looked at the page’s source for the CSS used by Connections. By default WP will append the version number.

    I did not think to see if you supplied a website originally because 9 out of 10 times it’s left blank

    in reply to: ERROR: Entry Could Not Be Added #370919
    Steven Zahm
    Keymaster

    @ Michelle

    Looks like you’re on version 8.4. You’re going to have to update. I suggest contact the person that has access and ask them to update.

    in reply to: restricting display to certain roles? #370918
    Steven Zahm
    Keymaster

    @ Kera

    Ok, now I more fully understand. When you need is an action which sets an entry to unlisted when a user role switches from “Active” to “Lapsed” and visa versa. Something like this could work.

    function cn_user_role( $user_id, $role, $old_roles ) {
    
        // Check to see if the user is linked to an entry, if not, bail.
        if ( ! $entry_id = get_user_meta( $user_id, 'connections_entry_id', TRUE ) ) return;
    
        // Change the entry status based on user role.
        switch ( $role ) {
    
            case 'lapsed':
    
                cnEntry_Action::visibility( 'unlisted', $entry_id );
                break;
    
            case 'active':
    
                cnEntry_Action::visibility( 'public', $entry_id );
                break;
    
        }
    
    }
    
    add_action( 'set_user_role', 'cn_user_role', 10, 2 );
    
    in reply to: ERROR: Entry Could Not Be Added #370916
    Steven Zahm
    Keymaster

    @ Michelle

    Well, if you have an older version of Connections, you need to update in order to be compatible with WP 4.4. My guess in you have Connections 8.5.5 or older. You can find out by visiting the WP Plugins admin page.

    in reply to: ERROR: Entry Could Not Be Added #370914
    Steven Zahm
    Keymaster

    @ Michelle

    What is your WordPress and Connections version? Are they current?

    in reply to: Login Extension #370905
    Steven Zahm
    Keymaster

    @ John

    The Login extension is a free extension and can be installed by following these installation instructions.

    Hope that helps!

    in reply to: Extension Renewals #370904
    Steven Zahm
    Keymaster

    @ Kathy

    Right, the Pro Pack licenses will expire. Instead, the new purchase, you should use the new license keys instead of the keys from the expiriering Pro Pack purchase. I noticed their must have been some type of error when creating the keys for the new purchases. I’ve fix it and resent the sales confirmation which will contain the new license keys. As for the renewal reminders for the expiring Pro Pack, you can safely ignore those.

    Hope that helps! Let me know if you need anything clarified further.

    in reply to: Using Form with families #370894
    Steven Zahm
    Keymaster

    @ concoa

    re: I am about to purchase Link and also very interested in Form. However, I am using Families to group people. Will Form allow users to create their family entry?

    Sorry, no, Form will not allow users to create families, neither will Link. This is feature is reserved for admins to create families because it is not secure to allow users to create families. The is because if this were exposed to a user they could add any entry they wish to “their” family.

    in reply to: Profile Page Margins #370893
    Steven Zahm
    Keymaster

    @ Beth

    I believe I answered the same question asked in another post. Here’s the link.

    Hope that helps!

    in reply to: restricting display to certain roles? #370892
    Steven Zahm
    Keymaster

    @ Kera

    Hmmm… could you give me a more detailed example of what you would like to accomplish?

Viewing 10 posts - 6,061 through 6,070 (of 15,332 total)