Forum Replies Created
-
AuthorPosts
-
Brian
MemberHi.
So target=”self” is more for feed validation as the RSS Advisory Board recommends them.
http://feedvalidator.org/docs/warning/MissingAtomSelfLink.html
The snippet you are using only targets one specific link it does not target them all.
It is really up to you if you would like to add nofollow to links there are pros and cons to adding or not adding it to links, but that really depends on how you want everything setup.
Does that help?
Brian
MemberHi,
Sorry for the issues with the widget on the tag page.
You are correct they are all the same widget so my first thought is the tag page is setting a global variable that makes the widget think it should filter events by that tag.
I did a test on my site and the widget still worked for me on the tag page, so it looks that it should work.
As a first step are you able to change themes and test the tag page again and see if the widget works.
Let me know what you find out and we can go from there.
Thanks
Brian
MemberHello,
Sorry for the troubles you are having after updating.
I took a look at your site and see this javascript error, which looks to be causing the issue:
TypeError: document.getElementById(…) is null
Looks to be coming from this script in your theme:
http://frisch.org/wp-content/themes/frisch/js/instafeed.min.js
I am getting that error on other pages as well, it just only breaks the search on the List View.
Let me know if fixing that solves the issue for you.
Brian
MemberThanks for the interest in Pro and WooCommerce Tickets.
Unfortunately, we do not have any combination deals for your products.
Thanks
Brian
MemberHi,
I can help you out with this.
The snippet should work on all events. It is not saving anything to the database which would require changes to old events.
Where did you place the snippet? Can you try placing it in your functions.php if not there?
Let me know and we can go from there.
Thanks
Brian
MemberGreat thanks for providing the information.
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 marcom,
Thanks for reaching out to us.
I can try to help you out on this customization.
Although it is possible to add more fields to the event, could you also do it on the checkout page for WooCommerce?
They are already plugins out there such as the Checkout Manager:
That enables you to add extra fields.
I think then the information is stored in the WooCommerce Order and you could find a way export the orders then.
That way would involve the least amount of coding.
To modify WooCommerce Tickets to do this would involve a lot more customization, which we cannot support through the forum.
Let me know if you have any follow up questions and I will be happy to answer them.
Thanks
Brian
MemberHi Paul,
I can help point you in the right direction on this customization.
If you follow our themer’s guide:
https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/
You will want to move these two files to your theme to modify:
\the-events-calendar\views\month\single-event.php
\the-events-calendar\views\month\tooltip.php
The Single Event File there has an explanation of how the toolips are made and how you can add fields. It does involve some javascript and php to do.
We can help out on specific questions, but it will be beyond the support to troubleshoot or complete the customization for you on this forum.
Here are some my tickets that might help you get going on this:
Let me know if you have any follow up questions after you get started and I can try to help out.
Thanks
Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need any other on something else please post a new ticket.
Thanks!
Brian
MemberI have a bunch of resources for you. None of these should involve making changes to the plugins, but they may not get it eaxctly what you are looking for.
Filer Bar Custom Filters
Snippet that might get you close:Another ticket with some more infomration:
How can I change the Venue Filter to show the City or State field?
Event Bar (Date, Search, and Location Bar)
This is a snippet that removes the date field, but you could leave that and replace it with your own field:https://gist.github.com/barryhughes/bae73fd5489be6a676cf
Community Events
For here you can start by adding a get template function here:the-events-calendar-community-events\views\community\edit-event.php
Or go to one of the existing modules and add your coding there.
These modifications can be done by following the themer’s guide and moving the files to your theme.
These two files are handle the saving:
the-events-calendar-community-events\tribe-community-events\Submission_Handler.php
the-events-calendar-community-events\tribe-community-events\Submission_Scrubber.php
In that first file there are two actions that you might be able to hook into to save your fields, they are in this function:
save()
Let me know if you have any follow up questions, but there is not much support we can provide to troubleshoot each step of the way. Hopefully this gets you closer though.
Thanks
October 30, 2014 at 10:35 am in reply to: Creating a custom loop to display events by category in certain WP pages #850062Brian
MemberGreat, glad it is working, I am going to go ahead and close this ticket, but if you need any other on something else please post a new ticket.
Thanks!
Brian
MemberSure I can help you out here.
We have a guide that might get your close to what you are looking for:
https://theeventscalendar.com/support/documentation/order-events-in-main-blog-loop-by-post-date/
Let me know if that works for you.
Thanks
Brian
MemberHi,
I think I can help you out here.
Try this coding to change the List Widget:
function events_filter_translations($translation, $text, $domain) {
if ($domain == 'tribe-events-calendar-pro') {
switch ($text) {
case 'Organizer:':
$translation = 'Host:';
break;
}
}
return $translation;
}
add_filter('gettext', 'events_filter_translations', 10, 3);Add that code to your functions.php and change the work Host to whatever you would like.
Let me know if that works.
Brian
MemberHi
I can try to help point you in the right direction on this.
Unfortunately, there is no setting to change that. There is a post where Barry helped someone get started on making a custom search field here:
That is about as close as we can get with the support on the forum.
It would as he said involve creating your own datepicker script as only the month view script uses the month datepicker.
Let me know if you have any follow up questions.
Thanks
Brian
MemberGreat glad it helps.
If you get a chance could you let me know the css tweaks you made so I could see about incorporating them into the snippet and then eventually a guide to do this.
Thanks
-
AuthorPosts
