Leanne
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Errors with Colorhub and Typehub plugins; help!!Hey, @iamceebee Type Hub & Color Hub got rolled into Tatsu, which won’t allow both versions of the plugins to be active at once. If you have a backup of the site or can rollback the versions, you can export the settings from both plugins (under Color Hub > Import Export and Type Hub > Import Export) and then import them into your Tatsu settings. Otherwise, you’d need to go to Tatsu > Color Hub or Tatsu > Type Hub and manually recreate them.
I would definitely also be interested in this feature – I just purchased the pro version of the plugin and found out the site needed a 3% convenience fee for each transaction.
Forum: Plugins
In reply to: [The Events Calendar] tribe_get_start_date() providing incorrect dataThis has been resolved, but I ran into the same issue today and wanted to share the solution in case anyone else needed it. I had to break out the meta query and the events tax query for it to recognize both – otherwise I’d lose filtering by either the meta information (in my case, a pods relationship field) or the tribe events information (the date was showing up as the current date instead of the start date):
$postid = get_the_ID(); $args = array( 'post_type' => 'tribe_events', 'post_status' => 'publish', 'posts_per_page' => 5, 'orderby' => 'date', 'order' => 'asc', 'paged', 'eventDisplay'=>'upcoming', 'tax_query' => array( array( 'taxonomy' => 'tribe_events_cat', 'field' => 'slug', 'terms' => array( 'slug-one', 'slug-two' ), ) ), 'meta_query' => array( array( 'key' => 'pods_relationship_field', 'value' => $postid, // this was just to get the current page id to use as the meta_value 'compare' => '=', ) ) ); $the_query = new WP_Query( $args );I’m receiving the same errors as walterkeener3, except that the last one references Line 379.
The funny thing is, this is working fine on my local site, which is essentially the same as the live site.
Thank you for the very fast response. When I put the shortcode into a post or page via the text/html tab in the WordPress WYSIWYG editor, the output attaches to the top of the page, regardless of where I put it within the post. I think I found a workaround using some hack-ish css, but thank you for the php – if my client doesn’t like the fix, I can add that to the page template. Thanks!
– Leanne