vishali009
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Shortcodes For The Events Calendar] Plugin crashing under PHP 8.4Hi @gldrush98 ,
Thank you for using our plugin. I have reviewed the error you shared, and it doesn’t appear to be related to our plugin. Could you please try deactivating all other plugins one by one to identify the cause? Alternatively, could you let us know which shortcode you are using so we can investigate the issue further on our end?
Thanks & Regards
Hi there,
I just wanted to follow up and see if the solution we provided worked for you. Since we haven’t heard back, I’ll close this ticket for now.If you still need any help, feel free to open a new ticket—we’re always happy to assist you!
Thanks for reaching out, and have a great day!
Forum: Plugins
In reply to: [Events Shortcodes For The Events Calendar] Group recurring eventsHi @deafaotearoa,
Sorry for the inconvenience.
But the current version of our plugin doesn’t support this feature.Glad to help! Feel free to reach out anytime.
We would greatly appreciate your valuable feedback.
Here you can share your feedback:-https://www.ads-software.com/support/plugin/events-calendar-modules-for-divi/reviews/#new-post
Thanks in advance!
Hi @doctorfunk,
To remove the Title link please:
Update ecmd_event_layout.phpGo to:
Event Calendar Modules For Divi>> Includes>> Modules >>EventsLayouts>> templates >>ecmd_event_layout.phpFind line 16 code replace? with this code:
$event_title = get_the_title( $event_id );
After making these change, Title link will be removed.
For more, you can refer to the screenshot.
Let me know if you need any help!
Hi @doctorfunk,
Thanks for reaching out! I understand that you want to disable the link on the image.
To do this, you’ll need to make two small changes to your plugin files: Update list_style1.php and list_style2.phpGo to: Event Calendar Modules For Divi>> Includes>> Modules >>EventsLayouts>> templates >> list_style1.php
Find lines 18-21 and replace them with this:if ( $show_event_image === 'on' ) {
$events_html .= '<div class="ecmd-image-div"><div class="ecmd-list-img"><img src="' . esc_url( $ev_post_img ) . '">';
$events_html .= '</div></div>';
}Update list_style2.php
Go to: Event Calendar Modules For Divi>>Includes>>Modules>>EventsLayouts>>Templates>> list_style2.php
Find lines 27-34 and replace them with this:if ( $show_event_image === 'on' ) {
$events_html .= '<div class="ecmd-list-post-left">';
$events_html .= '<div class="ecmd-image-div"><div class="ecmd-list-img"><img src="' . esc_url( $ev_post_img ) . '">';
$events_html .= '</div></div>';
} else {
$events_html .= '<div class="ecmd-list-post-left no-image">';
}After making these changes, the image link will be disabled.
For more, you can refer to the screenshots.
Let me know if you need any help!
Hi,
Regarding the issue with untranslated words like Dashboard, Accounts, Contact Us, etc., we recommend contacting the plugin author to verify whether these terms are correctly assigned to a valid text domain and are available for translation. Some strings may not be properly localized, which could prevent them from being translated.Please let us know if you need any further assistance!
Thank you for your response and for sharing more details about your requirements.
At the moment, coloring the event date based on its venue is not a built-in feature in our Pro version. However, there are a few alternative approaches you can consider to highlight specific events:- Featured Events: You can mark certain events as “Featured” and use the Featured Event widget/tag to differentiate them visually.
- Filtering by Venue: You may create separate event lists internally, filtering events based on their venue to display them distinctly.
- Using Categories: Assigning a category like “Home” or “Away” to events and then filtering events based on the category to display them accordingly could be another solution.
To help you make the most of the Pro version, we recommend checking out our video tutorials, which provide step-by-step guidance on various features.
Forum: Reviews
In reply to: [Events Widgets For Elementor And The Events Calendar] DisappointingHi there,
We’re sorry to hear that our plugin didn’t meet your expectations. Just to clarify, our plugin is designed primarily to display a list of events using Elementor and The Events Calendar—it does not include ticketing functionality.
If you ever decide to try our plugin again in the future or need any assistance, feel free to reach out.Hi there,
Thank you for sharing your feedback. We truly appreciate your honesty and understand your frustration regarding the styling of individual event items. We apologize if there was any misunderstanding about this functionality.
We’d like to clarify that designing the loop items is indeed a feature of the Pro version. You can modify the event list layout in our pro version. If you’re facing difficulties styling individual items, we’d be happy to guide you through the process or suggest the best approach based on your requirements.
Thanks & RegardsForum: Reviews
In reply to: [Events Widgets For Elementor And The Events Calendar] DisappointingHi there,
Thank you for your feedback. We’re sorry to hear that you’re experiencing issues with the editor display. We have tested the plugin on our end, and everything appears to be working fine.To better understand and resolve the issue, could you please provide us with screenshots or a screen recording of the problem? This will help us identify what might be causing the issue on your site and suggest the best possible solution.
Thanks & RegardsHi,
Thank you for your update. Since we are unable to replicate this issue on our end, we recommend moving this conversation to our support system for better tracking and troubleshooting.
ThanksHi @dikra71
Thanks for reaching out! I understand that you want to show the excerpt for events that have one while keeping the description completely disabled.
To do this, you’ll need to make two small changes to your plugin files: Update
ecmd_event_layout.php
Go to:
Event Calendar Modules For Divi>> Includes>> Modules >>EventsLayouts>> templates >>ecmd_event_layout.php
Find lines 64-66 and replace them with this:
$event_post = get_post($event_id); $ecmd_exerpt_data = $event_post->post_excerpt; $event_content = '<!-- Event Content --><div class="ecmd-event-content">'; $event_content .= $ecmd_exerpt_data; $event_content .= '</div>';
Updatelist_style2.php
Go to:
Event Calendar Modules For Divi>>Includes>>Modules>>EventsLayouts>>Templates>>list_style2.php
Find lines 67-69 and replace them with this:
if ( $show_description === 'on' && !empty($event_content) ) { $events_html .= $event_content; }
This makes sure that only events with an excerpt will display it—if there’s no excerpt, nothing will be shown.
After making these changes, the description will be completely disabled, and only events that have an excerpt will display it.
For more, you can refer to the screenshots.
Screenshot 1
Screenshot 2
Let me know if you need any help!Hi @adio93,
Thanks for informing us.
As we have tried to translate the same theme into German, everything seems to work fine.
You can refer to the video recording
It would be better if you could also share the screen recording of the issue and also provide the browser console error if it has one.
ThanksHi @sir-robin,
Thanks for reaching out! By default, the Elementor widget sorts past events by start date, but we can modify the query to use the event’s end date for descending order. Update the code in yourfunctions.php
file (path for this file: events-widgets-for-elementor-and-the-events-calendar>>includes>>functions.php) Comment the code from line 39 to line 52 and add with the following modification:
For more, you can refer to this screenshot.$orderby = 'event_date';
if ($meta_date_compare == '<') {
$orderby = '_EventEndDate';
}
$ect_args = apply_filters(
'ectbe_args_filter',
array(
'post_status' => 'publish',
'posts_per_page' => $settings['ectbe_max_events'],
'meta_key' => $attribute['key'],
'orderby' => $orderby,
'order' => $settings['ectbe_order'],
'meta_query' => $attribute['meta_date'],
),
$attribute,
$meta_date_date,
$meta_date_compare
);This will make sure past events are sorted by their end date in descending order. Let me know if you face any issues with this.