Forum Replies Created
-
AuthorPosts
-
George
ParticipantHey Mike,
Thanks for reaching out!
Is it possible to embed the calendar into various pages, but with different default views?
This is unfortunately not possible at this time. I’m sorry to disappoint!
One thing that may be helpful is to use the available shortcodes and widgets. They include “Category” filters in most cases, so you can show a list of events in the “Board Meetings” category only, for example. This would require using Event Categories on events, of course, but may be a viable workaround.
You can read more about the available widgets and shortcodes here:
• https://theeventscalendar.com/knowledgebase/events-calendar-widgets/
• https://theeventscalendar.com/knowledgebase/pro-widget-shortcodes/Cheers!
GeorgeGeorge
ParticipantHey there!
Apologies for the delayed reply.
Yes, the “Tickets” CSV import is only possible if Event Tickets Plus is installed and activated on your site.
If you have just Event Tickets, then the RSVP import type should be available.
To have the RSVP import type and the tickets import type, Event Tickets and Event Tickets Plus both have to be installed.
I hope this information helps!
GeorgeGeorge
ParticipantHey Thomas,
Apologies for the delayed reply!
When it comes to disabling the scroll function, first you must add this line of code to your site’s wp-config.php file:
define( 'SCRIPT_DEBUG', true );
Next, head to this file within Events Calendar Pro:
/events-calendar-pro/src/resources/js/tribe-events-ajax-maps.js
In this file, you want to look for where the Map is finally initialized. This happens around line 122 (in the most recent version of Events Calendar Pro at the time of writing). The line of code looks like this:
tg.map = new google.maps.Map( document.getElementById( 'tribe-geo-map' ), options );A few lines above this line, you’ll see where that options parameter is defined. It is a block of code that looks like this:
var options = {
zoom : 5,
center : new google.maps.LatLng( TribeEventsPro.geocenter.max_lat, TribeEventsPro.geocenter.max_lng ),
mapTypeId: google.maps.MapTypeId.ROADMAP,
};
To disable all scrolling / zooming, make that options block of code look instead like this:
var options = {
zoom : 5,
center : new google.maps.LatLng( TribeEventsPro.geocenter.max_lat, TribeEventsPro.geocenter.max_lng ),
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: false,
navigationControl: false,
scaleControl: false,
draggable: false
};Now, the actual “+” and “-” buttons that Google Maps provides by default will still up there. These can still be clicked to zoom in and out. If you want to hide these, then you need to add a bit more code so that the options block looks like this instead:
var options = {
zoom : 5,
center : new google.maps.LatLng( TribeEventsPro.geocenter.max_lat, TribeEventsPro.geocenter.max_lng ),
mapTypeId: google.maps.MapTypeId.ROADMAP,
scrollwheel: false,
navigationControl: false,
scaleControl: false,
draggable: false,
disableDefaultUI: true
};I hope this helps!
GeorgeJuly 27, 2016 at 10:08 am in reply to: Not seeing all the sections needed to set up tickets #1144740George
ParticipantThis reply is private.
George
ParticipantHey @Sandra,
Thanks for reaching out.
Getting all events in the Month View to show their featured images is possible but it requires a template modification. This means you take a template file from within The Events Calendar, duplicate it in your theme, and then modify that theme version of the template file.
If that sounds confusing, don’t worry — the process is much simpler than it sounds and is covered in-depth in our Themer’s Guide here ? https://theeventscalendar.com/knowledgebase/themers-guide/
Please read that Themer’s Guide thoroughly and consult it with any questions about how to make custom templates.
With the knowledge of making custom templates in mind, what’s required for each event to have its featured image showing is to find this file within The Events Calendar:
/the-events-calendar/src/views/month/single-event.php
Copy and paste that file into your theme at the correct location, which should be:
/[your-theme]/tribe-events/month/single-event.php
Here is the original version of that file: https://git.io/vKFXd
Here is the modified version of that file that will add the featured image: https://git.io/vKF1q
Make the single-event.php file in your theme look like the modified version of the file I shared above, and you should be all set.
Best of luck with your customizing! 😀
GeorgeGeorge
ParticipantHey @Alec,
Thanks for reaching out!
I checked out that event page and found no missing information or images there. I took a full-page of screenshot of exactly what I found, for reference.
Please view that screenshot here ? https://cloudup.com/clqDsFq3Ag6
• When you view the page yourself, do you see a different result than what I see and what is shown in the above screenshot?
• If so, please clarify what exact discrepancies you find or see.
In regards to the page, though, as I noted I do not see any missing information or images. Check out this event on our official demo site, for example ? http://wpshindig.com/event/coffee-code-2/2016-07-31/
Note how the layout there is basically the same as on your site, and that no information or images are missing.
Let me know what you think!
GeorgeGeorge
ParticipantHey Hedley,
Thanks for reaching out!
Unfortunately, neither feature you describe here is possible “out of the box” with our plugins. 🙁 Both would be possible only by writing some extensive custom code, which you would have to do on your own or with the help of a developer. We have more information about customizations here ? http://theeventscalendar.com/customizations
When it comes to your second item, specifically—the “Events Between:” filter—this is not something we have at present but our plugins do let you filter by month and by week. It’s not quite what you’re looking for, of course, but I just wanted to mention it. You can see these basic date parameters in action on our demo site here ? http://wpshindig.com/events
Let me know if there is anything else I can try to help with! 😀
George
George
ParticipantGlad to hear it, @Mastres. Would you care to share what plugin helped you, in case other customers have similar problems?
Thank you!
GeorgeJuly 27, 2016 at 7:47 am in reply to: We were unable to sync your event to Eventbrite. Here's what happened: #1144608George
ParticipantThanks for this information, Jessie.
I’m sorry to ask for some more information here, but I just want to track the details of the behavior so that we can best try and figure out what’s happening:
• For the first event, you say, “The events are live on both our site and Eventbrite.com, here are the links:”, and then share the event’s version on your WordPress site and on Eventbrite.com.
• Can you clarify exactly HOW the events ended up in both locations?
• What I mean is: the error you report says “This event cannot be published because it is already published or deleted.” So, can you confirm if at the time the Eventbrite.com version DID already exist on Eventbrite.com? Or did you just manually create the event on eventbrite.com after seeing that error?
Thank you!
GeorgeGeorge
ParticipantHey Dan,
The tribe_tickets_plus_hide_attendees_list filter that Geoff mentioned may indeed be helpful here. Just to confirm our findings and ensure that we find the same things, though, can you do two extra steps here?
1. Can you post your site’s System Information? Here’s how ? https://theeventscalendar.com/knowledgebase/sharing-sys-info/. I just want to confirm some site details and make sure my site details match so that I can craft a snippet modification that will work.
2. Can you confirm if the “Hide from list” options works if you temporarily remove that snippet from your site? So that the “Who’s Attending” shows on the bottom like normal, and there is no active code modification…or even in this state, do you have issues with that checkbox setting being obeyed?
Thank you!
GeorgeGeorge
Participant😀
July 27, 2016 at 7:37 am in reply to: Hundreds of events created for each day of recurring event – how can I delete #1144596George
ParticipantGlad to hear it, Jeff. Thanks so much for your patience and persistence here.
Best of luck with your site!
GeorgeGeorge
ParticipantThis reply is private.
George
ParticipantThis reply is private.
George
ParticipantThis reply is private.
-
AuthorPosts
