Dan Waldschmidt
Forum Replies Created
-
Forum: Plugins
In reply to: [GravityExport Lite for Gravity Forms] Changing Order of ColumnsForum: Plugins
In reply to: [Send Emails with Mandrill] Plugin causing 404 errorsAny updates on this getting fixed in the plugin? We are experiencing the same issue and would prefer the fix be implemented by the plugin developer instead of doing it ourselves and risk the changes being overwritten the next time an update is released.
Hi @jlarson13,
Thanks for reaching out. It is possible to use a different template, however, this may depend on your theme. Here are the steps you’ll need to take:
- In your theme’s files on your server look for a file called
single.php(if that doesn’t exist useindex.php). - Copy that file and rename it within your theme to be called
single-volunteer_opp.php. - Adjust that template file however you’d like and you should see the changes appear on your site.
If you’d like to learn more about how WordPress handles which template to use for custom post types you can take a look at https://developer.wordpress.org/themes/template-files-section/custom-post-type-template-files/.
Hopefully that’s helpful. Let us know if you have any other questions.
Dan
Forum: Plugins
In reply to: [WP GoToWebinar] GoToWebinar Authentication Randomly DisconnectingThanks so much for the quick response. Just so I understand correctly, what you’re saying is that the App I set up for authentication is the method you recommend using?
Thanks for the heads up about the GoToWebinar API. I understand that’s out of your control.
Yes, happening here too. Also using custom statuses.
Forum: Fixing WordPress
In reply to: tax_query AND relation for same taxonomyOk, I figured it out. Here is a proper solution -> you can simply add ‘operator’ as a key value pair in your tax_query array. Once again, I have my array called $event_types which has multiple ‘Event Category’ slugs in it which is my custom taxonomy.
$args = array( 'post_type' => 'venue', 'posts_per_page' => -1, 'meta_key' => 'venue_menu_order', 'orderby' => 'meta_value_num', 'order' => 'ASC', 'tax_query' => array( array( 'taxonomy' => 'event_category', 'field' => 'slug', 'terms' => $event_types, 'operator' => 'AND' ), ), );Forum: Fixing WordPress
In reply to: tax_query AND relation for same taxonomyThis post states the issue much clearer and more concise than I do. http://wordpress.org/support/topic/tax-query-with-multiple-terms?replies=11
James’ “solution” does not work though.
- In your theme’s files on your server look for a file called