BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,591 through 5,600 (of 15,332 total)
  • Author
    Posts
  • in reply to: Default entry & remove fieldsets #379314
    Steven Zahm
    Keymaster

    @ ottomek

    re: Would there be a snippet I could add to remove “Organization” from the radio button in the admin area? Not the Organization field name but the Organization Directory type?

    Here’s the snippet:

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

    Hope that helps!

    in reply to: Link not connecting entry with WP login #379313
    Steven Zahm
    Keymaster

    @ ottomek

    Great to hear this is resolved.

    in reply to: Custom Metabox & CSV Import #379310
    Steven Zahm
    Keymaster

    @ Brittany

    Great to hear it is working now! Glad I could help!

    in reply to: Categories #379309
    Steven Zahm
    Keymaster

    @ Cindy

    I am working on a new extension which sounds like it might do what you want. Just so I understand… what you are looking for is something that simply lists all the categories and when you click a category link, it will display the business within that category. Is that correct?

    in reply to: Custom Fields working on backend, but not on front #379308
    Steven Zahm
    Keymaster

    @ Kevin

    Looking at the site, it seems you have figured it. Is that correct? What was the error?

    in reply to: Cannot update entry #379305
    Steven Zahm
    Keymaster

    @ Jo-ann

    Hmmm, that is very odd. To debug this further I’ll need a temp admin login. The details can be posted here as a private reply.

    Steven Zahm
    Keymaster

    @ Anne

    I see you do have the latest version of Form installed which is great. What I can not see is which version of Link you have installed. Can you confirm? The latest version is 3.0.1.

    Also, can you confirm which page you have set to the directory home page?

    in reply to: Custom Metabox & CSV Import #379303
    Steven Zahm
    Keymaster

    @ Brittany

    This line:

    'key' => 'Superintendent\'s Honored Star Case',

    Should be this:

    'key' => 'sup_honored_star_case',

    The field ID (id) use when adding the custom field and the key when importing the meta via CSV need to match.

    Sorry, I overlooked adding that direction in my previous reply!

    in reply to: Custom Metabox & CSV Import #379103
    Steven Zahm
    Keymaster

    @ Brittany

    You need to use the field ID of the text field in the code that imports the meta. I’ll try to illustrate using the examples…

    In the text field tutorial the field ID is field_id to import into that field as shown in the CSV import tutorial change the instances of member_level to field_id (3 instances).

    Does that make sense?

    in reply to: Recommended Upload Pixel Size Dimensions #379100
    Steven Zahm
    Keymaster

    @ Amanda

    Really tough to answer this because it depends. A would say at least double the size the size you are planning to use them but don’t make them too large as to cause too much server load when processing the image. Generally, if you keep the defaults you should be fine.

    Hope that helps!

Viewing 10 posts - 5,591 through 5,600 (of 15,332 total)