BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 9,121 through 9,130 (of 15,332 total)
  • Author
    Posts
  • in reply to: Authored #319324
    Steven Zahm
    Keymaster

    @ Dave

    No problem!

    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: Image not displaying #319323
    Steven Zahm
    Keymaster

    @ TSEd

    I visit both pages, the images are showing for me just fine. So I’m guessing you figured out the issue, yes?

    in reply to: Connections and RTL #319322
    Steven Zahm
    Keymaster

    @ Mowafag

    Thanks for letting me know! I’ll take a look at this.

    in reply to: Highlight Edited Fields for Moderation #319321
    Steven Zahm
    Keymaster

    @ Rick

    Sorry, this is not possible because Connections does not store revisions.

    in reply to: Strange behaviour in IE #319320
    Steven Zahm
    Keymaster

    @ Koen

    This is probably being caused by the theme by way of a CSS conflict somehow. I can help, but I’ll need you to share a link to the page having the issue. Without that, I could not even venture a guess.

    in reply to: Company logo #319319
    Steven Zahm
    Keymaster

    re: Paul

    This is possible but would require you to edit the template’s files. You would want to add the following code to the card.php file found here:
    ../wp-content/plugins/connections-excerpt-plus/

    getImage(
    array(
    ‘image’ => ‘logo’,
    ‘height’ => 100,
    ‘width’ => 100,
    )
    ); ?>

    If you decide to do this, then I highly suggest following the instructions in this QuickTip.

    Now, you’ll likely have to add edit the CSS too, so I recommend reading this QuickTip.

    Hope that helps! Let me know.

    in reply to: "Show Details" Bug #319318
    Steven Zahm
    Keymaster

    @ Joel

    re: When I show details and then close details. There is html showing.
    I believe this is an error in the shortcode. Edit the page where you inserted the [connections] shortcode and switch the page editor to the Text tab. Now, remove the b HTML tags from around Show Details.

    re: Also, how can i change the wording from “Show Details” to- “Click Here For Details”
    It appears you already change those values from the defaults, so while you’re editing the page to remove the HTML tags, you can change the text to anything you want.

    Hope that helps, let me know.

    in reply to: No Pagination #319317
    Steven Zahm
    Keymaster

    @ Joe

    I didn’t catch this at first when looking at it… you need to add enable_pagination=true to the shortcode.

    That should do it. Hope that helps! Let me know.

    in reply to: Custom Fields #319302
    Steven Zahm
    Keymaster

    @ David

    Yes, there are a couple actions in CSV Upload that you can hook into to save the custom fields meta data. They are cncsv_map_import_fields and cncsv_import_fields.

    Here are links to a third party extension utilizing custom fields and using those hooks to be able to import from a CSV file.

    The hooks are added here:

    The callback functions are here:

    As you’ll see there’s not too much to it.

    Hope that helps! Let me know.

    in reply to: Customization / Enhancements #319295
    Steven Zahm
    Keymaster

    @ Sam

    re: Tags for entries. While the ability to assign a category is nice, the ability to assign multiple tags (the same way you can for regular WordPress posts) is required. I need to be able to allow users to add multiple tags in the “form” and filter the entries in the “market” view column instead of the category filter in place today. Really, I don’t need both tags and categories, so if multiple categories could be assigned, and multiple categories simultaneously selected to filter, that would be sufficient.
    With all the work I’ve done in 8.1.7 and for the forthcoming 8.2 release. Adding tag support is finally within reach … long on my todo list. So adding tag support as far as adding and removing to/from and entry would be somewhat easy. But… they would still be a lot of work to do so one could query/filter entries by those tags.

    Multiple categories can already be assigned, so you could use them as “tags”. Fun fact, the difference between categories and tags in WP boils down to categories can have a hierarchy and tags can not.

    Selecting by multiple categories is possible, just not with Market because it uses a radio input to determine the selected category. This radio list would have to be converted to a checklist with a submit button.

    Now, cMap includes this as a built in feature (actually all templates which use a category drop down), although it be a beta feature beta feature. To enable this feature in cMap you would add enable_category_multi_select='true' to the shortcode.

    Now since it is beta… after multiple categories are selected there is not an obvious way to submit the selection. Click the search button will do it. Alternatively you can do this (for cMap):

    Install the Code Snippets plugin.
    Add a new snippet with the following code:

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

    Save and activate the snippet.

    This snippet will add a submit button to cMap.

    re: Posts associated with entries. I enable visitors to write posts (currently via the Frontier Post plugin) to the site and would like to enable them to associate their posts with one or more Connections entries. Do you have any suggestions / code snippets that would enable me to achieve this?
    I assume this still requires the visitors to logging which requires them to have an account on your site, correct? If, so, then you can use the Link and Authored extensions to accomplish this. When the user logs in Link will link their user account to their entry. After the link is created, Authored will display their last five posts on their details page.

    Hope that helps! Let me know.

Viewing 10 posts - 9,121 through 9,130 (of 15,332 total)