adzay
Forum Replies Created
-
Okay, So i can purchase now as my site is in development, and then apply the license when I move it to a server?
I want to buy Pro. Is there a guarantee that the form editor will work with custom fields that I have created using the plugin “Advanced custom fields” ?
And that I will be able to re-order them?
Thanks
Hi Compute,
Is ‘Company’ your custom field? How did you add them?
I have been looking for help on this for a long time.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] locations' categoryYeah, sorry for the typo it was like 2 am.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] locations' categoryI too am experiencing the same problem. It shows the events category, not the events one.
Forum: Fixing WordPress
In reply to: Search Filter functions Similar to Youtubeany help?
Thanks for the advice, I need to research how to call the DB wp+em_locations and put it into that format ‘_’, .
I will try it tonight and give feedback.
Couldn’t this be done using category, or a tags. I don’t know enough php/html to write this but what if the values of the drop down is the same name as your categories.
Using php you could call the value selected in the drop down and assign it as a variable and then limit the posts on the page by that variable.
$CAT = the_dropdown_value; // Get the ID of a given category $category_id = get_cat_ID( $CAT ); query_posts('cat=$category_id'); while (have_posts()) : the_post(); the_content(); endwhile;
As I said I am not a great coder as of yet so don’t try this out. this post is to help agelonwl come up with a solution for you.
I tried what was in the article. I should have also added, can there be such thing as a “distance from *postcode*” search?
So If i put in a post code and select 25miles.. It will show me the events within that range.
Is that possible?
Thanks agelonwl, The code worked. I just had to change ‘dbem_location_event_list_item_footer_format’ into ‘dbem__event_list_item_footer_format’ so that it could use the #EVENTS placeholder format (which I haven’t changed).
Damn, that was fast. Thanks mate. I will check it out when I get home, don’t mark as resolved yet please.
regards.
Thanks agelonwl, I really appreciate that. Funny enough, looking at that pastebin finally made me understand the how to make custom placeholders ( I didn’t understand the official guide).
Thanks Marcus. It will be really helpful. Or maybe it would be quicker to make a clearer option to limit the number of events that appear with “#_LOCATIONNEXTEVENTS” , in the ‘format’ section of ‘Settings’.
So if I put down ‘1’ somewhere, it will only show 1 event at a time.
It says this in the place holder help section.
#_LOCATIONNEXTEVENT’ => array( ‘desc’ => ‘Will show a link to the next event at this location, or the no events message.’ ),
Is your method the only way how I can make it show a thumbnail image for me?
More info: The way how I changed the default List format is to make it show the thumbnails. It works for the others but not #_LOCATIONNEXTEVENT (Singular).
#_LOCATIONNEXTEVENT Just shows the permalink. no thumbnail. That is my issue.
Okay . I read a bit of the documentation. I saw this statement
Should you wish, you could also create a single-event.php or single-location.php file in your theme and override this feature completely with PHP.
Since Single-events have already been created for my preexisitng custom post type with the same name, does that mean that upon activation of this plugin it will use the one already made. But I just need to add in the template tags to control where the maps, timing etc are showed?.
Sorry the documentation is not that clear to me, that is why I am asking on this site. I can only understand if i see examples of how to place the different components in php.
For example, If I wanted to move the map on a post. How would I do so?