BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 11,941 through 11,950 (of 15,332 total)
  • Author
    Posts
  • in reply to: Quick formatting question #280080
    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.

    in reply to: Excerpt Plus 1.0.3 Help!! #279988
    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?

    in reply to: 'view all' link produces page not found error #279986
    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.

    in reply to: Modifying template #279984
    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.

    in reply to: Custom Labels? #279980
    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.

    in reply to: Import members #279978
    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?

    in reply to: Trouble with Link using membership plugin #279977
    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.

    Steven 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/connections

    Steven 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.

Viewing 10 posts - 11,941 through 11,950 (of 15,332 total)