Forum Replies Created
-
AuthorPosts
-
Nico
MemberPerfect! Thanks for confirming Jens ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Have a great week,
NicoSeptember 19, 2016 at 12:43 pm in reply to: show category with colour above event title views #1166047Nico
MemberThis reply is private.
Nico
MemberAwesome Stuart, great job with the CSS ๐
You can control the date time settings in ‘WP-Admin > Events > Settings > Display > Date Format Settings’, for example you could use ‘<br>’ as ‘Date time separator’ to move the time to a new line. This will affect the rest of the site, if this doesn’t work we can explore other options, but probably will have to replace how the date output in the template.
Regarding the country in the venue details, you can use this CSS snippet to make always show in a new line without increasing font size:
.tribe-country-name {
display:block;
}
You can do the same with other lines of the venue details if you want or also add some more specificity to the selector (by preprending .tribe-events-list) to narrow the effect of this rule just to list view.
Please let me know if those tips help you out,
Best,
NicoNico
MemberThanks for following up Jens!
Just add the following snippet to your theme’s (or child theme’s) functions.php file:
/* Tribe, add content + image to venue/organizer shortcode (https://theeventscalendar.com/knowledgebase/listing-venues-and-organizers/) */
function tribe_venue_organizer_list_add_info ( $item, $atts ) {$item = substr ( $item, 0, -5 );
// add content
$item .= '' . get_the_content() . '
';
// add featured image
if ( $img = get_the_post_thumbnail ( ) ) {
$item .= '' . $img . '
';
}$item .= '';
return $item;
}add_filter( 'TEC_VenueOrganizer_List.list.item', 'tribe_venue_organizer_list_add_info', 10, 2 );
You can change the markup and order of the content and image, it’s just a sample!
Please let me know if it works for you,
Best,
NicoSeptember 19, 2016 at 7:41 am in reply to: iCal import not entirely working, recurring events #1165836Nico
MemberThanks for confirming Douglas!
Sorry for the hassle with the recurrence bug, and really glad to hear Events Aggregator will work for you ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Hope you have a great week,
Cheers,
NicoNico
MemberHa! Thanks for confirming ๐
I’ll talk about this with our dev team, this is something we couldn’t reproduce but that we’ve seen a couple of times after plugin updates. Now Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Have a great weekend,
NicoNico
MemberHey Craig,
Thanks for following up! Touched base once again with the dev team and the answer is the same: as long as you don’t alter the load order of the scripts, they should work well in the header or footer. So give it a try!
Best,
NicoNico
MemberThanks for letting us know Lorie!
We detected a bug in the downloads page today. The fix should be up in the site now ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoSeptember 15, 2016 at 12:37 pm in reply to: show category with colour above event title views #1164817Nico
MemberTnanks for following up Pau and sorry to hear about this issue ๐
Most probably this is a formatting issue. Try pasting the new snippet in a plain text editor (like notepad in Windows or TextEdit -in plain text mode- for Mac), once the code is there copy it again to your file and re-test.
Also, I’ve tested the code locally and it’s running smoothly!
Please let me know if you can get this right,
Best,
NicoSeptember 15, 2016 at 12:23 pm in reply to: ical importer imports google recurring all on the same date #1164809Nico
MemberYou are welcome Vicente!
As you marked my previous reply as correct and this seems to be fixed, Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHi there Darren,
Thanks for getting in touch!
I cannot see the border, when I inspect an event in your site so I guess you could find a way of making it go away! If this is sill an issue please send me the direct link to view this and I’ll help out!
Best,
NicoNico
MemberHi there Simon,
Thanks for reaching out to us on this!
Taking a look at the event information you set up, it seems that the events has the exact same start date/time and end date/time. If you change the end date to be one hour more, does the event display in the site?
If that doesn’t work, can you please delete the exclusion and retest? Ultimately if this is still not works please delete recurrence settings and try once again.
Please let me know about this,
Best,
NicoNico
MemberHi there @fynskerhverv,
Thanks for getting in touch with us and sorry to hear about this issue ๐
Can you please try the following steps?
– Go to ‘WP-Admin > Events > Settings > Display > Enable event views’ and just leave ‘List’ active. Save Changes. Test.
– If the problem still persists, then re-save permalinks. Test.Please let me know if this helps,
Best,
NicoNico
MemberHowdy Christine,
Welcome to our support forums and thanks for reaching out to us! I can help you here ๐
Looks like Event Tickets is not getting the language correctly set, this might be due to a bug we will be solving in maintenance release 4.2.7 coming out later today.
Can you please let me know if this works well after the update? If you need to change any of the terms after the update I can also help!
Best,
NicoNico
MemberHi there Jens,
Thanks for getting in touch! I can help you here, but first can you please let me know how are you displaying the lists of organizers and venues? If you can add a link to where I can see each listing that would be great ๐
Please let me know about it,
Best,
Nico -
AuthorPosts
