Forum Replies Created
-
AuthorPosts
-
January 29, 2026 at 5:59 am in reply to: Existe soporte en español para el desarrollo de sitios web? #1494482
Hey Víctor González,
Thank you for your inquiry.
If you’re referring to the Enfold theme, then yes, you can create your own website using the WordPress CMS and the theme to build your content and design your pages. To help you get started, please check the following documentation, and feel free to browse the forum for related questions.
— https://kriesi.at/documentation/enfold/
Best regards,
IsmaelJanuary 29, 2026 at 5:51 am in reply to: When is 7.1.4 Available? Enfold: Cross Site Scripting (XSS) vulnerability #1494481Hi,
A patch will be included in the next version (7.1.14) and will be released soon. Thank you for your patience.
Best regards,
IsmaelHey Antonio,
Thank you for the inquiry.
The screenshots are not loading on our end for some reason. Please try to use this image hosting and make sure to provide the site URL and login details in the private field.
Best regards,
IsmaelJanuary 29, 2026 at 5:43 am in reply to: Making enlarged images open at full size in lightbox instead of 1030px #1494478Hey steve159159,
Thank you for the inquiry.
You can use this filter in the functions.php file to adjust the default size of the lightbox image.
function avf_alb_lightbox_image_size_mod($size) { return "full"; } add_filter('avf_alb_lightbox_image_size', 'avf_alb_lightbox_image_size_mod', 10, 1);This defaults to large and we set it to full (the original size of the image). You can also remove this filter and adjust the size of the Large thumbnail in Settings > Media panel. You’ll need to regenerate the thumbnails afterward.
— https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelJanuary 29, 2026 at 5:37 am in reply to: Footer widget is not displayed in blog posts with ALB #1494477Hey Mike61,
Thank you for the inquiry.
For posts created with the Advanced Layout Builder (ALB), you need to use the avf_template_builder_content filter. The code might look different since it’s not a hook. Please check the enfold/template-builder.php file for the available hooks and filters.
Best regards,
IsmaelHey jnightingale,
Thank you for the inquiry.
Try to add this css code to adjust the font size of the title on mobile view:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top #wrap_all .avia-slideshow .av-slideshow-caption.av-iakm6m-705446e7ab1d9a74581bf52b6294a15c__0 .avia-caption-title { font-size: 42px; } }Best regards,
IsmaelHey jnightingale,
Thank you for the inquiry.
We tried logging in but got blocked by cloudflare. Would you mind providing a direct link to the page with the forms and a screenshot of the issue? You can use platforms like FreeImage, ImgBB, PostImages or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, ImgBB, PostImages or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHi,
Thank you for the update.
The style tag was incorrectly included in the style.css file, so we removed it. We couldn’t find the page with the Masonry Gallery, so we created a test page. (see the private field)
We updated the $sold_items array in the functions.php file:
$sold_items = array(1233,1232,1231);Best regards,
IsmaelJanuary 29, 2026 at 5:15 am in reply to: Critical Error when trying to access customization/widgets/etc in WordPress #1494473Hey bluty,
Glad to know that you’ve found the issue! Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelJanuary 29, 2026 at 5:12 am in reply to: Need columns with different width oder table without frame (in text block) #1494472Hi,
Thank you for the information.
To remove the background and border of the cells and place them side by side on mobile view, please add this css code:
.main_color .av-custom-table tr:nth-child(odd), .main_color .av-custom-table tr:nth-child(even) { background: transparent; border: 0; } .av-custom-table, .av-custom-table td, .av-custom-table th { background: transparent; border: 0; font-size: 15px; } .av-custom-table tr { display: flex; gap: 10px; }Best regards,
IsmaelHi,
Thank you for the update.
There is no option to adjust the breakpoint on mobile view. The number of columns will be determined by the Styling > Slider > Columns and the slider will automatically respond or resize based on the screen size. If you need to only display a single item per slide, you have to set it to display a single column.
Best regards,
IsmaelHi,
Thank you for the information.
Looks like you haven’t implemented the changes we suggested in our previous reply. Please replace the entire avia_custom_query_extension function with the following:
function avia_custom_query_extension($query, $params) { global $avia_config; if ( ! empty( $avia_config['avia_custom_query_options']['order'] ) ) { $query['order'] = $avia_config['avia_custom_query_options']['order']; } if ( ! empty( $avia_config['avia_custom_query_options']['orderby'] ) ) { if ( $avia_config['avia_custom_query_options']['orderby'] === 'termin_datum' ) { $query['meta_query'] = array( 'relation' => 'OR', array( 'key' => 'termin_datum', 'compare' => 'EXISTS', 'type' => 'DATE' ), array( 'key' => 'termin_datum', 'compare' => 'NOT EXISTS' ) ); $query['orderby'] = array( 'meta_value' => 'ASC', 'date' => 'DESC' ); $query['meta_key'] = 'termin_datum'; $query['meta_type'] = 'DATE'; } else { $query['orderby'] = $avia_config['avia_custom_query_options']['orderby']; } } unset( $avia_config['avia_custom_query_options'] ); return $query; }We won’t be able to help you further without a test page and the login details. Please provide the information in the private field and make sure the modification is accessible either through Appearance > Theme File Editor or a code editor plugin.
Thank you for your patience.
Best regards,
IsmaelHey bonsaimedia,
Thank you for the inquiry.
Which settings are you adjusting — the theme options? Please provide a screenshot or share the login details in the private field so we can better understand the issue.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Did you modify the template-builder.php file in the child theme? Please try temporarily disabling this modification and make sure all template files in the child theme (header.php, footer.php, etc.) are updated.
If the issue persists, provide the login details in the private field so we can check this further.Let us know the result.
Best regards,
IsmaelHey condonp,
Thank you for the inquiry.
You can try using the Content Slider element to display the routes as a slider. If you need to keep them as grid on desktop, try to use the Advanced > Responsive > Element Visibility settings to toggle the visibility of the elements. So, you’ll have a grid on desktop and a slider on mobile view.
Best regards,
IsmaelJanuary 28, 2026 at 5:52 am in reply to: Plugin Meow AI Engine – Chatbot Popup is covered by Enfold elements on website #1494411Hey Wenzig,
Thank you for the inquiry.
Instead of manually adding the plugin shortcode on each page, try to use a hook such as wp_footer to place the chatbot outside the main content area.
add_action( 'wp_footer', 'ava_wp_footer_mod' ); function ava_wp_footer_mod() { if ( ! is_page( 123 ) ) { return; } echo do_shortcode('CHAT BOT SHORTCODE HERE'); }Let us know the result.
Best regards,
IsmaelJanuary 28, 2026 at 5:43 am in reply to: Need columns with different width oder table without frame (in text block) #1494409Hi,
Thank you for the update.
Where did you add the table? Please provide a direct link to the page, or create a test page so we can properly check the element — screenshots will also help.
Best regards,
IsmaelHi,
Thank you for the update.
The issue occurs because the site can’t load the post css files. We found the following error in the console, which may be caused by file permission issues or an incorrect redirect.
Refused to apply style from ‘https://site.com/wp-content/uploads/dynamic_avia/avia_posts_css/post-5453.css?ver=ver-1769574719’ because its MIME type (‘text/html’) is not a supported stylesheet MIME type, and strict MIME checking is enabled.
Please ask your hosting provider to check and configure the file permissions for the /wp-content/uploads/dynamic_avia/ folder. Make sure it is set to 755 for folders and 644 for files.
Best regards,
IsmaelHi,
Thank you for the update.
To assist you further, please follow these steps to generate a login token without the need for an email address:
- Install and activate the “Temporary Login Without Password” plugin. You can find it here.
- Once activated, navigate to “Users > Temporary Logins” in the left-side menu.
- Click on “Create New” to generate a temporary login.
- Enter the email address for the account (you can use (Email address hidden if logged out) ) and select the highest possible role. Set the expiry date to around four days to ensure enough time for debugging.
- Click “Submit” to create the temporary account.
- In the private section, provide us with the URL that allows us to access the temporary login and assist you.
Please note that once your issue is resolved, you can remove the plugin. Alternatively, if you prefer not to use the plugin, you can manually create an admin user and share the login credentials in the “private data” field.
If you have any further questions or concerns, please let us know.
Best regards,
IsmaelHey LoMoe,
Thank you for the inquiry.
Matomo is not natively integrated into the theme, but you should be able to use a plugin to add it to your installation. It also offers an option to disable cookies completely, so it doesn’t need to be included in the cookie consent management. Please check the following link for more info.
— https://matomo.org/faq/how-to/how-do-i-enforce-tracking-without-cookies/
Best regards,
IsmaelHi,
Thank you for the update.
You can start with this css code to make the header sticky on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #wrap_all #header { position: fixed; } .responsive #top .av-logo-container .inner-container { padding: 0 20px; } .responsive #top #wrap_all .main_menu { top: 0; height: 80px; right: 25px; } }Best regards,
IsmaelHey waveseven,
Thank you for the inquiry.
You can try the Masonry element, but you’ll need to create a post for each entry. Set the Content > Captions > Element Title and Excerpt Styling option to Display as centered overlay, and the Element Title and Excerpt display setting to Display on mouse hover. It may require some adjustments to make it look exactly like the example.
Best regards,
IsmaelHi,
Thank you for the login info.
We commented out the password modification in the Quick CSS field and adjusted it a bit.
.woocommerce .password-input { position: relative; } .woocommerce .show-password-input { width: 24px; height: 24px; border: 0; background-color: transparent; background-repeat: no-repeat; background-position: center; cursor: pointer; position: absolute; top: 30px; right: 9px; background-image: url("https://www.morsoworld.com/wp-content/uploads/2026/01/eye-slash-solid-full.svg"); } .woocommerce .show-password-input.display-password { background-image: url("https://www.morsoworld.com/wp-content/uploads/2026/01/eye-solid-full.svg"); }Result:
Best regards,
IsmaelHi,
Thank you for the inquiry.
We checked the pages, but we didn’t find any elements in the left cell of the first Grid Row element. Was there a Gallery element there before? Unfortunately, we’re not sure why it was removed. You may need to re-add the element.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, you’re correct. The code from the previous thread should activate the ALB for a specific post type, but you need to import all entries first. After that, add the code to the functions.php file, make sure to replace the post type slug with your own and then refresh the WordPress dashboard or visit the front end. This will execute the hook and create the required post meta info or custom fields for the custom posts. You can remove the code afterward.
Best regards,
IsmaelHi,
Have you tried including the scss file as described in the following documentation? If you can provide the login details, we’ll try to check this further.
— https://woocommerce.com/document/utilising-the-woocommerce-icon-font-in-your-extensions/
Best regards,
IsmaelJanuary 27, 2026 at 5:11 am in reply to: Code Block with CSS Animation Only Works on One Specific Page #1494354 -
AuthorPosts







