Forum Replies Created
-
AuthorPosts
-
Steven Zahm
KeymasterMark
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/connectionsSteven 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!
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.phpfile:$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!
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.jsOR
../uploads/connections-templates/tile-plus/tile-plus.min.js
../uploads/connections-templates/tile-plus/tile-plus.jsIf the core WP constant SCRIPT_DEBUG is set to false (default) and both files exist in the above path, the
minfile 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.jsas 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!
12/12/2014 at 10:03 am in reply to: Trying to update from 7.1.6 to 8.1.5 but I have some issues. #312733Steven Zahm
Keymaster@ Casey
The
connectionsAlphaEntryList()function never existed in Connections, but judging from the array arguments that is was just a wrapper forconnectionsList()function. Right now, the equivalent iscnShortcode_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_profilewas also never a template that existed for Connections. So maybe it was custom created or you meantprofile, which does come with Connections. In the example above I used theprofiletemplate.Hope that helps!
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.
Steven Zahm
Keymaster@ Mark
Yes, using a different method … see this QuickTip.
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
Steven Zahm
KeymasterNo, it was working just as it was before I logged in … I just visited the site and it seems to be working for me.
Steven Zahm
Keymaster@ Mark
Sure, here’s the link to all the cMap specific shortcode options. See the options that begin with
str_. -
AuthorPosts
