Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Linda
Sorry about the late reply!
Yes, this can be done as well. First you need to install the Code Snippets plugin.
Add a new snippet with the following code:
function cn_change_address_types_order( $options ) { $options = array ( 'work' => $options['work'] ) + $options; return $options; } add_filter( 'cn_address_options', 'cn_change_address_types_order' ); function cn_change_phone_types_order( $options ) { $options = array ( 'workphone' => $options['workphone'] ) + $options; return $options; } add_filter( 'cn_phone_options', 'cn_change_phone_types_order' ); function cn_change_email_types_order( $options ) { $options = array ( 'work' => $options['work'] ) + $options; return $options; } add_filter( 'cn_email_options', 'cn_change_email_types_order' );Save and activate the new snippet.
That should do the trick.
Steven Zahm
Keymaster@ Erin
This feature is not yet part of Connections, it is on the roadmap. There is this script:
https://github.com/shazahm1/Connections-ExportIt is not a plugin and has a pretty complex setup … it actually going to be the basis for the feature being built into Connections. I do not expect this to be added for many months though.
Hope that helps!
Steven Zahm
Keymaster@ Rick
I am done testing. I’ll also have to add that feature to Link. I’ll work on both of these this week and try to complete them.
Steven Zahm
Keymaster@ Jason
What is the exact shortcode you are using? Can you share a link to your directory and an entry slug for an entry which is not displaying?
Steven Zahm
Keymaster@ Alex
I do have this fixed, I think. I do not access to a server with an old version of Imagick. I was actually trying to release 8.1.6 today, I didn’t quite make it, so probably tomorrow.
Steven Zahm
Keymaster@ David
I emailed you directly to take this discussion out of the forums.
Steven Zahm
Keymaster@ Fabrice
Sorry, I did not see that you posted a private reply with the text for me to test. Just so I’m testing the same thing you have an issue with… how are you trying to output all entries from within the category? By selected as an option in Slim Plus from the drop down?
Steven Zahm
Keymaster@ Rick
I was successfully able to make two edits without getting you are not authorized error message.
One other usability issue remains though…
This will have to be addressed in Link.
Since the entry is in the mod queue, it is no longer visible which means there is no apparent way to edit the entry any longer until the entry is approved. The user can edit an entry as many times as they want but when they navigate away from the edit page, there are no links back to it because it is no longer shown in the results.
What I’ll need to do is add a list action to Link for “Edit My Entry”, which was already on my to do.
Any way the bug with the error message has been fixed. I’ll be attempting to release it today. If not today, definitely tomorrow.
Steven Zahm
Keymaster@ Maureen
If I understand … you using the “Custom Fields” metabox on the Connections : Add Entry admin page, yes. If so, that is how it works. it is unique to the entry. The “Name” though, should be available in the drop down.
Does that help?
Steven Zahm
Keymaster@ Royale
The map can be turned of by using the
enable_mapcMap shortcode option. Add it to the shortcode like so:
[connections enable_map='false']Showing the categories assigned to the entry is possible but it will require editing the
card.phpandcard-single.phptemplate files. See this forum reply for the instructions:
http://connections-pro.com/support/topic/show-categories-under-the-phone/#post-297757Oh also, this will not make it occupy the “map area”, doing that would be quite a bit more complicated.
I hope that helps!
-
AuthorPosts
