Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Jessica
The linking can be disabled. Go to the Connections : Settings admin page and uncheck the Name option under the Advanced tab.
That should do it.
07/07/2014 at 6:29 pm in reply to: Categories get separated into multiple ones due to commas #296276Steven Zahm
Keymaster@ Brandon
Sorry, no, the field delimited by is the column separated character using in the CSV file to denote the end of one column. The categories are all in a single column and at the code level, the CSV import will split the categories by comma not matter what the field delimiter is set to. The only option is to import the categories that have a comma in the name with a substituted character and then rename them after the import.
I hope that helps!
Steven Zahm
Keymaster@ Ron
Which template are you using? If you’re using cMap, Market or any of the templates with category drop down you could use the http://connections-pro.com/documentation/cmap/#Can_I_use_cMap_on_two_different_pages_showing_different_categories_in_the_drop_down. If I understand correctly, that should do exactly what you’re asking for.
Hope that helps!
Steven Zahm
Keymaster@ Mike
Probably the easiest solution is to rename the “Other” address type. See this QuickTip on how to change text in Connections.
Hope that helps!
Steven Zahm
Keymaster@ Lucas
This can be done with shortcode option enabled by cMap, see this FAQ. All the str_***** shortcode options available to cMap can be found on this page. You can change all those string with the shortcode options.
Hope that helps!
Steven Zahm
Keymaster@ Jessica
There are only a couple inline styles that are calculated automatically based on shortcode values or their default values. they are:
The background color and and gradient can be set as explained on this doc page.
The tile size can be changed with shortcode options too, see this FAQ.
And the image size.
Does this help?
Steven Zahm
Keymaster@ Robyn
Ok, I see now. It is a JavaScript conflict with the theme. Both Connections and the theme enqueues a JavaScript with a handle of
jquery-preloader(an alias). The theme wins and loads its file which is not the one required by Connections.Here’s an update safe method that might fix it…
First install the Code Snippets plugin.
After it is installed, create a new snippet with the following code:
add_action( 'wp', 'cn_register_javascript_preloader', -9999 ); add_action( 'wp_enqueue_scripts', 'cn_enqueue_javascript_preloader', -9999 ); function cn_register_javascript_preloader() { // Grab an instance of the Connections object. $instance = Connections_Directory(); // If SCRIPT_DEBUG is set and TRUE load the non-minified JS files, otherwise, load the minified files. $min = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; wp_register_script( 'cn-jquery-preloader', CN_URL . "assets/js/jquery.preloader$min.js", array( 'jquery' ), '1.1', $instance->options->getJavaScriptFooter() ); if ( ! is_admin() ) { wp_register_script( 'cn-ui', CN_URL . "assets/js/cn-user$min.js", array( 'jquery', 'cn-jquery-preloader' ), CN_CURRENT_VERSION, $instance->options->getJavaScriptFooter() ); } } function cn_enqueue_javascript_preloader() { wp_enqueue_script( 'cn-ui' ); }That should work. Let me know.
Steven Zahm
Keymaster@ Brandon
I’ll be online for the next couple hours, so if you can do it now, I’ll take a look right away.
Steven Zahm
Keymaster@ Mark
I do not see a reason why it is not working on the dev site. It seems fine in both Chrome and Firefox… Are both site configured identically, same plugins, theme including the version? Have you tried the JavaScript option on the the Connections : Settings admin page under the Advanced tab?
Steven Zahm
Keymaster@ Mitch
Greetings! The wife and I are redoing the dining room so we spent the time working on it. It’s fun :)
Hope your 4th was great too.
I have spent time on this. The underlying code for working with categories has been completely rewritten to be far more flexible. The problem with it is it is far more db intensive. So I’m looking into building in a results cache. After that’s complete, then it is simply updating the category widget with the couple new options.
-
AuthorPosts
