BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 10,571 through 10,580 (of 15,332 total)
  • Author
    Posts
  • in reply to: Image caption for Bio Entry Card #298529
    Steven Zahm
    Keymaster

    @ Marco

    It would be possible, yes. you have to edit the Bio Entry Card template in order to do it though. I recommend adding using this method so your changes are update safe.

    Using the custom fields, that’s a pretty darned good idea! I know of only one other where they could not save data, same as you. Unfortunately, I am not able to duplicate why this is happening so I can not fix it. If you’d be willing to give me temp admin access, temp FTP access and let me put your site in maintenance mode, I would be more than happy to spend the time trying to figure out and fixed the bug that is preventing this from working for you.

    Let me know.

    in reply to: Adding to multiple pages #298524
    Steven Zahm
    Keymaster

    @ Mary

    Sure, just about all this is easily doable with adding a few more shortcode options that are enabled by Slim Plus. Here’s the shortcode:

    [connections category="19,20,21" enable_category_by_root_parent='TRUE' image_fallback='FALSE' str_select="Search Affiliates" str_select_all="Show All Affiliates"]
    

    The one items that is not possible is disabling the pagination on the just the search results. You can adjust the overall pagination number though with another shortcode option. Here the shortcode you would use to increase the pagination to 25:

    [connections category="19,20,21" enable_category_by_root_parent='TRUE' image_fallback='FALSE' str_select="Search Affiliates" str_select_all="Show All Affiliates" page_limit=25]
    

    I do not recommend setting the page_limit too high as that will negatively affect page load times of the directory.

    Here’s the page that lists all the shortcode options available to the Slim Plus template.

    Hope that helps!

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

    in reply to: Problem with Database #298519
    Steven Zahm
    Keymaster

    @ Cynthia

    Great to hear you have things sorted!

    Steven Zahm
    Keymaster

    @ Foaad

    That’s definitely not a compatible version of the template for this feature, you’ll need to update it.

    in reply to: Images #298445
    Steven Zahm
    Keymaster

    @ Nial

    Seems there is a bug or two in the theme…

    Looking at the page source, each time I refresh the page these two lines change from:

    <link rel='stylesheet' id='Lobster-font-css'  href='http://fonts.googleapis.com/css?family=Lobster&##038;v1&#038;ver=3.8.1' type='text/css' media='all' />
    
    <script type='text/javascript' src='http://www.causewaycoastandglens.gov.uk/wp-content/plugins/ridiculously-responsive-social-sharing-buttons/js/rrssb.min.js?ver=3.8.1'></script>
    

    to this:

    <link rel='stylesheet' id='Lobster-font-css'  href='http://fonts.googleapis.com/css?family=Lobster&#0#038;v1&#038;ver=3.8.1' type='text/css' media='all' />
    

    <script type='text/javascript' src='http://www.causewaycoastandglens.gov.uk/wp-content/plugins/ridiculously-responsive-social-sharing-buttons/js/rrssb.min.js?ver=3.8.1'>/script>
    Which are broken, causing problems on your site.

    Additionally, most likely the theme, is not enqueueing the version of jQuery that comes with WordPress. This is not necessarily bad if done correctly but it does not appear so on your site. The site it is loading from seems slow at the moment so sometimes it does load, other times it does not. Again, this is causing troubles on your site. Connections does include a fixer that attempts to correct the loading of the correct version of jQuery. You can enable this option on the Connections : Settings admin page under the Advanced tab in the Compatibility section. It’ll be the jQuery option.

    Hope that helps! let me know.

    Steven Zahm
    Keymaster

    @ Linda

    Great to hear!

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

    in reply to: Adding Google Conversion Tracking Codes #298443
    Steven Zahm
    Keymaster

    @ Bree

    Likely the easiest/update safe method is to add some custom JS to you site which add the onclick handler to the links.

    The only other method would be to add the onclick to this line of code in Connections.

    Hope that helps! Let me know.

    in reply to: Just purchased Pro Pack and need advice #298442
    Steven Zahm
    Keymaster

    @ Karen

    I’m thinking you are looking for a category multi-select feature, where a user can choose more than one category, yes?

    This is possible using a beta feature which is a little broken at the moment but can be made to work.

    First, add the enable_category_multi_select shortcode option to you shortcode. You should have something like:
    [connections enable_category_multi_select='true']

    Activate the cMap template on the Connections : Templates admin page.

    Now, install the Code Snippet plugin.

    Add a new snippet with the following code:

    function cn_cmap_add_submit_button( $atts, $results ) {
    	
    	if ( $atts['enable_category_multi_select'] ) {
    		
    		cnTemplatePart::submit( array( 'return' => FALSE ) );
    	}
    }
    
    add_action( 'cn_action_list_before-cmap', 'cn_cmap_add_submit_button', 99, 2 );

    Save and activate the snippet.

    Now, your users will be able to select multiple categories to filter the results by.

    Hope that helps!

    in reply to: Hide department #298441
    Steven Zahm
    Keymaster

    @ Axel

    Which version of Form do you have installed? The CSS will only work in the latest. If it is, try adding the !important attribute like so:

    div#cn-metabox-section-department {
        display: none !important;
    }

    Hope that helps! Let me know.

    in reply to: 403 Error #298439
    Steven Zahm
    Keymaster

    @ Mike

    huh, odd, that should not cause a 403 error. Glad to hear it resolved!

Viewing 10 posts - 10,571 through 10,580 (of 15,332 total)