chocolateteapot
Forum Replies Created
-
Fontawesome and Pods both cause this problem with Learnpress orders.
Yes, that’s correct. Ideally I’d like the date that the ‘course’ started, not the date of each ‘session’ in the ‘course’.
Thanks.
event_start_after=”now”
I’ve found the answer – event_start_after=”now”
[events_list recurrences=”1″ groupby=”recurrence_id” orderby=”event_start_date,event_start_time” category=”puppy” event_start_after=”now”]
#_EVENTLINK #_RECURRINGPATTERN at #_EVENTTIMES in #_ATT{class_location}
[/events_list]`
Thanks.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Featured ImageI used css to target the new content type and then used {display: none;} to hide the blog header and the featured image.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Featured ImageThanks very much!
I’ve hidden the elements that I don’t want for now.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Featured ImageThanks. Is there any way of telling Pods to use a different type of page template?
Forum: Everything else WordPress
In reply to: LoginAhhh! I think I’ve worked it out.
If you get the password wrong once it seems to cache that it needs to redirect to account rather than wp-login.php. A bug I assume? In LiteSpeed?
I’ll have a look at this.
Thanks, you’ve been really helpful.
This did help, thanks. I just have one issue.
Using the Custom Content Type Manager I have created an Events type.
Using the following code in home_page.php
$Q = new GetPostsQuery(); $args = array(); $args['post_type'] = 'events'; $forthcoming_events = $Q->get_posts($args);<?php echo $fe->event_image;?>is being returned as a number.<?php print_custom_field('event_image'); ?>in events_single.php correctly returns it as a url.<?php print_custom_field('event_image'); ?>on the home page gives The event_image field is not defined as a custom field.How do I either use
print_custom_fieldin home_page.php or translate the number (corresponding to a media(?)) into a URL?Any help is appreciated, thanks.
Thanks very much for your help, I’ll have a look at this.