mtuttle
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] LocationNevermind, found it!
Forum: Plugins
In reply to: [Custom Post Type UI] Calling CPT by categoryOh yeah, any interest in seeing what I setup? Might be useful to include with the plugin so others can use it as well.
Forum: Plugins
In reply to: [Custom Post Type UI] Calling CPT by categoryWell, the meta_box_select was being used on a page template I setup that would allow a client to create a new CPT, add a new page selecting said template, and then use a drop down in a meta box that listed all the registered post types to display post from only the CPT selected. I got it to work and I think it’s helpful for people who can’t code their own sites, but can use the dashboard.
I am wondering if you know of a method to add a metabox to all the CPT’s created by CPT UI?
Forum: Plugins
In reply to: [WP Mobile Detect] Using shortcode in header.phpHere’s how I got it to work for my theme, since the developer and the original poster seem checked out.
<?php if (function_exists('wpmd_is_phone') && wpmd_is_phone()) { echo "<li><a class='phone' href='tel:" . ot_get_option('phonenumbercontent') . "'><span class='phone'>" . ot_get_option('phonenumbercontent') ."'</span></a></li>"; } else { echo "<li><span class='phone'>" . ot_get_option('phonenumbercontent') . "</span></li>"; } ?>Hello,
Any word on how to fix this? I have a construction company project that wants to display different categories of their projects. So, if someone wants to view all the categories within a certain range, no results show even though there are hundreds of results.
Please post a fix if you have one.
Also, can I change the display order? I have a client who want the map to display above the search form.