BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 11,891 through 11,900 (of 15,332 total)
  • Author
    Posts
  • in reply to: Searching Contact #280418
    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.

    in reply to: Need Market Template to be responsive #280417
    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.

    in reply to: Add Last Update #280416
    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.

    in reply to: Add to address book #280415
    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.

    in reply to: Search only on one page #280414
    Steven Zahm
    Keymaster

    @ Cindy

    You can substitute CNT_cMap, but you need to use CNT_TilePlus. I think that is all that needs done.

    in reply to: No details by clicking on entry #280413
    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.

    in reply to: Category drop down not showing #280351
    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.

    in reply to: Biographical Info / Notes #280350
    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.

    in reply to: Organizing long category dropdown menu #280346
    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 $class on line 980 is fine. I made the change like this.

    in reply to: Organizing long category dropdown menu #280325
    Steven Zahm
    Keymaster

    @ Jon

    Yes, you should be able to add classes based on $level. The $level variable increments by 1 for each level. So, the second level the value of $level would be 2 and for the third $level the value would be 3 and 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

Viewing 10 posts - 11,891 through 11,900 (of 15,332 total)