mywptrek
Forum Replies Created
-
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Issue when display in home pageI’m glad to hear the slider is now working on your homepage. If you happen to find what changed, feel free to share—it might help others in the future.
I’ll go ahead and mark this topic as solved, but if you run into any issues again, don’t hesitate to open a new thread.
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Issue when display in home pageThanks for confirming! Since the issue is only on the homepage, could you check if there are any JavaScript errors in the browser console? (You can open it with F12 > Console.) Also, does your homepage use a custom template or any page builder? Let me know, and I’ll troubleshoot if i can
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Issue when display in home pageHi,
Is the issue only on the homepage, or have you tried adding the slider to other pages as well?Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Issue when display in home pageHi,
Could you please provide your homepage url?Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Is there a way to display start timeYou’re very welcome! Glad it worked for you. If you ever need more help, feel free to ask. Marking this thread as resolved.
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Show ongoing eventGlad to hear that it worked! If you have any other questions, feel free to ask. Marking this thread as resolved.
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Show ongoing eventHi,
Thanks for pointing this out! The issue arises because ongoing events (events currently in progress) aren’t included in either the “upcoming” or “past” event sliders by default. However, you can resolve this by making a small modification in the plugin code.
If you’re familiar with PHP, please follow these steps:
- Open the file
includes/class-tecslider-function.php
. - Go to line 188 (after
$events?=?tribe_get_events(?$args?);
). - Add the following code snippet to include ongoing events in your slider:
$current_args = array(
'meta_query' => array(
'relation' => 'AND',
array(
'key' => '_EventStartDate',
'value' => current_time( 'mysql' ),
'compare' => '<=',
'type' => 'DATETIME',
),
array(
'key' => '_EventEndDate',
'value' => current_time( 'mysql' ),
'compare' => '>=',
'type' => 'DATETIME',
),
),
'post_status' => 'publish',
'posts_per_page' => -1,
);
$current_events = tribe_get_events( $current_args );
$events = array_merge( $current_events, $events );- Save the file and test your slider.
This snippet ensures that ongoing events (currently running) are included in the respective “upcoming” or “past” sliders based on their start and end dates.
Let me know if this resolves the issue or if you need further assistance!
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Is there a way to display start timeHello,
Thank you for reporting the issue. The event times were previously displayed with hour and seconds, so an event at 7:30 PM showed as 7:00 PM. We’ve now updated it to display the correct time, including minutes.
Let us know if you need anything else!
= 2.4.1 =
- Fixed: Corrected time format from
H:s
(hours and seconds) toH:i
(hours and minutes) in event start time display.
Best,
MyWpTrekForum: Plugins
In reply to: [Slider Addons for The Events Calendar] Is there a way to display start timeHi,
Thank you for bringing this to our attention! I understand the issue you’re facing with the editor not loading due to PHP version compatibility.
To resolve this, I’ve made a change in Slider Addons to ensure compatibility with PHP 7.0. Specifically, I replaced the
...$options_to_show
syntax witharray_merge
, which should address the issue for PHP 7.0 users while retaining the same functionality.The update should now work smoothly on PHP 7.0 as well.
Please let me know if you have any further questions or need additional assistance.
Thank you for your understanding, and have a great day!
Best regards,
mywptrekForum: Plugins
In reply to: [Slider Addons for The Events Calendar] Is there a way to display start timeHi,
Thank you for your feedback and support! I’m glad you find the plugin useful and elegant. In v2.4.0, I’ve added the ability to add time in datetop (only using shortcode).
You can now use the shortcode attribute to add the time just below the day in the DateTop theme. Here’s how you can do it:
[add_mwt_tec_slider dispayTime="true"]
This will display the start time right beneath the date. Please make sure you’re using version 2.4.0
Thank you again for your support, and don’t hesitate to reach out if you have any more questions or suggestions!
Forum: Plugins
In reply to: [Slider Addons for The Events Calendar] Image SizeHi,
Shortcode for given theme is [add_mwt_tec_slider slidertheme=”overimage” ], which is only available in premium ones. Currently there are only 3 themes available on free. I will add few more (in free version) in upcoming plugin update. Please check for plugin update.
Thank youHi,
Currently, in the shortcode (and in the block as well), there’s no attribute for specifying the total number of events to be displayed in the slider. Whether you select upcoming or past events, it will pull the latest 15+ events by default.
In the shortcode attributes:
eventinrow
specifies the number of events in a row.eventinslide
specifies the number of events to slide on each transition change.
Thank you for your query. I will add an attribute for the total number of events to be displayed in the entire slider in an upcoming update, which will be released soon.
Thank youForum: Plugins
In reply to: [Slider Addons for The Events Calendar] Filter by Post CategoryHi,
If you’re using shortcode, then there’s category attribute which can be use for showing specific category.[add_mwt_tec_slider slidertheme="datetop" slidertype="upcoming" category="party"]
where “party” is category slug. Or if using gutenberg block, there’s a select section to select specific category
Hi ,
I apologize for any inconvenience caused by the plugin. Could you please provide us with your site health information?
Dashboard > Tools > Site Health > Info > Copy Site info to clipboard
This will help me investigate if there are any conflicts with other plugins. Additionally, could you check if there are any errors in the web console (Ctrl + Shift + K)?Thank you
- Open the file