Teo Alex
Forum Replies Created
-
Forum: Plugins
In reply to: [RSVP and Event Management] RSVP backendHello @annamacccc ,
Unfortunately, there is no built-in option to change the default sort order in the backend attendee list. However, you can achieve this by adding the following code to your theme’sfunctions.phpfile:add_action( 'load-toplevel_page_rsvp-pro-top-level', function() { if ( isset( $_GET['action'] ) && $_GET['action'] === 'attendees' && ! isset( $_GET['orderby'] ) ) { wp_redirect( add_query_arg( array( 'orderby' => 'lastName', 'order' => 'ASC' ) ) ); exit; } } );This will automatically sort the attendee list by last name (A–Z) by default. You can still click on any column header to manually change the sort order at any time.
If you have any other questions, feel free to reach out!
Forum: Plugins
In reply to: [Modula Image Gallery - Photo Grid & Video Gallery] Gallery data is missingHello @alanintertec ,
This support forum is for the Modula Image Gallery plugin, not Simply Gallery Block.Your issue appears to be related to the Simply Gallery Block plugin, so we would recommend contacting the developers of that plugin directly for assistance.
If you have any questions related to Modula, please let us know and we’ll be happy to help.
Hello @webred
Sorry for the late reply.
We will investigate the issue further and provide a solution that will not break the existing links on websites using translated slugs, while also fixing this issue properly.
In the meantime, you can add the following functions to your (child) theme’s functions.php file and change the slugs for testimonials and testimonial categories.
add_filter( 'wpmtst_taxonomy', function( $args ) { $args['rewrite']['slug'] = 'testimonial-category'; return $args; } ); add_filter( 'wpmtst_post_type', function( $args ) { $args['rewrite']['slug'] = 'testimonial'; return $args; } );Forum: Plugins
In reply to: [RSVP and Event Management] German Translation / Deutsche ÜbersetzungHello @ekkeharddomning ,
Thank you very much for the suggestions and for taking the time to improve the German translation.
We really appreciate the changes you made. We will include these modifications in the next plugin update. We also made a few small additions and adjustments on our side before releasing it.Forum: Plugins
In reply to: [Strong Testimonials] Strong Testimonials Block does not workHello @wurds ,
Sorry for the late reply.
We tested this on our end, but unfortunately we weren’t able to reproduce the issue. The Strong Testimonials View block displays correctly instead of the shortcode.
If you are still experiencing the problem, please make sure you are using the latest version of the plugin and test again after updating.Forum: Plugins
In reply to: [RSVP and Event Management] Problem Associated AttendeesHello @simonecaramanno ,
Sorry for the late reply!The issue is related to how MySQL handles table names differently on Linux servers compared to Windows/macOS local environments. We’ve identified the root cause and a fix is included in the next release.
Hello,
Modula uses the Fancybox library to display its lightbox. By default, Fancybox places captions inside the lightbox footer on mobile devices. With longer captions such as yours, the text can overflow outside the visible lightbox area.
You can try disabling this default behavior by adding a custom function to your child theme’s
functions.phpfile.You can usually find this file here:
wp-content/themes/your-child-theme/functions.phpIf you are not using a child theme, we recommend creating one first or using a plugin such as “Code Snippets” to safely add custom PHP code without losing the changes during theme updates.
Please add the following code:
add_filter( ‘modula_fancybox_options’, function( $options ) {
$options[‘compact’] = false;
return $options;
}, 99 );Forum: Plugins
In reply to: [Modula Image Gallery - Photo Grid & Video Gallery] Misaligned masonry galleyHello @ckatt,
We’ve run several tests on multiple mobile devices, and the gallery images appear centered and displayed in two columns.
Were you able to resolve the issue on your end? If the issue still persists, could you please provide more details on how to reproduce it? Information such as the device type, browser screenshots, and version would also be helpful.
Hello @wpdescoubes ,
Is this still an issue using the latest version of the plugin?Forum: Plugins
In reply to: [Download Monitor] Problema Categorie Non SalvateIssue was fixed here
https://ww.wp.xz.cn/support/topic/issue-categories-not-being-saved/Forum: Plugins
In reply to: [Download Monitor] Issue: Categories Not Being SavedHello @angebru04
This issue can occur when existing categories do not have a default language assigned in WPML.To fix it, go to:
WPML → Support → Troubleshooting and run Set language information.This will assign the default language to existing categories. After running it, please check again to confirm that categories can now be assigned to downloads normally.
Forum: Plugins
In reply to: [Download Monitor] Error while trying to downloadHello @jrvcosta,
I’ve been able to replicate the issue on your website, but not on our testing environments.
It appears that the server is redirecting requests from
https://website.comtohttps://www.website.com, which prevents the download from starting properly. Do you have any plugin or rule in your.htaccess(or server configuration) that forces this redirect?Could you also please confirm whether the WordPress Address (URL) and Site Address (URL) are set to the same value in Settings → General?
As a quick test, adding
wwwto the download link resolves the issue, which further suggests that the redirect is the root cause.Forum: Plugins
In reply to: [Download Monitor] New template – style lost?Hello @schwefel ,
I now have a clearer understanding of the issue. It’s not that the style is being lost, but rather that the template button class
download-buttonis not being applied. This class is automatically added by Download Monitor (DLM) to support the default template styles that are included with the plugin. If a user chooses to create a new template, they will also need to style that template as needed.In your specific case, you would like to replicate DLM’s default button styles in your custom template. For this project, I can offer two suggestions.
1. Rewrite the link tag<a href="<?php echo $download->get_the_download_link(); ?>" class="download-link download-button my-custom-button-class"> Button 2 </a>2. Add this function in your theme’s ( child theme preferably ) functions.php file
add_filter( 'dlm_template_attributes', 'dlm_add_custom_template_class', 10, 3 ); function dlm_add_custom_template_class( $attributes, $download, $template ) { if ( 'button2' === $template ) { $attributes['link_attributes']['class'][] = 'download-button'; } return $attributes; }Hello @createdbygino ,
Could you please provide a more detailed explanation of the issue you are experiencing? A step-by-step guide to reproduce the problem would help us identify it much more effectively.
Could you also clarify what you mean by a link preview? If possible, please share an example of a working link preview and one that is not functioning correctly.
Additionally, are you using a plugin or any specific tool to generate link previews?
Forum: Plugins
In reply to: [Download Monitor] New template – style lost?Hello @schwefel
Could you please provide more details about what you mean by “the style gets lost”? Which specific styles are you referring to?A detailed description of the steps required to reproduce the issue would be very helpful.
Thank you.