Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Jody
Apologies! I must have had multiple tabs open and type my reply in the wrong one.
I suggest using categories. That’s how I’ve addressed it in the past. You can then use CSS to highlight the different levels.
05/27/2014 at 10:10 am in reply to: Connecting WP registered member of site to connection profiles #292160Steven Zahm
Keymaster@ Deepanshu
I just emailed it to both email addresses, let me know if you do not receive it.
Steven Zahm
Keymaster@ aphrodite
Currently that would require the template be customized because there is not out of the box support for it yet, sorry. Features like this will likely be added to the template but I can not give any sort of timeline at this point. I’m contemplating on developing a faceted search using widgets instead.
05/26/2014 at 5:33 pm in reply to: Connecting WP registered member of site to connection profiles #292126Steven Zahm
Keymaster@ Deepanshu
Currently there is not an option to add a link to view the entry. However, this already has been added to Link 2.0. Would you like to beta test it? If you do, I would need the email address that you used to make the purchase of Link. You can post it here as a private reply.
Steven Zahm
Keymaster@ Mark
When using the default template this can only be accomplished by creating a filter. Add the following to the theme’s functions.php file:
add_filter( 'cn_output_default_atts_address', 'cn_set_default_address_format' ); function cn_set_default_address_format( $atts ) { $atts['format'] = '%line1% %line2% %line3% %city% %state% %zipcode% %country%'; return $atts; }If you decide to purchase one of the commercial templates available on this site, you can adjust the address format by using a shortcode option, like so:
[connections addr_format='%line1% %line2% %line3% %city% %state% %zipcode% %country%']I hope that helps.
Steven Zahm
Keymaster@ Kees de Graaff
The CSV Import is to Import CSV files, not vCards. Did you misstate?
As for the error, please see this FAQ.
That should fix it up.
05/26/2014 at 9:22 am in reply to: How to add text to the Edit My Directory Entry page [second try] #292103Steven Zahm
Keymaster@ Eric
I just emailed the betas, let me know if you did not receive them.
Steven Zahm
Keymaster@ Erin
I suggest the Widget Pack, it comes with a search widget for the directory.
I hope that helps!
05/26/2014 at 8:15 am in reply to: How to add text to the Edit My Directory Entry page [second try] #292096Steven Zahm
Keymaster@ Eric
re: The code you created for limiting entry types to individuals (above) – should that go into my plugin PHP file?
I’d probably would add the code to the plugin.re: Will this “case ‘add’” test work in my plugin, or will it only work from within manage.php?
I’m thing that just wrapping you pre-population code within anifclause would work fine:if ( $action == 'add' ) { // Your code here. }re: Shall I go ahead and create my instructions for form entry
I would add them to your plugin right and not add them to the manage.php file at all. The betas are on they way very shortly. I’m pushing out version 0.8.8 of Connections, you’ll need to update to that version prior to running installing the betas … one of the reason I haven’t sent them yet.Steven Zahm
Keymaster@ Alaa
Add an action and filter as shown in the Income Levels extension with their associate callback functions:
https://github.com/Connections-Business-Directory/Income-Levels/blob/1.0.1/connections_income_levels.php#L56The core template will recognize the new content block and display after if is enabled on the Connections : Settings admin page under the Display tab.
All templates contain this function call to render the content blocks of custom fields:
https://github.com/Connections-Business-Directory/Connections/blob/0.8.7/templates/card/card-default.php#L91Hope that helps!
-
AuthorPosts
