Forum Replies Created
-
AuthorPosts
-
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.
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_metaand$logo_metawill be arrays. The URL in theurlkey 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!
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!
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!
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.
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.
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.
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
Steven Zahm
Keymaster@ Jenna
Please see this FAQ, specifically the section on removing the
codeandpretags. Once those are removed, the directory will display fine.Hope that helps!
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!
-
AuthorPosts
