BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 9,471 through 9,480 (of 15,332 total)
  • Author
    Posts
  • in reply to: Increase connections on page from 20 #312743
    Steven Zahm
    Keymaster

    Mark

    No problem!

    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: Forms – creating a page for submissions #312742
    Steven Zahm
    Keymaster

    @ Robin

    You can use the (undocumented/unsupported) shortcode [connections_form] on your custom page and then disable the action link on the Connections : Settings admin page under the Display tab.

    Hope that helps!

    in reply to: Logo on Profile Page #312741
    Steven Zahm
    Keymaster

    @ Deanna

    The Circled template does not show the logo since it is designed to highlight individuals. The only way to add it is to create a custom template override file and add the code to show the logo. Here’s the code that would add to the custom card-single.php file:

    $entry->getImage( array(
        'image'    => 'logo',
        'height'   => 100,
        'width'    => 100,
        'quality'  => cnSettingsAPI::get( 'connections', 'image_logo', 'quality' ),
        'zc'       => array_search( cnSettingsAPI::get( 'connections', 'image_logo', 'ratio' ), $cropMode ),
        'fallback' => array(
            'type'     => none,
            )
        )
    );
    

    Hope that helps!

    in reply to: chosen.js options #312740
    Steven Zahm
    Keymaster

    @ David

    Yes … I just tested with cMap to confirm (same core logic is use to find and load files). So either of these should work fine:

    ../themes/{theme-slug}/connections-templates/tile-plus/tile-plus.min.js
    ../themes/{theme-slug}/connections-templates/tile-plus/tile-plus.js

    OR

    ../uploads/connections-templates/tile-plus/tile-plus.min.js
    ../uploads/connections-templates/tile-plus/tile-plus.js

    If the core WP constant SCRIPT_DEBUG is set to false (default) and both files exist in the above path, the min file will load. If only one of the files exist in the above path, then the file found will be loaded.

    Of the two paths listed above, the theme folder would have a higher order of preference, meaning if the files exists in both locations, the version in the theme folder would load and not the version in the uploads folder.

    The contents of the file … I highly suggest using tile-plus.js as your base and then change the following line with the Chosen option you want:

    $('#cn-tile-plus .cn-category-select.cn-enhanced-select').chosen();

    Hope that helps, let me know!

    Steven Zahm
    Keymaster

    @ Casey

    The connectionsAlphaEntryList() function never existed in Connections, but judging from the array arguments that is was just a wrapper for connectionsList() function. Right now, the equivalent is cnShortcode_Connections::shortcode(). This is just transitional thought and will likely break/not exist in a future update.

    You’re probably better off using the core WP function do_shortcode() for now. Using do_shortcode() you would have a call that looks something like (untested):

    echo do_shortcode( [connections first_name=' . $letter . ' order_by='first_name|SORT_ACS' 'template'='profile'] );

    The display_profile was also never a template that existed for Connections. So maybe it was custom created or you meant profile, which does come with Connections. In the example above I used the profile template.

    Hope that helps!

    in reply to: Market Template – WP Shortcode Magic conflict #312639
    Steven Zahm
    Keymaster

    @ dj

    Thanks for letting me know. I’ve logged it so I add it to the list. From your description it sounds like the plugin is creating a fatal javascript error.

    in reply to: Increase connections on page from 20 #312630
    Steven Zahm
    Keymaster

    @ Mark

    Yes, using a different method … see this QuickTip.

    in reply to: Missing cn-clear on my cm-list-section-head #312629
    Steven Zahm
    Keymaster

    @ Jason

    Good 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: searching not work #312628
    Steven Zahm
    Keymaster

    No, it was working just as it was before I logged in … I just visited the site and it seems to be working for me.

    in reply to: Increase connections on page from 20 #312571
    Steven Zahm
    Keymaster

    @ Mark

    Sure, here’s the link to all the cMap specific shortcode options. See the options that begin with str_.

Viewing 10 posts - 9,471 through 9,480 (of 15,332 total)