seifs4
Forum Replies Created
-
Forum: Plugins
In reply to: [Search Everything] Not searching categories within custom post typeI appreciate you getting back to me but the change in the code hasn’t seemed to help. I tried to search for “web design” and “automotive repair”, both of which should produce results and there were no results found.
I left the change in place in case you wanted to check it out yourself @ http://www.sauganashchamber.org.
Any other ideas would be greatly appreciated.
Thanks again for getting back to me.
seifs4Forum: Plugins
In reply to: [Event List] Access Event List Info from databaseI figured out the problem. I needed to let the database know what order I wanted it displayed, so I added “ORDER BY start_date” to the query.
Like this: `global $wpdb;
$result = $wpdb->get_results( “SELECT start_date, title
FROM wp_event_list
WHERE start_date >= CURDATE() ORDER BY start_date LIMIT 7″
);`Forum: Plugins
In reply to: [Search Everything] Not searching categories within custom post typeHello,
The Search Everything plugin is working great when I search for a “one word” term. Is there any way that I can adjust the code to accept “two word” queries such as “web design” or “automotive repair”?
I would appreciate any help with this, thanks!
seifs4
Forum: Fixing WordPress
In reply to: display posts under their categories in two columnsSorry for my ineptitude, but how would I run a counter loop until I get to the value set to the half (rounded) post count? It’s got me stumped.