Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Matteo
Yes, that is what I mean by keyword searching in my previous reply. See the cMap demo as an example.
I hope that helps.
Steven Zahm
Keymaster@ Chi
Market can not be made to be responsive without redoing the CSS for it. That would have to be custom developed for you. If that is something you would like to pursue, I do have a developer I can recommend who has experience working with Connections and its templates. Just let me know and I’ll ask that he reply back to you here so you make contact with him.
Steven Zahm
Keymaster@ Arthur
Sorry, no, there is no shortcode to add this. You would have to edit the template’s PHP file to add it back in. One of the largest requests I get for the core templates is how to hide this so it is not on any of the premium templates.
Steven Zahm
Keymaster@ Arthur
Sorry, no, there is not a shortcode to re-enable this. Why was it removed? Probably the single largest request I get with the core templates is how to remove the link. As a compromise, when you click thru to the single entry view using Tile Plus you can enable a setting option to show the link before the entry. To enable this, go to the Connections : Settings admin page and enable the “Add to Address Book” setting under the Display tab in the Entry Actions section.
Steven Zahm
Keymaster@ Cindy
You can substitute CNT_cMap, but you need to use CNT_TilePlus. I think that is all that needs done.
Steven Zahm
Keymaster@ Juergen
That the theme you’re using. The Connections template is the Default Card template. It is working exactly as designed. It doesn’t sow any additional details on the single entry view.
You can use two templates to accomplish what you want. Go to the Connections : Settings admin page and enable the Single Entry Template option under the Display tab. After you do that, go to the Connections : Templates admin page, select the Individual template type and activate the Bio Entry Card template. Do the same for the Organization template type.
Steven Zahm
Keymaster@ Kristen
You need to purchase one of the premium template which supports these features such as cMap, Market, Excerpt Plus, Slim Plus or Tile Plus.
I hope that helps.
Steven Zahm
Keymaster@ terrigoodness
This template doesn’t support showing those two fields because of the size of the content would be way too large for the tiny tile.
Steven Zahm
Keymaster@ Jon
No the correct CSS should be:
#cn-slim-plus .cn-cat-level-2 { color: red !important; }Yes, just copy the code. Putting the
$classon line 980 is fine. I made the change like this.Steven Zahm
Keymaster@ Jon
Yes, you should be able to add classes based on
$level. The$levelvariable increments by 1 for each level. So, the second level the value of$levelwould be2and for the third$levelthe value would be3and so on.Something like this may work:$class = 'class="cn-cat-level-' . $level . '"';Then you would have to update lines 1010 and 1014 to add the
$class.Updated Line 1010:
$out .= sprintf('<option %4$s style="padding-left: %1$dpx !important" value="%2$s"%3$s>' . /*$pad .*/ $category->name . $count . '</option>' , $pad , $category->term_id , $strSelected , $class );Updated Line 1014:
$out .= sprintf('<option %4$s style="padding-left: %1$dpx !important" value="%2$s"%3$s>' . /*$pad .*/ $category->name . $count . '</option>' , $pad , $category->term_id , $strSelected , $class );That should do it.
I just added the same classes to the dev version of Connections so if you make these changes, they will be forward compatible; meaning, your CSS will not break.
PS: 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/connections -
AuthorPosts
