BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 10,711 through 10,720 (of 15,332 total)
  • Author
    Posts
  • in reply to: Dropdown not showing #297011
    Steven Zahm
    Keymaster

    @ matt581

    I assume you mean for the “Select Category” text, yes? You need to use the str_select and str_select_all shortcode 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!

    in reply to: Customize User Entry Form for Directory #297010
    Steven Zahm
    Keymaster

    @ Susie

    Oh, you’ll also need to the str_note_head shortcode option for Excerpt Plus. See this FAQ for more details.

    in reply to: Customize User Entry Form for Directory #297009
    Steven Zahm
    Keymaster

    @ Susie

    Sure, see this QuickTip.

    Hope that helps!

    in reply to: Error: Missing required field "entry-title" #297008
    Steven 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-extra line. 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-content span 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 the post_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');
    
    in reply to: Tile Plus Photo Image Not Loading #297007
    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 the timthumb-config.php file 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/connections

    in reply to: Hours Extension #296994
    Steven 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.

    in reply to: Contact Cards Missing #296987
    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!

    in reply to: Misaligned 'search' bar & button #296986
    Steven Zahm
    Keymaster

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

    in reply to: Dropdown not showing #296985
    Steven Zahm
    Keymaster

    @ matt581

    The tile size can be tweaked, see this FAQ. You could set the size so there would only be enough space for a single tile instead of two.

    Sorry, you did ask about the random order… that can be done, take a look at the order_by shortcode option.

    Hope that helps!

    in reply to: Need a Template Recommendation #296970
    Steven Zahm
    Keymaster
Viewing 10 posts - 10,711 through 10,720 (of 15,332 total)