barraqda
Forum Replies Created
-
Hi
Is any way to get around this problem? Add some code in “custom form”?
Ok, I found this.
First make “page” with your “Privacy Policy” and after that (in admin panel):
Settings -> Privacy
Select in “select box” your Privacy Page.
Hi
I done something like this:
//is post event?
$is_event = false;
if (get_query_var(‘post_type’) == ‘event’) {
$is_event = true;
}if ( is_single() && !$is_event) {
//do something for single post here, but not for event post
}
Thank you, thank you, thank you!
Thanks!
I didn’t think about use 2 list with “limit=1” parameter.
This is good workaround, maybe it will work…I think you can use conditional-placeholders, like:
{has_image}content{/has_image}
event has a featured image.
{no_image}content{/no_image}
event does not have a featured image – show standard image
http://wp-events-plugin.com/documentation/conditional-placeholders/