Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Gayle
Yes, and I just received it.
Steven Zahm
Keymaster@ Gizmo
1) I’m not sure what you’re asking. Map what id?
2) The connections_meta table is not used at all at the moment. So importing to it and displaying data from it, you would have to add all the necessary code. It is likely better to map to an unneeded field.
3) I just confirmed, the link does not seem to be working. I’m not sure when or how that broke, no else has reported it. I’ll have to look into it. This however, will not affect the import.
Steven Zahm
Keymaster@ peekaa
I don;t think there are any templates that show a “Title” label. Or, is that what you’re asking, can one be added?
Steven Zahm
Keymaster@ Emily
right, unfortunately, there is no logic to help define which category an entry should be assigned if there are multiple categories with the same name. Importing by ID would be the only option. I’ve been working diligently for the past few months on a complete rewrite. I’ve added this to the to feature list to implement.
Now, I know you have a need for now. If you can make two minor changes to PHP you can change the import from name to ID.
Open this file:
../wp-content/connections-csv-import/submenu/csv.phpGo to line 804. It should be the following:
$term = $connections->term->getTermBy('name', $category, 'category');Change it to this:
$term = $connections->term->getTermBy('id', $category, 'category');Now got to line 806. It should be the following
if ( $term->name == $category )
Change it to this:
if ( $term->term_id == $category )
I think that should do it.
Steven Zahm
Keymaster@ Josh
Sure, use the contact link at the bottom of the page. But first test, try with an image where the image dimensions are not “huge”. You see, images are processed in an uncompressed state. So an image that is highly compressed to produce a smaller file size can easily be 4X or greater in size in the memory. This isn’t a limitation in Connections, this is just how image processing works.
Right now, there is no logic in Form to pre-detect an image that is too large and stop the processing.
Steven Zahm
Keymaster@ cliff
This can only be done by editing the template file. This file can be found here:
../wp-content/plugins/cmapThe file you need to edit is named card.php.
Hope that point you in the right direction.
Steven Zahm
KeymasterStacey
Have you logged out and back in? The link action only occurs on login. Also, if you did logout and log back in and then changed your email addresses to match, the link can not not happen because your user account was already checked for a match. This is done to prevent hijacking the ownership of an directory entry. Does this helps?
Steven Zahm
Keymaster@ Emily
Not certain I understand completely, but I’ll try to answer.
The show_empty_categories is a template specific shortcode option and it is only available to those that support that option. Using it for a template will not affect the widget.
I hope that answers your question.
Steven Zahm
Keymaster@ Luci
They’re running a slightly older version of the cMap template. This template does come with a search and the category drop down, nothing else is required.
Hope that helps.
Steven Zahm
Keymaster@ Dennis
This was resolved in version 0.7.6.4 released on 04/06/13.
-
AuthorPosts
