Chika Ibeneme
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Overview events on homepage with pictureThanks for reaching out.
I believe you might be looking to the photo view shortcode? if so, we have more information on that available here:https://theeventscalendar.com/knowledgebase/k/embedding-calendar-views-with-the-tribe_events-shortcode/
However, you’d need to upgrade to the PRO version in order to utilize short codes.
Forum: Plugins
In reply to: [The Events Calendar] No underline for hyperlinksThanks for reaching out, I’ll be happy to help!
I visited the site and I do see that your links are being underlined, if they are not, can you provide me with a screenshot of the specific are, please?
Forum: Plugins
In reply to: [The Events Calendar] Less top paddingThanks for reaching out!
You can add the following CSS into your theme’s custom CSS area:
.tribe-common–breakpoint-medium.tribe-events .tribe-events-l-container {
padding-top: 0px;
}That should resolve the issue.
Forum: Plugins
In reply to: [The Events Calendar] Remove Blue Line from Livestream EventsThanks for reaching out, I’ll be happy to help!
You can’t remove it based on the virtual events without some advanced customization, however, you can use the following CSS to hide it completely.
.tribe-events .tribe-events-calendar-list__event-row–featured .tribe-events-calendar-list__event-date-tag-datetime:after {
background-color: transparent !important;
}Forum: Plugins
In reply to: [The Events Calendar] Problem Creating events – no event editorHi @mcmoore32
Thanks for reaching out, I’ll be happy to help!
Can you try going through our conflict guide here so and try to narrow down the issue, please?
https://theeventscalendar.com/knowledgebase/k/testing-for-conflicts/
Forum: Plugins
In reply to: [The Events Calendar] Removing import date range limitHi @misssm ,
Thanks for reaching out to us.
It is not really recommended to have longer import range from ‘Other URL’, as it might have an impact on the performance of the source site.
Please backup your site before attempting this.
If you are in control of the source site and are comfortable with the resources, then you can try this snippet in your functions.php file:
[code language="”php”"]
function tribe_ea_yearly_limit( $option ) {
$options[YEAR_IN_SECONDS] = array(
‘title’ => ‘One year’,
‘range’ => ‘One year’,
);
return $options;
}
add_filter( ‘tribe_aggregator_url_import_range_options’, ‘tribe_ea_yearly_limit’ );
[/code]Let me know if that works.
Cheers,
ChikaForum: Plugins
In reply to: [The Events Calendar] Events Not Showing on CalendarThanks for reaching out, I’ll be happy to help!
Can you share the link to your site along with the link to the event, and a screenshot of how it’s setup in the backend, please?
Can you also try the following:
– Is the issue with this particular event only? can you recreate it and see if the issue still persists, pleasE?
– Can you clear your site’s cache, please?Forum: Plugins
In reply to: [The Events Calendar] Maps Off by Default?Thanks for reaching out, I’ll be happy to help!
So I believe you can open up the CSV file in your spreadsheet editor and then find the column that says “SHOW MAP LINK?” and then change that from “FALSE” to “TRUE” you can set that for each of the events via highlighting the entire column and pasting the value or dragging the “TRUE” value down the column.
Hi @tschmoyer
Thanks for reaching out, I’ll be happy to help!
Can you send through a screenshot of what you have in the backend vs the frontend, please?
Also, can you run through our conflict guide here, please?
https://theeventscalendar.com/knowledgebase/k/testing-for-conflicts/Forum: Plugins
In reply to: [The Events Calendar] Set start date for total calendarThanks for reaching out, I ‘ll be happy to help!
That would be possible to do via some customization, however, we don’t support customizations within our support scope at this time, therefore, you’ll need to find a 3rd party to get it implemented for you.
Forum: Plugins
In reply to: [The Events Calendar] Error addClassHi @bolus150
Thanks for reaching out, I’ll be happy to help!
Can you try running our conflict test as our guide states here, please?
https://theeventscalendar.com/knowledgebase/k/testing-for-conflicts/
Doing that will enable you to narrow down the issue further or in some cases resolve it with a plugin reinstall.
Forum: Plugins
In reply to: [The Events Calendar] LocationsThanks for reaching out, I’ll be happy to help!
I’m not entirely sure that our calendar will fulfill your exact needs, however, you can install it and try out the free version and the PRO version within the refund date and see if it’s meets your needs.
Forum: Plugins
In reply to: [The Events Calendar] single out catagorieHi @cobraeagle
Thanks for reaching out, I’ll be happy to help!
It’s not possible to single out a category on the main calendar at this time, however, you can add the following to your shortcode “category=”category-1″”, without the external quote and the widget will only display events from that category.
Forum: Plugins
In reply to: [The Events Calendar] Event Price Module not showingThanks for reaching out, I’ll be happy to help!
If it’s the price of the event, that feature is only available on our Event tickets plugin, the price functionality isn’t part of the free calendar.
Forum: Plugins
In reply to: [The Events Calendar] Unable to add EventsHi,
Sorry for the issues you are having.
In the mean time if you add the following to your theme’s functions.php and then deactivate and activate The Events Calendar it should fix the issue:
add_filter( ‘tribe_events_integrations_should_load_freemius’, ‘__return_false’ );
Let me know if that works out.
Thanks