djbramer
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Organizer – email addressThanks for your input!
My best advice at this time is to recommend taking a look at our Themer’s Guide, which can show you which templates can be edited and copied in order to achieve the results that you are looking for.
Link: https://theeventscalendar.com/knowledgebase/themers-guide/
Forum: Plugins
In reply to: [The Events Calendar] Overview over all upcoming events and attendeesIf you are using the Premuim products (Events Calendar Pro, Event Tickets Plus), you really should log a support ticket with the Premium support team that can give you due attention.
Please go to https://support.theeventscalendar.com
and choose the “SUBMIT TICKETS” link.Thanks!
Hi @saltykey
I’m sorry you’re having difficulties. Have you had a chance to review this troubleshooting guide? It may help you find the issue.
https://support.theeventscalendar.com/423317-Troubleshooting-Google-Maps
Thanks
Forum: Plugins
In reply to: [The Events Calendar] Widget Background Color is always BLUEHi @finstudios
You may need to override the template to accomplish this. Please take a look at
https://support.theeventscalendar.com/454623-Configuring-the-Calendar-Widget
and see if this helps.
Thanks!
Forum: Plugins
In reply to: [The Events Calendar] Cannot update the PluginHi @novy85
I’m sorry to hear about your problem. Can you provide any more details in the form of error messages or log excerpts?
It is sometimes possible that a conflict between plugins or a plugin and theme could be the cause. We have a good guide here.
Thanks!
Forum: Plugins
In reply to: [The Events Calendar] featured eventHi @macpheek
I was not able to view your page, but you may find what you are looking for in this knowledge base article on featured events.
https://support.theeventscalendar.com/328998-Featured-Events
Thanks!
Forum: Plugins
In reply to: [Event Tickets and Registration] How to get user detail in attendee list ?At a quick glance, the i probably should be $index
for($index = 0 ; $index <= count($attendee_list); $index++){
$get_email_purchaser = $attendee_list[$index]->purchaser_email;
var_dump($get_email_purchaser);I hope this helps,
DanForum: Plugins
In reply to: [The Events Calendar] Country: Palestine is missingHello again-
My apologies. A return statement would also be needed.
add_filter( ‘tribe_countries’, function( $countries ) {
$countries[‘PS’] = ‘Palestine’;
return $countries;
});Dan
Forum: Plugins
In reply to: [The Events Calendar] Country: Palestine is missingHi there!
You can add a new country by adding a filter to the plugin. Below is a code snippet that should do the trick!
add_filter( ‘tribe_countries’, function( $countries ) {
$countries[‘PS’] = ‘Palestine’;
});Dan