Forum Replies Created
-
AuthorPosts
-
Steven Zahm
KeymasterSounds 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.
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')Steven Zahm
Keymaster@ Heather
What do you mean by the “form that I created”?
Steven Zahm
Keymaster@ CeeCee
Sorry, no, not at this time.
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.
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.
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.
Steven Zahm
Keymaster@ Ariel
Yes, use this instead:
<?php $entry->getCategoryBlock( array( 'label' => '', 'separator' => ', ', 'before' => '<span>', 'after' => '</span>' ) ); ?>
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>' ) ); ?>
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.
-
AuthorPosts
