Forum Replies Created
-
AuthorPosts
-
Barry
MemberThat’s strange – it seems that a response is being sent back to the browser but is basically empty.
Can you try deactivating all other plugins (except for those by Modern Tribe) and switching to a default, unmodified theme and see if that resolves this?
If it does, try reactivating those components one-at-a-time until you discover the conflict, if there is one. Does that help?
Barry
MemberHi accessrose, a short and simple CSS rule like this should do the trick:
#tribe-events-pg-template { background: white }If your theme has somewhere that you can add custom CSS you might be able to quite easily add this there, or you could just add it to the bottom of your theme’s own stylesheet. Otherwise you’d have to either use Andy’s plugin (as referred to by Rob) or else read through the Themer’s Guide and learn about creating a tribe-events.css stylesheet:
https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/
If there is anything specific in there you don’t understand then definitely let us know and if we can prod you in the right direction we will ๐
Hope that helps!
Barry
MemberHi Donna – so a great starting point is our Themer’s Guide:
https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/
If I’m understanding you correctly then the template you need to override here is month/single-event.php so your override would live at:
your_theme/tribe-events/month/single-event.php
Assuming that is initially a straight copy of the original, please locate this line of code:
<h3 class="tribe-events-month-event-title summary"><a href="<?php tribe_event_link( $post ); ?>" class="url"><?php the_title() ?></a></h3>Within that line – just before <?php the_title() ?> – could you try inserting:
<?php echo tribe_get_start_date(null, true, ' ') ?>So that the complete line looks like:
<h3 class="tribe-events-month-event-title summary"><a href="<?php tribe_event_link( $post ); ?>" class="url"><?php echo tribe_get_start_date(null, true, ' ') ?> <?php the_title() ?></a></h3>Does that accomplish what you need here?
Barry
MemberHi Jahnu,
I’m not familiar with Ultimatum – but have you tried changing the default template in Events > Settings > Display – does that make any difference here?
Barry
MemberHi Anderson – in the first instance can you take a look at this FAQ entry and see if that helps out here:
https://theeventscalendar.com/faqs/the-calendar-page-title-shows-title-of-an-event/
If not, can you confirm if switching to a default theme such as Twenty Twelve resolves this (and, if so, what theme are you using)?
@joeleadedesign: definitely feel free to monitor this thread, but if you find none of the steps we suggest to Anderson work for you it would be appreciated if you could create your own thread where we can separately work through this with you. Thanks!Barry
MemberHi Anne,
Sometimes bits of code can be stripped out by our forum software – which makes it difficult to know if I’m seeing everything or if pieces are missing. If it all possible, could you post that list of errors a second time using a service like Pastebin or Gist?
I also note you tried deactivating all other plugins/reverting to a default, unmodified theme. Can you confirm if that made any difference here?
Barry
MemberClosing this one out.
August 22, 2013 at 6:51 am in reply to: How to move the ticket box – to the top of body of the page, say? #62425Barry
MemberGuessing you’re all good here – closing this thread out ๐
Barry
MemberClosing this one, hopefully the above helped out but if not please don’t hesitate to create a new thread ๐
Barry
MemberClosing this one out since it’s been a while with no follow-up – if you do need further support please don’t hesitate to create a new thread.
Barry
MemberClosing this out since there’s been no further follow up – if you do require further support please feel free to create a new thread.
Barry
MemberHi marktimemedia, I’m going to close this one out since you should hopefully be able to use the above workaround / if not it ought to be resolved in a forthcoming maintenance release. Thanks for your support!
Barry
MemberHi Grรฉgoire – closing this out since it’s been a while with no further follow-up. Of course if you still need help please just create a new thread ๐
August 22, 2013 at 6:44 am in reply to: The tickets option is not showing up on my event page. #62419Barry
MemberHi lsgdesserts, it’s been a while without any update so I’ll assume you’re all sorted here and close this thread. Thanks!
Barry
MemberHi braniganinteractive,
So you’ve got a couple of choices there – you could either inspect the array or you could alternatively ask for a single result to be returned by doing something like:
get_post_meta($event_id, '_EventBriteId', true)There’s a great guide to how get_post_meta() works over here: http://codex.wordpress.org/get_post_meta
Does that help at all?
-
AuthorPosts
