Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ NetWarden
Nope, I would never tell you to choose a different theme … well, maybe I would, only if it were in your absolute best interest.
If the theme has a custom CSS area, add the following to it and if it does not, add it to the end of its styles.css file:
#cn-search-input { width: 120px !important; }That should resize the input width. It will also affect the search width above the template too. I can’t remember if I had a link to your site or not, sorry, But I could give more specific CSS so only the widget is affected if you could share a link to your site.
Hope that helps.
Steven Zahm
Keymaster@ Martin
By default, on the bio is displayed. You can turn on the other other details, however, they would only be shown after the read more link is clicked. Moving those details so they are shown with having to click would require editing the templates PHP files. Is this something you’re comfortable doing?
Steven Zahm
Keymaster@ Bob
Great to hear!
Steven Zahm
Keymaster@ Eric
Of the top of my head, I think this would work to show both:
foreach ( $entry->getCategory() as $category ) { if ( $category->name == 'Provider' || $category->name == 'Researcher' ) $profession[] = $category->name; }Then to show them:
implode( ', ', $profession )The code to only display a single address, let say just the first would be a bit more complex…
This would replace the getAddressBlock()
$address = $entry->getAddresses(); if ( isset( $address[0] ) ) { echo '( '; if ( ! empty( $address[0]->city ) ) echo $address[0]->city; if ( ! empty( $address[0]->country ) ) echo ', ' , $address[0]->country; echo ' )'; }This is off the top of my head … I think it’ll work.
Steven Zahm
Keymaster@ Nick
They are using one of the core templates that come with Connections. It is the Bio Entry Card. I don’t think they made any modifications to it.
If you need some custom work on a template, I am not available, but I do have a developed that I can recommend. He has plenty of experience with working with Connections. Just let me know, and I’ll ask him to reply here so you two can make contact.
Steven Zahm
Keymaster@ NetWarden
re: domain
None that I can think of off the top of my head. The domain for each plugin can be found by going to the Plugin Editor admin page and choosing the plugin you want to know the domain. The domain will be at the top of the initial file that is loaded in the editor when the plugin is chosen. I hope that is clear…
re: dev-connections
Alrighty, just let me know if you have any questions.
Steven Zahm
Keymaster@ Finch
Could you explain more by what is meant by “import members”? There is the CSV Import extension. Is that what you mean?
Steven Zahm
Keymaster@ Bob
Have you updated Link to version 1.0.5? I believe I have worked around the issues that are caused by membership plugins. You can download the update from your purchase history. Let me know if this resolves the issue for you.
02/13/2014 at 9:52 am in reply to: How to show "title" in staff directory using Slim Plus templete #279976Steven Zahm
Keymaster@ Vala
Good to hear you found the order_by option.
If 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@ NetWarden
Ok, that extra space is actually on purpose. I forgot about it until I started reviewing it on your site. The min-height is set to 300px. This is required for the category drop down. Many theme’s would cut it off if the space between it and the bottom of the theme’s posts content wasn’t at least 300px. Nearly no one in typical usage would run across this. I see you’re not using the category dropdown, so you could remove the min-height with the following CSS:
#cn-cmap { min-height: 0 !important; }I understand about the shortcode option glossary page. I am working on a secondary site for Connections, a Knowledge Base site. On plan is to have all shortcode options as one post type that can be associated to a product so it would be easy to create a glossary page with that setup. I’ll keep this in mind as I continue building the site.
-
AuthorPosts
