Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Jerry
If you’ve installed Connections 8.1 or greater you can safely ignore this message as the folder is no longer in use for the images. The message is left in primarily for legacy users who may have images in that folder.
I will be removing this message in future versions, until then, you can remove this message by logging in to your site with FTP and manually creating the folder within the
wp-contentfolder.Hope that helps!
Steven Zahm
Keymaster@ dominic
Adding something like this to the theme’s custom CSS area should work. However, if you are using a responsive theme, this will break the fluid layout because of the fixed width being set so the auto left/right margin will work.
#cn-tile-plus { margin: 0 auto; width: 620px; }Hope that helps. Oh … depending on your theme, you’ll have to tweak the width.
Steven Zahm
Keymaster@ David
Thanks for letting me know! I actually have not done anything yet. I’m guessing this might be a cache issue. Either my server cached the activation response or the response that is cached locally to the WP install is cached.
I’ll have to look into this further.
Steven Zahm
Keymaster@ Stephen
Hmmm, maybe glitch. I just checked and I was able to login wihtout no errors. If you continue to have issues let me know.
Steven Zahm
Keymaster@ Mike
Correct, that is because WordPress has already saved their user preferences for that screen.
The only solution is probably in this StackOverflow answer. This part specifically:
$('#pageparentdiv').prependTo('#normal-sortables');
$('#panel_38').insertAfter('#pageparentdiv');This would involve using the correct metabox ID/ for categories which would be
categorydivandmetabox-namefor the Name metabox. YOu when then have to enqueue your little custom script to it is included only on the Connections admin pages to ensure it will not mess with other plugins and core WP.Hope that helps!
Steven Zahm
Keymaster@ Marco
Sorry, but just hiding the name without actually excluding the entries associated to the category is not possible. Well sort of, you could resort to some CSS to do it, but it would not be easy to maintain,
#cn-cmap li.active-result:nth-child(n+2):nth-child(-n+3) {
display: none;
}The above would hide the 2nd and 3rd items in the list. You could add it to your theme’s custom CSS area, but any time you add or remove a category you would have to adjust the CSS selector accordingly.
Hope that helps!
Steven Zahm
Keymaster@ simon
Yes, this is theme conflict. It seems to be using a fairly old jQuery script to enhance select drop downs.
Does the theme perhaps have an option to disable the way it enhances select drop downs? If it does not, then the only option will be to edit this file. I think removing this line should remove that feature without any negative effects.
jQuery("select").selectbox();Hope that helps! Let me know.
Steven Zahm
Keymaster@ David
Just deactivate them on the test server. The support license key do not need to be activated for the plugins to function. The only difference will be the site where they are not activated will not be notified in the WP admin of any updates that are released.
Steven Zahm
Keymaster@ Jessica
Great to hear!
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@ Mike
The source of this error is likely the way the theme builds the page. The JavaScript for the template is not being loaded like it should. I would need a temp admin account to see what the specific work around would be for you.
-
AuthorPosts
