BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 5,201 through 5,210 (of 15,332 total)
  • Author
    Posts
  • in reply to: Bio text stacked up… #386663
    Steven Zahm
    Keymaster

    @ Monica

    Looks like a CSS conflict, perhaps with the theme or another plugin??? Impossible to know from a a screenshot. If you can share a link to the page so I can take a look I am quite certain I can figure out the issue and give a solution rather quickly.

    in reply to: Retrieve uploaded image path for entry #386651
    Steven Zahm
    Keymaster

    @ Brittany

    Like this:

    $entry = new cnEntry();
    
    // `id` or `slug`
    $entry->set( $slid );
    
    // get image meta for the photo
    $image_meta = $entry->getImageMeta();
    
    // get image meta for logo
    $logo_meta = $entry->getImageMeta( array( 'type' => 'logo' ) );
    

    Both $image_meta and $logo_meta will be arrays. The URL in the url key of the array. The documentation of the getImageMeta() method can be found here. Using this method you can set options such as size, crop mode and quality too.

    Hope that helps!

    in reply to: sort entries by last modified date in admin #386649
    Steven Zahm
    Keymaster

    @ dominic

    Sorry, there is no way presently to change the sort order. What I do… on the Connections : Dashboard admin page there is a Recently Added and Recently Modified widgets that display the first ten. You could use those.

    Hope that helps!

    in reply to: View All #386648
    Steven Zahm
    Keymaster

    @ Caroline

    The only way to do this is to edit the core PHP ../includes/shortcode/class.shortcode-connections.php file.

    You would have to move line 203 to after the body or footer.

    Making this change would not be update safe, meaning after every update you would have to make the same change. Additionally I have no clue how this affect functionality or compatibility in Connections and it add-ons.

    Hope that helps!

    in reply to: Logo and image gets confusing with cMap #386414
    Steven Zahm
    Keymaster

    @ Jana

    The couple solutions you already presented are the easy ones. The only other solution I can offer is to edit the template file to detect the entry type and then load the image based on type. Making this type of change will obviously break the Customizer feature but that may be worth it for you.

    in reply to: "No results." Error #386413
    Steven Zahm
    Keymaster

    @ Jonathan

    This is because on the single entry profile page, only the first shortcode instance on the page is used. In just about all cases this works out just fine but there can be issues when the shortcode is used on the same page multiple times. For example the issue you are experiencing. The first shortcode is configured in a way that links from the other instances are excluding the desired entry.

    I do try to account for this in the code. What are the exact shortcodes you are using? I can likely release an update pretty quickly that can take into account your usage. If not, I do have an alternate solution.

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

    @ Greg

    I can but it would be better if I install it. The code has changed significantly. The messages are not added automagically, instead they are configured manually in the shortcode.

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

    @ Jana

    Thanks! 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: Display #386278
    Steven Zahm
    Keymaster

    @ Jenna

    Please see this FAQ, specifically the section on removing the code and pre tags. Once those are removed, the directory will display fine.

    Hope that helps!

    in reply to: Alpha index display #386259
    Steven Zahm
    Keymaster

    @ Steve

    Add the following to the theme’s custom CSS area. Tweak as desired.

    div.cn-alphaindex a {
        font-size: 15px;
        margin: 0 2px;
    }
    

    Hope that helps!

Viewing 10 posts - 5,201 through 5,210 (of 15,332 total)