Forum Replies Created
-
AuthorPosts
-
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.
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
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!
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.
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.
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.
Steven Zahm
Keymaster@ Bog
Ahh, so you were. I didn’t read close enough, sorry.
You need to make the change to the
card.phpfile 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.
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.
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 -
AuthorPosts
