Forum Replies Created
-
AuthorPosts
-
01/12/2014 at 3:40 pm in reply to: Which Templates Provide Category Drop Down/Multiple Support Licenses/Updates #276951
Steven Zahm
Keymaster@ Eric
Yes, a number of template do have the category drop down feature. They include, cMap, Excerpt Plus, Slim Plus and Tile Plus.
Right at this moment, I do not have a method available to offer variable pricing based on number of support licenses being purchased. This is something I will be implementing the first half of the year but right now, each additional license costs the same amount.
Support and updates are good for the initial year after purchase. With that said, the licenses can be renewed at a 20% discount in order to continue receiving support and updates.
I hope that thoroughly answers your questions. Thank you for considering Connections!
Steven Zahm
Keymaster@ Jon
Make sure you have the latest version of cMap installed. I think it is version 3.1. You can download it from your purchase history.
Oh, wait you have the Tile Plus template not cMap. That mean the snippet is wrong…
Make sure you have the latest Tile Plus, which is 3.1.
And then use this snippet instead.
Sorry about that!
Steven Zahm
Keymaster@ Christine
I have look at the aMember WP Intergration plugin code, well at least the best I can in the plugin editor on your site… I don’t see anything that really hints at how they are processing the single sign-on integration with WP. My best guess is that they are completely bypassing the WP login processes and actions. If that is the case, Link just will not work as designed … as well a couple other plugins I’ve run into. Honestly, mostly membership plugins, so that reduces that list significantly as one wouldn’t run more than one membership plugin. The only other I can think of was one of the events calendars for WP. I can’t remember which one though.
With that said … I uncommented some code, in Link that I only use for testing. Now, if a user visits the “Edit My Directory Entry” admin page, it’ll run the linking process. It worked on my test account. The downside, a user must visit this page in order for the link to happen rather than on login. Will that work for you? One of my longer term solutions is to add a cron to Link that will proactively link accounts. That will definitely solve the problem, but that doesn’t help you today.
I added the “Add Entry” capability so users could add an entry, if one doesn’t exist in Connections. Without that capability, they would just receive a message stating they do not have permission to add an entry and to contact the site admin.
Steven Zahm
Keymaster@ Jon
Since you have the cMap template you could hook into it to provide a category dropdown.
Install the Code Snippets plugin and import the attached file into it. Unzip it before you try to import it.
To access the import page for Code Snippets, visit the Tools > Import admin page and click on the Code Snippets link.
Steven Zahm
Keymaster@ derrick
Apologies, for a reason that I can not seem to be able to figure out, the license term started defaulting to only a day rather than the year it have should been. I’ve corrected your purchase and the few others that were affected by this issue.
Again, apologies for the trouble.
Steven Zahm
Keymaster@ Paul
Hmmm, try this:
function cn_disable_output_cache( $cached ) { if ( ! is_admin() ) return FALSE; } add_filter( 'cn_address_cached', 'cn_disable_output_cache' ); add_filter( 'cn_phone_cached', 'cn_disable_output_cache' ); add_filter( 'cn_email_cached', 'cn_disable_output_cache' ); add_filter( 'cn_messenger_cached', 'cn_disable_output_cache' ); add_filter( 'cn_social_network_cached', 'cn_disable_output_cache' ); add_filter( 'cn_link_cached', 'cn_disable_output_cache' ); add_filter( 'cn_date_cached', 'cn_disable_output_cache' );That should only affect the display on the frontend while allowing the update to work. The downside is the manage page in the admin will not show the change.
So maybe if you do this instead…
function cn_disable_output_cache( $cached ) { return FALSE; } function cn_enable_output_cache() { remove_filter( 'cn_address_cached', 'cn_disable_output_cache' ); remove_filter( 'cn_phone_cached', 'cn_disable_output_cache' ); remove_filter( 'cn_email_cached', 'cn_disable_output_cache' ); remove_filter( 'cn_messenger_cached', 'cn_disable_output_cache' ); remove_filter( 'cn_social_network_cached', 'cn_disable_output_cache' ); remove_filter( 'cn_link_cached', 'cn_disable_output_cache' ); remove_filter( 'cn_date_cached', 'cn_disable_output_cache' ); } add_filter( 'cn_address_cached', 'cn_disable_output_cache' ); add_filter( 'cn_phone_cached', 'cn_disable_output_cache' ); add_filter( 'cn_email_cached', 'cn_disable_output_cache' ); add_filter( 'cn_messenger_cached', 'cn_disable_output_cache' ); add_filter( 'cn_social_network_cached', 'cn_disable_output_cache' ); add_filter( 'cn_link_cached', 'cn_disable_output_cache' ); add_filter( 'cn_date_cached', 'cn_disable_output_cache' ); add_action( 'cn_update-entry', 'cn_enable_output_cache'); add_action( 'cn_save-entry', 'cn_enable_output_cache');That should remove the filters right before a save or update is done to an entry
Steven Zahm
Keymaster@ Douglas
What you’re looking for is the nth-child pseudo selector. Something like this:
.cn-entry div:nth-child(2) { width: 140px !important; }Adjust to meet your needs. fyi, IE and lower, won’t work with this CSS selector.
Question, which version of Tile Plus do you have installed? I ask because I’ve recently released an update that fixes my bad match at calculating the width. The latest version should exhibit the behavior shown in your screenshot.
Steven Zahm
Keymaster@ Douglas
There is not enough content width in the theme page area to accommodate another additional tile. By my eye less than half a card would fit.
You can tweak the tile’s width to get a better fit. Here’s the FAQ on how to to that.
Hope that helps!
Steven Zahm
Keymaster@ Colleen
I’ve identified the error and released version 1.0.1 which should correct the issue. It can be downloaded from your purchase history.
Apologies for the trouble.
Steven Zahm
Keymaster@ Julie
Well, this is a big ooops! The error is being caused because that function does exist in the current released version of Connections. I just updated it to version 1.0.1. It removes the use of that function. You can download the update from your purchase history.
Apologies for the trouble.
-
AuthorPosts
