BBPress Steven Zahm : Replies Created

Forum Replies Created

Viewing 10 posts - 14,161 through 14,170 (of 15,332 total)
  • Author
    Posts
  • in reply to: 500 Error #258864
    Steven Zahm
    Keymaster

    Sounds like a PHP memory issue. See this excellent blog post to see if it resolves the issue.

    Sorry, but custom fields are currently not supported.

    in reply to: Category filter not working #258863
    Steven Zahm
    Keymaster

    @ tglazier

    This is being caused by a script in the theme. The search input has default text that says “Search” because of the theme, that word is being submitted as a search term when you use the category dropdown. You can see it in the address bar. The theme is trying to be helpful by using this “shim” for older browsers that do not support the placeholder text in text boxes. I’ve seen a couple implementations of this shim and they all seem to have this same bug.

    Unfortunately, the only fix, is to remove this from the Connections source PHP code. You’ll have to open the class.template-parts.php file and go to line 376.

    In that line you will find this:

    placeholder="' . __('Search', 'connections')
    

    Change it to this:

    placeholder="' . __('', 'connections')
    
    in reply to: Forms not matching #258862
    Steven Zahm
    Keymaster

    @ Heather

    What do you mean by the “form that I created”?

    in reply to: Is payment integration available? #258861
    Steven Zahm
    Keymaster

    @ CeeCee

    Sorry, no, not at this time.

    in reply to: Stoped working after upgrade #258860
    Steven Zahm
    Keymaster

    @ Sofia

    Just sounds if you have one of the filters set. Make sure you’re not viewing the moderation queue by clicking the “All” link at the top left. Make sure all the dropdowns say “All … ” and click the filter button.

    in reply to: Live Samples? #258859
    Steven Zahm
    Keymaster

    @ Janek

    Nope, seems they changed their sites focus. They’re not using Connections for a directory any more. They are now running a classified site. They switched to ClassiPress. I removed them from the list.

    in reply to: Advanced Search #258802
    Steven Zahm
    Keymaster

    @ Gizmo

    Yes, it is on the to do list, but I could say when because I’m still working on improving the basic search.

    in reply to: Show categories? #258801
    Steven Zahm
    Keymaster

    @ Ariel

    Yes, use this instead:

    <?php $entry->getCategoryBlock( array( 'label' => '', 'separator' => ', ', 'before' => '<span>', 'after' => '</span>' ) ); ?>
    
    in reply to: Show categories? #258785
    Steven Zahm
    Keymaster

    @ Ariel

    The only way to accomplish this is to edit the card.php and card-single.php file of the template.

    Add the following to the files where you would like the categories to be listed:

    <?php $entry->getCategoryBlock( array( 'separator' => ', ', 'before' => '<span>', 'after' => '</span>' ) ); ?>
    
    in reply to: Next… #258783
    Steven Zahm
    Keymaster

    @ MARA

    You have the shortcode on the page twice. The shortcode should only be use once and all options put in the same shortcode.

Viewing 10 posts - 14,161 through 14,170 (of 15,332 total)