Forum Replies Created
-
AuthorPosts
-
Brook
ParticipantFair enough. That is going to be a very very in-depth modification. First you would want to adjust the meta tags on the pages. You might simply grep the plugin directories for “<meta”. It is possible these might be removed through WP Filters, though I do not remember for certain. Second, you would need to copy the JS logic behind Next, Prev links, and our Tribe bar, rewrite it in PHP, and attach it to the relevant bits in our PHP code. I do not believe this is going to be possible with mere theme-overrides, so you would have to directly modify the plugin. Sadly, this means that you will be unable to update the plugin without having to reperform all of these modifications to the new codebase. Therefore, you might be interested in forking “The Events Calendar” plugin on github and trying to keep as many of the modifications as possible to the fork. That would allow you an easier upgrade path in the future.
I hope that overview will help you. As you can see I was not kidding when I said it will be in-depth modification! Cheers!
– Brook
Brook
ParticipantThis topic is being closed now that it is resolved. Please direct any future questions to a new topic. Cheers!
– Brook
Brook
ParticipantHowdy cyberplex,
Unfortunately that is not possible. Our plugin is completely reliant on Ajax.
The pages you mentioned though do not hold SEO value. In addition to simplifying the code, that is actually one of the reasons why our plugin devs chose to have the next/prev links rely on Javascript. It prevents crawlers from indexing useless pages. Though we also use noindex meta tags as well. We did quite a bit of research before making these choices.
Do you have any other questions or anything? Please let me know. Cheers!
– Brook
Brook
ParticipantAhh! Well that is no good. Fortunately I do have some good news on that front, we are currently collecting information on any conflicts with the Avada theme. Thank you for reporting this conflict as I have made a note of it. If you notice anything else please report that too so we can add it to the list.
Once we have cataloged conflicts we are going to try and reach out to Avada and work with them to make the two compatible. We try to do this with all popular themes.
Please let me know if there is anything else I can do. If not, please mark the topic resolved. Cheers!
Edit: Oops I see you already marked it resolved. Thanks!
– Brook
June 7, 2014 at 2:36 pm in reply to: Adding additional dates to recurring event (without a recurrence pattern) #212116Brook
ParticipantI hope those options helped you Serhan.
Since this topic has been inactive for a couple of weeks we are closing it out. If you need anything else in the future please feel free to open a new topic. Thanks!
– Brook
Brook
ParticipantThanks for doing that Bryan! Since this topic has been inactive for a couple of weeks we are closing it out. If you need anything else in the future please feel free to open a new topic. Thanks!
– Brook
Brook
ParticipantHowdy Dale Norenberg,
Thank you for posting! Sorry for the delayed response. As outlined in our forum ruleswe try to keep our threads focused on just one user’s problem. One of the big reasons is that our forum software does not always notifiy us when someone other than the OP responds, and thus delays like this happen. 🙁
Further, a unique topic for your issue ensures that we are addressing your specific problem instead of a general group one, and not possibly missing anything unique your situation. To that end, would you mind opening up a new topic here about your specific problem? If you could please detail in your own words exactly what your problem is (instead of just linking here), that will go a long way towards helping you get this issue resolved as fast as possible.
Keep in mind I outlined above the possible causes. If your issue is truly identical, then these causes would apply to you as well:
JavaScript errors can basically be attributed to one of four things:
- Your theme’s JavaScript is conflicting with The Events Calendar. But this now seems unlikely.
- One of your plugin’s JavaScripts is conflicting with The Events Calendar .
- Sometimes it is a combination of one of your plugins, your theme, and The Events Calendar.
- One of your plugins or your WordPress install has become corrupted.
To further speed things up, you might also try these debugging steps that I outlined and post the results in the new thread:
Try temporarily activating the default Twenty Thirteen theme, and seeing if the issue persists.
If disabling the theme fixes it, we have narrowed the issue down to a theme conflict. Do you have any theme overrides for the Events Calendar? If so could you try disabling them by renaming your [themename]/tribe-events/ folder to ‘tribe-events-bak’. Did that fix it?
If the issue persists in the default Twenty Thirteen theme, then we have a different set of debugging steps. Please keep the Twenty Thirteen theme enabled, and also disable any plugins other than the ones from Modern Tribe to see if that fixes it. If it does, please try reenabling the plugins one at a time until the issue resurfaces. When it does resurface, can you let me know which plugin caused that to happen?
Cheers! I hope you understand our reasoning regarding one user/topic and do not mind this extra step, we have just found it serves our users best.
Since the OP has not responded here in a few weeks, this thread will now be closed. If anyone needs further assistance definitely open a new topic, we are happy to assist.
– Brook
June 7, 2014 at 2:23 pm in reply to: How to move the add to cart button/description to the right of featured image? #212096Brook
ParticipantSince this topic has been inactive for a couple of weeks we are closing it out. If you need anything else in the future please feel free to open a new topic. Thanks!
– Brook
Brook
ParticipantI just wanted to let you both know in case you are now aware that version 3.6.1 fixed this bug. Please update your plugins, flush your browser cache, and retest. If for some reason this issue persists afterwards definitely let me know. Thanks!
– Brook
Brook
ParticipantSince this topic is now resolved it is being closed down. I am glad everyone was able to get that snippet working. Cheers!
– Brook
Brook
ParticipantHowdy andyroach,
You could use the parent CSS rule “.tribe-events-adv-list-widget” to change styles for the entire list widget. For instance if you wanted to make them all white you could do:
.tribe-events-adv-list-widget{ color:#fff; }If you need to be more specific, then whip out your browser inspector, inspect the exact element your want to style, and add it as a child to the .tribe-events-adv-list-widget rule just like your normally would in CSS.
I hope that all make sense. When it comes to customizing color and themes we of course can not give you exact code, but as outlined in our scope-of-support we gladly offer general advice like the above to get you started on the right track. Please let me know if you have questions about this. Cheers! I hope that goes smooth!
– Brook
Brook
ParticipantHowdy josiah,
If you look at your browser console you will notice the following error “Warning: you have included the Google Maps API multiple times on this page. This may cause unexpected errors.”. What this means is that our plugin has included Google Maps, but so has one of your other plugins or perhaps your theme.
You might try using the WP API to dequeue the other Google Maps script on The Events Calendar pages, as it is most likely not used on these pages. If that is not an option, you would try dequeueing the script ‘tribe-gmaps’. However, some scripts like ‘tribe-events-pro-geoloc’ use that as a dependency so you will likely face some issues.
Finally, you could isolate what bit of code is causing this problem by following these steps:
Try temporarily activating the default Twenty Thirteen theme, and seeing if the issue persists.
If disabling the theme fixes it, we have narrowed the issue down to a theme conflict.
If the issue persists in the default Twenty Thirteen theme, then also disable any plugins other than the ones from Modern Tribe to see if that fixes it. If it does, please try reenabling the plugins one at a time until the issue resurfaces. When it does resurface, which plugin caused that to happen?
Once you have isolated the code down to a plugin or feature of your theme, you can investigate if you are actually using that plugin or feature. If not, disable it!
Please let me know if you have any more questions or if we can be of further helps. Cheers!
– Brook
Brook
ParticipantHowdy fccilm,
That is an interesting request. I agree that it stands to reason that some people would want that after they have been using our calendar for a while, no doubt people will have a long tail of past events.
I just wrote a snippet that does this. Paste it in your functions.php file. It seems to working great for me. If you notice any bugs or side-effects though, don’t hesitate to inform us.
If that snippet worked for you please let me know. Cheers!
– Brook
Brook
ParticipantThis topic is being closed since there has been no response for a while. If you have further questions, please open a new topic. Thanks!
– Brook
Brook
ParticipantHowdy Kris,
The only example we have is the file found in ‘‘/plugins/the-events-calendar/views/tickets/email.php’. You can copy that file and follow our themer’s guide to create a modified version of it. The file itself has plentiful comments to guide you along.
Just a note, as our forum rules state we try to keep our threads focused on just one user’s problem. This ensures that we are addressing your specific problem instead of a general group one, and not possibly missing anything unique your situation.
To that end, if you need further assistance would you mind opening up a new topic here about your issue? If you could please detail in your own words exactly what your problem is (instead of just linking here), that will go a long way towards helping you get this issue resolved as fast as possible. I hope you understand our reasoning here and do not mind this extra step, we have just found it serves our users best.
Thanks for posting!
– Brook
-
AuthorPosts
