Anniechocs
Forum Replies Created
-
Thank you, this is now fixed with the new release.
I appreciate your ongoing support!
Anne
I also had this issue and it is fixed with the new release, thank you.
Hi, I also have this issue. I correctly have the timezone set to London, and I even did “Reset Timezone”. Is there something else I need to do?
I have a weekly recurring event that is on Fridays until end of October but wrongly switches to Thursdays in November and December 2018.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Bootstrap Basic Theme problems with httpsThank you very much, Vee,
I transferred my site to https but the browsers were not loading certain pages because some resources were http.Those included in the resources Chrome said were http included the Bootstrap Basic theme. If the theme doesn’t directly reference http, could this be a caching issue?
Thanks for your reply. This would be a neat way of doing it, but can you use the conditional placeholders in the php templates?
Here’s the slightly messy solution I’ve found for the single-event.php template, I expect there’s a nicer way! Any suggestions?
$field = "_event_end_date"; $enddate = get_post_meta(get_the_ID(), $field, true); $field = "_event_end_time"; $endtime = get_post_meta(get_the_ID(), $field, true); $enddatetime = $enddate . ' ' . $endtime; $now = current_time('timestamp'); $end = strtotime($enddatetime); if ($now < $end){ get_template_part( 'template-parts/content', 'event' ); } else { get_template_part( 'template-parts/content', 'pastevent' ); }
Hi, Angelo,
Thank you very much for your reply, and the many replies you’ve posted on the forum, I often find them useful.I looked in the database wp_postmeta, but although I could find meta_key values like _event_start_date, there doesn’t seem to be anything corresponding to ‘eventful’.
However, I’ve learnt something useful about meta_keys and the wp databases.
I’ll look for a different approach to my problem…
Forum: Plugins
In reply to: [Yoast SEO] Custom Post Types and rewrite slug in breadcrumbsHI, I would also like to know this. I have the structure mysite.com/customposttype/post123/ and home>customposttype>post123 works in the breadcrumbs.
However, I have a link back from the page “post123” to the archive page “customposttype” and when you follow this link the breadcrumb reads home>post123 instead of home>customposttype.
Any help appreciated!