Forum Replies Created
-
AuthorPosts
-
Brian
MemberSounds good to us!
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberGreat glad it is working now and you learned a little bit too 🙂
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberHi,
Both need to be v 3.12rc1
The Events Calendar v 3.12rc1 is available for Download with Pro in your account as well here on theeventscalendar.com
September 4, 2015 at 1:06 pm in reply to: How to remove Rich Snippets from sidebar calendar? #1002259Brian
MemberHi,
I looked at that link and the vevents is still there.
Do you have a child theme or a parent theme you are working with? If so try the other.
And to verify you have the templates in the right place you could add a word and if you see it you know it is working.
The directory in your theme should not include views or src in it. Those are replaced by tribe-events/pro/widgets etc…
Brian
MemberHello Again,
Sorry for the issues on this. I can help troubleshoot this with you.
I looked at the coding and we place a limit of 200 in there.
Although it would be lost on updates a quick fix to get it working would be to edit this file:
the-events-calendar-filterbar\src\Tribe\Filters\Venue.php
And change this:
'posts_per_page' => 200, // arbitrary limitto this:
'posts_per_page' => -1, // arbitrary limitThat will get all the Venues for now as it appears there is no other way to change it.
I have ticketed this for us to add a filter there.
Thanks
Brian
MemberHi Again,
I can help out here.
We can use some css to target specific columns based on their order.
Try out these different selectors:
First column:table tbody td:first-child
2nd Column:
table tbody td:nth-child(2)
3rd Column:
table tbody td:nth-child(2)
Last columm:
table tbody td:last-child
Let me know how that works out.
Thanks
September 4, 2015 at 12:50 pm in reply to: Problem with Permalinks – Trying to get DOMAIN > EVENTS > CITY > EVENT Format #1002250Brian
MemberHi,
Thanks for using our plugins.
Unfortunately, changing permalinks is only possible with an overhaul of the plugin, which would have to be done on each update and not something we can support.
The only thing I do have for this is this snippet that can change the word category in the slug:
https://gist.github.com/jesseeproductions/762f784476f555469d11
Change kategori in that snippet to what you would like to call it, add the coding to your theme’s functions.php and resaving permalinks and you should be all set.
Let me know if you have any follow up questions.
Thanks
September 4, 2015 at 12:47 pm in reply to: List of recurring events does not show first date of the series #1002248Brian
MemberHi
Sorry for the issues with this. It is a bug in the coding and we have a fix in the next version of the plugin 3.12.
That is scheduled to be out hopefully next week if all goes to plan in our testing.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
Thanks for using our plugins I can help out here, but I am limited on theme customizations per our terms and conditions.
What theme are you using?
Does the Custom Sidebars Pro create a sidebar that shows on the Single Events at all? Or nothing there?
The Event Views of Month, List, Map, Photo, Etc are archives. In Custom Sidebars Pro can you add a sidebar to an archive?
Let me know and we can go from here.
Thanks
Brian
MemberHi Mario,
Thanks for the interest in our plugins.
We do not have a direct feature to attach a document.
You could add links in the description of the Event to do this.
That would be possible in the core version of the Events Calendar found for free on WordPress.org: https://wordpress.org/plugins/the-events-calendar/
Cheers
Brian
MemberHi,
Thanks for the interest in our plugins.
Recurring Events are a feature of the Events Calendar Pro.
And you can learn about how they work starting with 3.12 here:
https://theeventscalendar.com/knowledgebase/pro-recurring-events/
Cheers
Brian
MemberHi,
Sorry for the issues with this.
It is indeed fixed in 3.12, which will be out next week if all goes to plan.
It is not fixed in the Release Candidates for 3.12 unfortunately.
Let me know if you have any follow up questions.
Thanks
Brian
MemberHi,
That is strange I did not get that error at all and used all the same coding as you.
I do have to reformat the quote marks around this function:
$cat = get_the_terms( $event_id, ‘tribe_events_cat’ );Maybe that might help what you are seeing.
The WordPress Function itself has an example how to use:
https://codex.wordpress.org/Function_Reference/get_the_terms
Brian
MemberLeah responded to your email, but I wanted to post here that we manually completed your order so iCal Importer is able now to download in your account.
I am going to close this ticket, but if you need anything else related to this topic or another please post a new topic on the forum and we can help you out.
Thanks
Brian
MemberHi,
You are close.
However, the get_the_terms returns and object so that is why you get the convert to string error.
Try this instead:
echo $cat[0]->name . ' - ' . $title -
AuthorPosts
