Forum Replies Created
-
AuthorPosts
-
Geoff
MemberHi Grant,
Good question–unfortunately, no, there is no way to limit the number of RSVPs per form submission at the moment. Sounds like a good idea though and one that we’d love to see added to our feature request forum, if you have a moment.
Sorry for the bad news, but does this help answer your question? Please let me know.
Thanks,
GeoffGeoff
MemberHey there, Tommy!
Good questions. Some of the styling may have to come directly from the theme stylesheet, but I’ll do my best to provide you the calendar classes needed. You can add all of these to your theme’s style.css file or use a plugin like Simple Custom CSS.
1. How can I reduce the large gap between ‘Sessions for January 2016’ and the calendar?
.tribe-events-month .fusion-events-before-title { height: 15px; }2. How can I reduce the footer margin?
3. reduce the left/right page padding by 5-10px#main { padding: 55px 5px 15px; }#main { padding-left: 20px; padding-right: 20px; }4. How can I remove the thumbnails for individual sessions listed beneath the calendar for a specific day?
It’s kinda an all-or-nothing thing, but if you’d like to hide the images:
.tribe-events-event-image img { display: none; }5. How can I remove the date contained within individual sessions listed beneath the calendar for a specific day?
.tribe-event-date-start { display: none; }Does this help you get started? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHi Ben,
So glad we’re getting close on this!
Getting images in the list widget is totally possible. It will take a template to do it and you can read up on that in our Themer’s Guide. It basically boils down to:
- Make a copy of the modules/single-event.php file which is located at: /plugins/events-pro/src/views/pro/widgets/modules/single-event.php
- Make a new folder in your theme directory called tribe-events
- Make a new folder in that one called pro
- Make a new folder in that one called widgets
- Make a new folder in that one called modules
- Drop the copied single-event.php file in that last folder
Now that the template is in your theme, you can modify it to suit your needs. In this case, plop in the event thumbnail where you would like it to display using:
<?php echo tribe_event_featured_image( null, 'medium' ); ?>Will this work for you? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberHey Christin, will you please head to Events > Settings > Tickets for me and check that the “Event” option is selected on that screen? Here’s a screenshot of how that should look.
Thanks!
Geoff
MemberHi Rachel,
It looks like my last reply was marked as the correct answer — I’m glad this helped! I’ll go ahead and close this thread but please feel free to open a new one of any other questions come up and we’d be happy to help.
Cheers!
GeoffGeoff
MemberThis reply is private.
Geoff
MemberThis reply is private.
January 25, 2016 at 9:58 am in reply to: How to add a featured image to venues and organisers #1061962Geoff
MemberOh! I should add that including this in your functions.php file will do the same:
/** * Enables the Thumbnail support for Organizer and Venue edit screens. */ function tribe_add_thumbnail_support_venue_organizer() { add_post_type_support( 'tribe_organizer', 'thumbnail' ); add_post_type_support( 'tribe_venue', 'thumbnail' ); } add_action( 'init', 'tribe_add_thumbnail_support_venue_organizer' );Cheers!
GeoffJanuary 25, 2016 at 9:52 am in reply to: How to add a featured image to venues and organisers #1061955Geoff
MemberHi Chris,
You’re not missing anything at all–venues and organizers actually do not support featured images.
One way you could get around it is to use Advanced Custom Fields to add an image field to the Venue and Organizer screens, then use that to add the image to the pages.
Does that makes sense and will it work for you? Please let me know. 🙂
Cheers!
GeoffGeoff
MemberThis reply is private.
Geoff
MemberHi Nima and thanks for reaching out!
The dots represent days with scheduled events. Do the days without dots on your widget have events and the dot simply isn’t showing? If so, please send me a link to where I can check it out and I’d be happy to look into it.
Thanks!
GeoffGeoff
MemberHi Greg,
Sorry for the trouble with styling!
Are you trying to use the styling on pages outside of the calendar? If so, it’s worth noting that the plugin’s stylesheet does not get loaded on those pages.
If you are using the styles on calendar pages, it’s possible that theme styles are overriding them. If you send me a link where I can see one of the buttons that isn’t styling, then I’d be happy to check it out and see what I can do.
Thanks!
GeoffGeoff
MemberHey Mike and good question!
I would suggest updating in this order:
- The Events Calendar
- Events Calendar PRO
- Community Events
Be sure to disable all three plugins (in the reverse of that order) prior to updating manually. Then you can follow the steps outlined here for re-installing each one to the latest version.
Let me know if any questions come up during the update process and I’d be he happy to help!
Geoff
Geoff
MemberThis reply is private.
Geoff
MemberHi Martha,
Sure thing! Try adding this to your theme’s style.css file or using the Simple Custom CSS plugin:
.tribe-events-schedule h2 { font-size: 20px; /* or whatever size you'd like */ }Also, how can I get rid of the Skype icons next to the phone numbers?
Hmm, I’m not seeing a Skype icon next to any of the phone numbers and those shouldn’t be coming from The Events Calendar. Were you able to remove them yourself, or perhaps you can point me to where they are and I’d be happy to take look.
Thanks so much!
Geoff -
AuthorPosts
