Forum Replies Created
-
AuthorPosts
-
George
ParticipantThis reply is private.
December 6, 2016 at 8:25 am in reply to: remove FREE from calendar listing with free version #1202026George
ParticipantHi Deb,
You can customize that text however you see fit, but unfortunately doing so requires custom coding.
We cannot provide help with custom coding, even to our license-holders. You do not currently seem to have a license. More on this policy here → https://theeventscalendar.com/knowledgebase/what-support-is-provided-for-license-holders/
With this being said, I would recommend removing the CSS I shared above and instead adding PHP like this to your theme’s functions.php file:
function tribe_replace_free_cost_text( $cost, $post_id, $with_currency_symbol ) {if ( 'Free' === $cost ) {
$cost = 'Based on selections below';
}return $cost;
}add_filter( 'tribe_get_cost', 'tribe_replace_free_cost_text', 10, 3 );
That should replace instances of “Free” with “Based on selections below”. If you want to use different text than “Based on selections below”, just modify that text in the code shared above.
I won’t be able to provide further assistance on the custom coding necessary for any further modification of that cost field’s display behavior, but I do sincerely hope this helps!
Please let me know.
— George
George
ParticipantThis reply is private.
December 6, 2016 at 8:06 am in reply to: events aggregator in action, what it imports, what it looks like, how it works #1202003George
ParticipantSure thing, Valerio! Open a new thread any time if other issues or questions arise.
Cheers,
GeorgeGeorge
Participant😀
George
ParticipantHey Edwin,
Thanks for reaching out.
The [tribe_events] shortcode does not currently support Filter Bar, and there is not currently a workaround for this.
I also don’t have a specific ETA for the arrival of a fix for this in our plugins—though we hope to add support some time in the coming months.
As for this being a key aspect of your site, the [tribe_events] shortcode feature is itself very new; so, in other words, it’s not like there was support for the Filter Bar with the [tribe_events] shortcode, then we only recently got rid of it—the [tribe_events] shortcode is very new, and Filter Bar is not supported yet.
Please note, however, that the Filter Bar has no issue showing up on the actual main calendar pages—it’s only on [tribe_events] shortcode instance where the Filter Bar won’t show up.
Sorry to disappoint about this, @Edwin. Please let me know if there are any other issues or questions I can try to help with.
Sincerely,
GeorgeGeorge
ParticipantHey Ben,
Thanks for reaching out!
I noticed that you’ve set your calendar page URL slug to calendar, but have also set the single event URL slug to calendar. This could be causing problems and they should be different, so that instead of calendar and calendar, it’s maybe calendar and event, for example.
Try a different single event URL slug, save your changes, and let us know if this helps with things at all.
If it doesn’t, then don’t change the slugs back to calendar and calendar—they should remain different from each other.
And then in this state, proceed with trying all of the steps recommended here ? https://theeventscalendar.com/knowledgebase/fixing-http-404-errors/
Let us know what you find!
GeorgeGeorge
ParticipantHello!
I only saw one expired license in your account—it was for Events Calendar Pro—but I have just removed it. 🙂
Please let me know if there are any other issues or questions I can try to help with!
— George
George
ParticipantHi Mahmud!
Need the Event Page to show the Event Categories and when a category is selected the event for that category are to be displayed – Is it possible?
This is only possible with our Filter Bar add-on at this time ?
Also need the Search (Event Search) to be in the sidebar… is a widget available?
There is no such widget, unfortunately. 🙁 Sorry to disappoint!
Please let me know if there are any other issues or questions I can try to help with.
Sincerely,
GeorgeGeorge
ParticipantHi!
If we post an event as “private” it will never appear on any events calendar view unless a user is logged in with right capabilities to read private ? …the default events view would still be public but without the private events in it?
☝️ This is correct. 🙂
— George
December 5, 2016 at 7:48 am in reply to: Added Thumbnail in Month View, But Doesn't Want to Have Thumbnail In Responsive #1201542George
ParticipantHi there,
Thank you for reaching out. These forums here are our “Pre-sales Questions” forums, so we unfortunately cannot field technical support questions here.
It doesn’t currently appear that you have a premium license with us. If this is wrong, and you do have a premium license with us, then apologies for my misunderstanding!
However, in that case please log into the account on this site that has your premium license, and then post this question in a premium support forum.
If you indeed do not have a premium license, then please post your question in our free support forums here → http://wordpress.org/plugins/the-events-calendar
We check those forums a bit more than once per week, so hopefully we will be able to get to your question there.
Thank you,
GeorgeGeorge
ParticipantHi Matt,
Unfortunately, at this time our [tribe_events] shortcode does not offer any support for the Filter Bar filters — these filters only show up on the main calendar page at this time, and will not show on any [tribe_events] shortcode instance. 🙁
Sorry to disappoint!
GeorgeGeorge
ParticipantHi Matt,
“Lessons” and “Courses” are not anything that our plugins provide; you may be referring to features provided by another plugin.
1. Can you clarify what you mean here?
2. Can you post your site’s System Information as described here?
3. Can you share links to “Lessons” and “Courses” on the front-end of your site?
4. If possible, can you share screenshots of where you build “Lessons” and “Courses” in the admin of your site? You can do so by uploading the screenshots to this thread. If you have issues with that, you can upload to Imgur.com, Flickr.com, CloudUp.com, or any similar image-hosting site; then just share the links to those images here and I’ll take a look.
Thanks!
GeorgeGeorge
ParticipantHi Matt,
Can you share link to a specific page on your site an event can be seen whose map behaves this way?
I’ll take a closer look at that—thanks!
— George
December 5, 2016 at 7:30 am in reply to: remove FREE from calendar listing with free version #1201528George
ParticipantHey Deb,
Thanks for reaching out.
Whether using Event Tickets on its own or using the premium Event Tickets Plus add-on too, you can only hide that text outright with custom coding.
You’d use CSS like this, which you could paste at the bottom of your theme’s style.css file:
.tribe-events-schedule .tribe-events-cost {
display: none !important;
}
Let us know if this helps!
George -
AuthorPosts
