uclackitech
Forum Replies Created
-
any help?
Forum: Plugins
In reply to: [Facebook Album] Facebook API came back with a faulty result…I’m having the exact same problem. it was working a month ago and now i get that error and message
using the search form and pagination.
any reason why the event sign ups page isn’t AJAX?
is there another way I can manually set AJAX/recursion other than the wp-config way?
Any help would be appreciated.
Thank you
I don’t think the booking date is the problem because if I don’t nest the conditions, the {has_booking}content{/has_booking} works just fine.
Yes, the event-sign-ups is set up as my main events page
The Quick signup part is where I’m trying to do the recursion with the {logged_in}
I want that page to have ajax (the search and pagination)
Figured it out on my own.
add_action('em_event_output_condition', 'filterEventOutputCondition', 1, 4); function filterEventOutputCondition($replacement, $condition, $match, $EM_Event){ $EM_Tickets = $EM_Event->get_tickets(); foreach($EM_Tickets as $EM_Ticket){ if( is_object($EM_Ticket) && preg_match('/^has_ticketdescription/',$condition, $matches) ){ if ( !empty($EM_Ticket->ticket_description) ){ $replacement = preg_replace("/\{\/?$condition\}/", '', $match); }else{ $replacement = ''; } } } return $replacement; }
Thanks though
With that code, it just displays logged in.
Hi,
so I put the two constants at the bottom and went into settings–>formatting and was editing the “Default event list format”.For example,
{logged_in}{has_bookings}content{/has_bookings}{/logged_in}
displays a blank screen
{has_bookings}content{/has_bookings}
displays “content”
As for the ajax constant, my pagination/search button is loading a new page each time instead of refreshing (like shown on your demo page).
Also, how do I delete duplicate events? If you sign up, cancel, signup again for the same event, there are 3 listings of the same event.
oh ok. how about the default cut-off date? where/how can I edit that, if possible?
Forum: Plugins
In reply to: [Theme My Login] Theme My Login – Gravatar on profileI’m having the same problem. The gravatar is a blank white screen.