BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 9,211 through 9,220 (of 15,332 total)
  • Author
    Posts
  • in reply to: Error Connections must be installed #317999
    Steven Zahm
    Keymaster

    @ Richard

    Yes, renaming or deleting the folder will let WordPress reinstall the plugin. Great to hear you were able to resolve this.

    in reply to: company and individual? #317998
    Steven Zahm
    Keymaster

    @ Jessie

    Sort of…

    Go to the Connections : Settings admin page and click the Advanced tab. Under the Permalink sections enable the Organization Base option.

    Now, enter the organization to each entry.

    When you view the entries on the frontend, the organization names will now be links and when that link is clicked, all individuals with the same organization will be listed.

    Hope that helps, let me know.

    in reply to: Have logo pic also show on group page #317997
    Steven Zahm
    Keymaster

    @ cheryl

    By default the logo is shown on the results list and single views. It can be changed to be to be the image instead by using this shortcode:

    [connections list_type='family' image='photo' tray_image='none']

    You do not need to make any changes to view the logo since it is used by default.

    Since you are using the list type shortcode option, this will also force Connections to use the template activated under the “Family” template type. So, make sure to have cMap activated under both the “Family” and “Individual” template types to make sure it is used in both instances.

    Hope that helps, let me know!

    in reply to: Directory not showing when logged in with S2Member #317934
    Steven Zahm
    Keymaster

    @ Kathy

    Great to hear this resolved the issue!

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    https://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Authored #317933
    Steven Zahm
    Keymaster

    @ Dave

    Which version of Authored is installed? Can you share a link to a page that should show the output from Authored?

    in reply to: Directory not showing when logged in with S2Member #317932
    Steven Zahm
    Keymaster

    @ Kathy

    Ok, I understand now … s2Member has a very nasty habit of destroying custom capabilities on its updates.

    Add a check to the “Reset All Role Capabilities”” option of the Connections : Roles admin page and click Update.

    After the page resets, re-apply the permissions on the custom role.

    in reply to: Make Organization Default/Remove Individual, Family #317931
    Steven Zahm
    Keymaster

    @ Stacey

    Great to hear!

    If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
    https://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Directory not showing when logged in with S2Member #317925
    Steven Zahm
    Keymaster

    @ Kathy

    Go to the Connections : Roles admin page and give the custom role View Public (and/or View Private) permissions.

    That should do it.

    in reply to: Change sort order? #317924
    Steven Zahm
    Keymaster

    @ WTyrrell

    Check out the order_by shortcode option, you can specify the exact order you wish to order the categories.

    If you have a moment, I would truely appreciate a review as they really do make a difference. Many thanks in advance!
    https://wordpress.org/support/view/plugin-reviews/connections

    in reply to: Make Organization Default/Remove Individual, Family #317719
    Steven Zahm
    Keymaster

    @ Stacey

    Yes, this can be done. First you need to install the Code Snippets plugin.

    Add a new snippet with the following code:

    function cn_entry_types( $atts ) {
    
        $atts['entry_type'] = array( __( 'Organization', 'connections' ) => 'organization' );
    
        $atts['default']['type'] = 'organization';
    
        $atts['default']['visibility'] = 'public';
    
        return $atts;
    }
    
    add_filter( 'cn_admin_metabox_publish_atts', 'cn_entry_types', 11 );
    

    Save and activate the new snippet.

    That should do it.

Viewing 10 posts - 9,211 through 9,220 (of 15,332 total)