BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,211 through 5,220 (of 15,332 total)
  • Author
    Posts
  • in reply to: Adjusting space on profile page #386258
    Steven Zahm
    Keymaster

    @ Monica

    That spacing is likely being inherited from the theme. It can be adjusted using some CSS.

    ul#cn-entry-actions {
        margin-bottom: 20px;
    }
    
    #cn-gridder .cn-entry-single h2 {
        margin: 0;
        padding: 0;
    }
    

    Add this to the theme’s custom CSS area.

    Hope that helps!

    in reply to: Display Category Being Displayed? #386254
    Steven Zahm
    Keymaster

    @ Greg

    That’s the custom multiple category search that you had installed and configured back in Dec and you asked about this in Jan. Just mentioning this for background.

    The latest version of the multiple category search does indeed of the ability to display the search messages. This update would have to be installed and configured.

    in reply to: View All #386250
    Steven Zahm
    Keymaster

    @ Caroline

    This can be done with CSS.

    ul.cn-list-actions {
        text-align: right;
        direction: rtl;
    }
    

    Add the above CSS to the theme’s custom CSS area.

    Hope that helps!

    in reply to: Can I disable County? #386245
    Steven Zahm
    Keymaster

    @ Jana

    Sorry, no, there is no easy way to remove the field. What you could do since you have some coding knowledge is unregister the default address field set and register you own custom fieldset.

    To unregister the core address fieldset use this:

    function cn_remove_address_metabox() {
        cnMetaboxAPI::remove('address');
    }
    add_action( 'cn_metabox', 'cn_remove_address_metabox', 9 );
    

    To register you custom address fieldset use:

    function cn_custom_address_fieldset() {
    
        if ( is_admin() ) {
    
        $pageHooks = apply_filters( 'cn_admin_default_metabox_page_hooks', array( 'connections_page_connections_add', 'connections_page_connections_manage' ) );
    
        // Define the core pages and use them by default if no page where defined.
        // Check if doing AJAX because the page hooks are not defined when doing an AJAX request which cause undefined property errors.
        $pages = defined('DOING_AJAX') && DOING_AJAX ? array() : $pageHooks;
    
        } else {
    
            $pages = array( 'public' );
        }
    
        $field = array(
            'id'       => 'metabox-address',
            'title'    => __( 'Addresses', 'connections' ),
            'pages'    => $pages,
            'context'  => 'normal',
            'priority' => 'core',
            'callback' => '{REPLACE WITH YOUR CUSTOM FUNCTION NAME}',
        );
    
        cnMetaboxAPI::add( $field );   
    }
    
    add_action( 'cn_metabox', 'cn_custom_address_fieldset', 9 );
    

    Notice the {REPLACE WITH YOUR CUSTOM FUNCTION NAME} in the above code, you will have to replace that with you own function name for your custom address fieldset.

    You can copy the code from Connections and alter it as needed to remove the country field and move the district field. it is this code that you would place in your own custom functions:

    Hope that helps!

    in reply to: License for Dev site #386134
    Steven Zahm
    Keymaster

    @ Melinda

    Which part? Me manually activating the site or a config change or something?

    in reply to: License for Dev site #386060
    Steven Zahm
    Keymaster

    @ Melinda

    Checking the site access logs, the dev site is coming from:

    http://smcwebdev/wordpress

    And the live site is coming from:

    http://smcweb/wordpress

    So, the live site seems to match, but not the dev site. So, perhaps there is something “up” with the dev site’s configuration where the fully qualified domain is not correct??? The license activation uses the core WP function home_url() so it must be returning http://smcwebdev/wordpress instead of http://dev.smcweb/wordpress.

    I manually activated the support license key for http://dev.smcweb/wordpress but I suspect you will still not be able to update. Let me know either way.

    in reply to: Address State #386059
    Steven Zahm
    Keymaster

    @ Barbara

    Here’s the link to the tutorial on how to change labels and other text in Connections.

    Hope that helps!

    in reply to: Field Names (Date fields) #386058
    Steven Zahm
    Keymaster

    @ Lee Ann

    You can add custom date dates, no need for custom fields. Here’s a link anthor support thread reply where another user asked the same question:

    http://connections-pro.com/support/topic/types-as-data-fields-instead-of-hardcoded/#post-334238

    I’ve linked directly to the answer. Hope that helps, let me know.

    in reply to: License for Dev site #386054
    Steven Zahm
    Keymaster

    @ Melinda

    What are the actual fully qualified URLs for both site’s front/home page?

    in reply to: cannot find the text i want to translate. #386042
    Steven Zahm
    Keymaster

    @ Henny

    Thanks, I added these to both Form and Link.

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