BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 13,101 through 13,110 (of 15,332 total)
  • Author
    Posts
  • in reply to: enable_website_link not taking? #268264
    Steven Zahm
    Keymaster

    @ Mitch

    Not the most elegant solution, but CSS can be your friend.

    #cn-cmap .link-block { display: none; }
    #cn-cmap .cn-entry-single .link-block { display: block; }
    

    Untested, but should work.

    in reply to: SiteShot #268263
    Steven Zahm
    Keymaster

    @ Brian

    Ok, I made the edit. Seems to work fine.

    If you have a moment, I would truly appreciate a review. They do make a difference. Many thanks in advance!

    http://wordpress.org/support/view/plugin-reviews/connections

    in reply to: enable_website_link not taking? #268261
    Steven Zahm
    Keymaster

    @ Mitch

    That’s because someone , namely me, didn’t update the docs…

    The correct option is show_links='false'

    Sorry `bout that!

    in reply to: Email submission form not working #268259
    Steven Zahm
    Keymaster

    @ Kevin

    If WP can not send email either, my best guess there is something up with your host. One last thing you can try, for a test is install the Check Email plugin. But if creating a user didn’t send email, I doubt the results will be any different.

    in reply to: Adding %title% to main address list #268258
    Steven Zahm
    Keymaster

    @ Bog

    You’ll have to add this to the end of your theme’s style.css file:

    #cn-excerpt-plus span.title, #cn-excerpt-plus span.fn {
    display: inline;
    }
    
    Steven Zahm
    Keymaster

    @ Mark

    Sorry, yes, you’ll have to purchase cMap. If you had recently, within the last month or so, purchased Market I would be able to “exchange” it but it has been quite awhile, about a year and a half. Hope you understand.

    in reply to: limit admin input fields? #268250
    Steven Zahm
    Keymaster

    @ josh901

    Sorry, not really. There’s the screen options up in the upper right, but that is per user. Depending on the fields you might be able to hide some with CSS. Another option, not update safe, is to edit the core PHP files and put inline CSS styles to hide the fields you want to hide.

    in reply to: Adding %title% to main address list #268212
    Steven Zahm
    Keymaster

    @ Bog

    Ahh, so you were. I didn’t read close enough, sorry.

    You need to make the change to the card.php file found in the same folder.

    Find this line:
    if ( $atts['show_title'] )$entry->getTitleBlock();

    Delete it.

    Find this line:

    echo '<h3 class="cn-accordion-item" data-div-id="cn-detail-' , $uuid , '"' , ' style="border-bottom: ' , $atts['color'] , ' 1px solid; color:' , $atts['color'] , ';"><span class="cn-sprite' . $open . '" style="background-color: ' , $atts['color'] , ';"></span>' , $entry->getNameBlock( array( 'format' => $atts['name_format'] ) ) , '</h3>';
    

    Change it to:

    echo '<h3 class="cn-accordion-item" data-div-id="cn-detail-' , $uuid , '"' , ' style="border-bottom: ' , $atts['color'] , ' 1px solid; color:' , $atts['color'] , ';"><span class="cn-sprite' . $open . '" style="background-color: ' , $atts['color'] , ';"></span>' , $entry->getNameBlock( array( 'format' => $atts['name_format'] ) ) , ' ' , $entry->getTitleBlock() , '</h3>';
    

    You will very like have to add CSS to make the title an inline item rather than a block item.

    Hope that helps.

    in reply to: Email submission form not working #268209
    Steven Zahm
    Keymaster

    @ Kevin

    Can you verify if any of the other WordPress transactional emails are being sent? Such as new user account and password reset emails.

    in reply to: Contact form 7 Conflict #268208
    Steven Zahm
    Keymaster

    @ JFRanger

    Great to hear!

    If you have a moment, I would truly appreciate a review. They do make a difference. Many thanks in advance!
    http://wordpress.org/support/view/plugin-reviews/connections

Viewing 10 posts - 13,101 through 13,110 (of 15,332 total)