Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ matt581
I assume you mean for the “Select Category” text, yes? You need to use the
str_selectandstr_select_allshortcode options for Tile Plus. See this FAQ for more details.re: Aren’t there any existing mo and po files to download?
Yes, you can download the PO files directly from Transifex and then use Poedit to create the MO file. This FAQ explains the process. Unless you’re updating a translation, you really do not need to do this because I try to keep all the translations current and distributed with Connections.Hope that helps!
Steven Zahm
Keymaster@ Susie
Oh, you’ll also need to the
str_note_headshortcode option for Excerpt Plus. See this FAQ for more details.Steven Zahm
KeymasterSteven Zahm
Keymaster@ Craig
Yes, this would put text on the page, apologies for not pointing that out!
I took a quick look at your tweak, looks like you have an extra angle bracket on the
hatom-extraline. This fixes it://mod content function hatom_mod_post_content ($content) { if ( in_the_loop() && !is_page() ) { $content = '<span class="entry-content">'.$content.'</span>'; } return $content; } add_filter( 'the_content', 'hatom_mod_post_content'); //add hatom data function add_mod_hatom_data($content) { $t = get_the_modified_time('F jS, Y'); $author = get_the_author(); $title = get_the_title(); if ( is_single() || is_page()) { $content .= '<div class="hatom-extra" style="display:none;visibility:hidden;"><span class="entry-title">'.$title.'</span> was last modified: <span class="updated"> '.$t.'</span> by <span class="author vcard"><span class="fn">'.$author.'</span></span></div>'; } return $content; } add_filter('the_content', 'add_mod_hatom_data');I was just about to hit the submit button to post my reply…
I really do not like the
entry-contentspan that is being applied … if your content has any block level HTML elements then HTML code is invalid. A better solution (as long as the theme is using thepost_class()function like they should be) would be this://mod content function hatom_mod_post_content ($content) { if ( in_the_loop() && !is_page() ) { $classes = 'entry-content'; } return $classes; } add_filter( 'post_class', 'hatom_mod_post_content'); //add hatom data function add_mod_hatom_data($content) { $t = get_the_modified_time('F jS, Y'); $author = get_the_author(); $title = get_the_title(); if ( is_single() || is_page()) { $content .= '<div class="hatom-extra" style="display:none;visibility:hidden;"><span class="entry-title">'.$title.'</span> was last modified: <span class="updated"> '.$t.'</span> by <span class="author vcard"><span class="fn">'.$author.'</span></span></div>'; } return $content; } add_filter('the_content', 'add_mod_hatom_data');Steven Zahm
Keymaster@ Jim
Great to hear! Two things to keep in mind … unfortunately any time there is a Connections update, you’ll have to re-add
define ( 'LOCAL_FILE_BASE_DIRECTORY', '/my/doc/root/' );to the file because WordPress will delete the file during an update. Second, starting with version 0.8.14 the path to thetimthumb-config.phpfile will be here:../wp-content/plugins/connections/vendor/timthumb/It’s being moved as part of my ongoing effort to cleanup the file structure.
If you have 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/connectionsSteven Zahm
Keymaster@ Craig
I just uploaded version 1.0.4, the only change is if there are no open periods, the Hours will not display anything in the content blocks. I think I might get bug reports because of the change, we’ll see. If need be, I can add a shortcode option to switch this on/off.
Steven Zahm
Keymaster@ david595
Have you updated WordPress, theme or any other plugins? If you did that might have cause some sort of conflict. As a guess, it appears the memory allocated to PHP is being exhausted. Here’s an excellent post that lists several methods to increase the memory allocation. Which method that works will depend entirely on the web host. I suggest starting at the top and working your way down.
I hope that helps, let me know!
Steven Zahm
KeymasterGreat to hear that worked! There’s still the double spacing where I linked to the likely solution in this reply. After you enable that option, the display should look much better.
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/connectionsSteven Zahm
KeymasterSteven Zahm
Keymaster@ Jody
I replied in this thread…
http://connections-pro.com/support/topic/change-background-color-by-category/ -
AuthorPosts
