Forum Replies Created
-
AuthorPosts
-
George
ParticipantGreat! Keep a backup of all custom code like this and bookmark the link to this forum thread so you can add the CSS back to your site if it gets accidentally erased or overwritten in a theme update or something.
Cheers,
GeorgeGeorge
ParticipantCool, thanks for the update here. I’ll close up this thread for now but if you need to open a new thread related to this one, just link back to this thread for reference and we can pick up the conversation from there.
I should note that we can’t really offer support for code customizations, or answer specific code questions if you’re trying to build something for your or your clients’ sites. But ask away and we’ll do our best regardless – just want to set expectations reasonably and not get your hopes up about what can be provided here!
Cheers,
GeorgeGeorge
ParticipantNo problem Hans-Gerd! Thanks for your patience and for making the effort to communicate here.
We cannot help much with custom code questions, but I will close up this thread and keep my eyes out for future threads from you regardless and will help as much as I can! 🙂
Best of luck with your site,
GeorgeGeorge
ParticipantAwesome! Thanks for the update Rich 🙂
Best of luck with your site,
GeorgeGeorge
ParticipantHey Gregory,
It is possible that this is a new bug, but I cannot recreate it. If possible, I’d recommend updating the versions of the plugins on the testing version of your site – you do not need to enter your license keys on this site, just go to http://theeventscalendar.com/my-account/downloads and download fresh .zip files of the 3.11.x versions of the plugins.
Then, install them on the test version of your site and see if the problem shows up there again. If so, then run through the troubleshooting steps outlined here → https://theeventscalendar.com/knowledgebase/testing-for-conflicts/
I know this was mentioned earlier, and am sorry for repeating myself, I just can’t think of another test we could run here because I cannot recreate this problem.
Thank you for your patience Gregory, let us know what you find!
— George
July 31, 2015 at 2:43 pm in reply to: Event Calendar Image & Event Name At Top now showing correctly #992379George
ParticipantHey Loren,
If you have selected the Default Events Template, the plugin will use the /wp-content/plugins/the-events-calendar/src/views/default-template.php template file for the display. You can override and edit this by making a copy and placing it in a /tribe-events folder in your theme.
George
ParticipantThank you for testing that @dff4kozt!
I’m really sorry that you’ve been having trouble with this – I think for now, you do not need to worry about the plugin-deactivation tests. I will take this error to our dev team and see what we can find here, there may be a bug and if so we can fix that then issue a proper bug fix here.
Thank you for your patience!
George
George
ParticipantHey Luc,
Sorry about that! A simple way to hide that “Cost” text would be to add the following code to your theme’s functions.php file:
add_action( 'wp_footer', 'tribe991811_hide_cost_text', 45 );function tribe991811_hide_cost_text() {
if ( ! wp_script_is( 'enqueued', 'jquery' ) ) {
wp_enqueue_script( 'jquery' );
}
?>
<script>
if ( jQuery( '.tribe-events-event-cost' ).length ) {
jQuery( '.tribe-events-event-cost' ).prev('dt').hide();
}
</script>
<?php
}
A bit of a “hack” method but it will work more reliable than trying to find that DT element with CSS and doesn’t require any template edits.
I hope this helps!
— George
George
ParticipantGreat! Best of luck with your site 🙂
George
ParticipantHey Franco,
I’m sorry it’s not working out on your site either, and wish we could help more in this situation. The odd thing is that Venues are more or less standalone content types like Posts or Pages, so I’m not sure what’s causing the problems.
Best of luck with finding a ratings plugin that works for you, though. I’ll close up this thread but don’t hesitate to open a new thread at any time if other questions/concerns arise.
Cheers!
GeorgeGeorge
ParticipantHey Wil,
Unfortunately, memberships are not something that can be handled by our plugins, but you can find add-ons for WooCommerce that deal with memberships separately.
Also, “day passes” might be possible if you have an all-day event, every day, then sell “tickets” called Day Pass to that “all-day” event – do you know what I mean? Otherwise, exploring other WooCommerce add-ons seems like the best option here, too.
Cheers,
GeorgeGeorge
ParticipantHey @Media325,
I have indeed reproduced this problem, I fail to get Organizers from several different pages.
I’m very, very sorry about this bug – it could be related to a recent API change on Facebook’s end or something, but we’ve flagged this bug and will investigate (and fix it) as soon as possible.
I’m really sorry about the inconveniences from this! Stay tuned for further updates here.
— George
George
ParticipantHey Martin!
First of all, I’m really sorry about my delayed response here! I assigned this ticket to myself in my support workflow and somehow it slipped through the cracks, and I didn’t get re-notified of it until today. So sorry about that Martin! A dumb mistake on my part!
As for your questions:
1. I wish to know that i can make 2 widgets that looks the same as pictures.
This is technically possible, but would require extensive customization on your end of things which we would unfortunately not be able to help with over support. So if you’re not familiar with web development enough to be able to customize the calendar widgets to look like that, your best option would be to hire someone to customize that for you.
2. That i can use 24h time
Yes! You can use 24-hour time even with the free version of The Events Calendar, just set up your time settings in your General WordPress preferences and The Events Calendar will inherit those settings, which include all time zones and the options of 12-hour or 24-hour time format.
3. that i can use swidish language
Yes! You can use any foreign language even with the free version of The Events Calendar. To learn how to use the language, check out this knowledgebase article → https://theeventscalendar.com/knowledgebase/changing-the-language-on-your-calendar/
4. use recurring events
This is a PRO-only feature.
I hope all this helps, let us know if it does Martin!
Cheers,
GeorgeGeorge
ParticipantHey Jon,
I appreciate your patience and your relaying of all this information back and forth, however I’m a bit confused. That support reply says this:
I have tried with regular / free one, and when I export calendar to iCal, GEO: field isn’t inside. [emphasis mine]
Then they say this:
Here is one GEO record from iCal exported from your site:
So…not sure how the Geo field is not inside the file but then they cite the Geo field inside the file.
I just tested some exported ical files and indeed, the Geo: field is not inside them.
Also, The Events Calendar itself does output coordinates in Latitude then Longitude – check out the code examples in my reply above, the one where I detail adding N and W. Those example coordinates are ones I just copied and pasted from my site while writing the example code for you, and as you can see are in order (and point to an accurate Geolocation in Boston, Massachusetts).
I cannot get that data to display in “reverse” unless I manually pull it out and flip the order…weird!
I’m really sorry about where things are this issue, and if my reply here has only added to the confusion. But the main point is this: if you need to extract event geolocation data, you can call it with the functions I demonstrated in code above.
And if it’s coming out in reverse order, then it seems like there would be other code added by the mobile app developers that causes this or something.
Thank you so much for your patience here Jon! Let me know what you think about everything I’ve written here.
Sincerely,
GeorgeGeorge
ParticipantYou can get a refund any time within 30 days of your initial purchase – just forward a copy of your original email receipt for the purchase you would like refunded to [email protected].
Include a link back to this forum thread or a brief description of why you’d like a refund, and we’ll issue a refund immediately!
Sorry it didn’t work out, but thanks for trying our plugins at all to begin with! 🙂
— George
-
AuthorPosts
