Forum Replies Created
-
AuthorPosts
-
byronclinic
ParticipantThanks Geoff — will add my voice to the feature request.
Many thanks
byronclinic
ParticipantThis reply is private.
byronclinic
ParticipantOK, I’ve realised that the Divi theme has it’s own setting for how many posts to display on an archive page, independent of the WordPress Reading settings. It is set to 5 by default and so it was overriding both the WordPress “Blog pages show at most” setting and the Events calendar setting.
byronclinic
ParticipantIf I monitor SQL queries for that page I can see the relevant query is limiting the results to 5:
SELECT SQL_CALC_FOUND_ROWS DISTINCT bcwp_posts.*, MIN(bcwp_postmeta.meta_value) as EventStartDate, tribe_event_end_date.meta_value as EventEndDate FROM bcwp_posts INNER JOIN bcwp_postmeta ON ( bcwp_posts.ID = bcwp_postmeta.post_id ) LEFT JOIN bcwp_postmeta as tribe_event_end_date ON ( bcwp_posts.ID = tribe_event_end_date.post_id AND tribe_event_end_date.meta_key = '_EventEndDate' ) WHERE 1=1 AND ( bcwp_postmeta.meta_key = '_EventStartDate' ) AND bcwp_posts.post_type = 'tribe_events' AND (bcwp_posts.post_status = 'publish' OR bcwp_posts.post_status = 'private') AND (bcwp_postmeta.meta_value >= '2015-08-12 12:47:46' OR (bcwp_postmeta.meta_value <= '2015-08-12 12:47:46' AND tribe_event_end_date.meta_value >= '2015-08-12 12:47:46' )) GROUP BY bcwp_posts.ID ORDER BY EventStartDate ASC LIMIT 0, 5But I’m not sure where that LIMIT is coming from…
byronclinic
ParticipantYes, if I swap themes to TwentyFifteen, the full list displays, so somehow the issue resides in my theme?
byronclinic
ParticipantSorry, I was too premature in asking you to close the ticket: I’m still only seeing 5 events here http://byronclinic.com/workshops/ despite changing the “Number of events to show per page” setting.
byronclinic
ParticipantPlease disregard this post. I discovered some overrides that were impacting the listing.
July 22, 2015 at 10:11 pm in reply to: single-event.php when copied to my theme gives different view PRIOR to overrides #989230byronclinic
ParticipantAh, it turns out my theme has Events Calendar integration already in place. I’m using the Enfold theme and it seems that it integrates your plugin into the theme, so I was fighting the theme in terms of customising the plugin templates.
Thanks!
byronclinic
ParticipantSorry for this, the issue has been resolved.
byronclinic
ParticipantNow that I understand that’s what’s meant to happen, it’s fine I think. I have one concern which is that here in Australia, the Tax Office requires business to offer sequential invoices, and our “completed order” email from WooCommerce is effectively our tax invoice to our customer. So it just means that we aren’t really issuing invoices in sequential order, we have Invoice #1, #3 #5 etc as tickets are issued and other wordpress posts are made.
I realise this is a wordpress issue but this plugin might help me: http://www.woothemes.com/products/sequential-order-numbers-pro/
byronclinic
ParticipantI’ve realised, after looking at the Attendees List that this is probably the desired behaviour, that there is not meant to be a direct correspondence between an order and it’s associated ticket number.
I suppose I can live with that and that it’s just a matter of letting people know if they query this…
byronclinic
ParticipantI’d be interested in this too.
byronclinic
ParticipantAnd the correct location to do this in my child theme’s functions.php?
Or in wp-content/my-child-theme/woocommerce/woocommerce-functions.php?
byronclinic
ParticipantThanks Barry, looks like I need to filter wocommerce_get_cart_url
-
AuthorPosts
