Forum Replies Created
-
AuthorPosts
-
Hi,
Great! Glad to know that you’ve managed to sort this one out. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey tonyska,
Thank you for the inquiry.
Which blog layout (Grid, Small, Multi-author, List etc.) did you select? If it’s set to Grid Layout, you should be able to use the avia_post_slide_query filter to adjust the sorting of the items and utilize conditional functions to apply different sorting for specific pages or templates.
Example:
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod'); function avia_post_slide_query_mod($query) { if (is_page(123)) { $query['orderby'] = 'menu_order'; $query['order'] = 'ASC'; } elseif (is_home()) { $query['orderby'] = 'date'; $query['order'] = 'DESC'; } return $query; }Replace 123 with the actual ID of the song page.
Each song is a blog post, and I organized them on my songs page by posting excerpts in order.
How do you post excerpts in a specific order?
Best regards,
IsmaelHi!
Thank you for the inquiry.
Looks like the report is referring to the scroll-down link. Please create a test page and provide the link in the private field so we can check the slider element further — screenshots will also help.
Best regards,
IsmaelHi,
Good to know! Please don’t hesitate to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Julie,
Thanky you for the inquiry.
Did you add this css code?
main { display: block; margin: 0 auto; max-width: 40rem; padding: 1rem; }This limits the width of the content to 40rem. Please try to remove the css code, then toggle or temporarily disable the Enfold > Performance > File Compression settings.
Let us know the result.
Best regards,
IsmaelHi,
Great! The css code looks correct and valid. Please feel free to open another thread if you have any more questions.
Have a nice day.
Best regards,
IsmaelHey Jacob,
Thank you for the inquiry.
These are only notices and warnings, so they shouldn’t affect the site in any way. You can hide them by editing the wp-config.php file and setting WP_DEBUG and WP_DEBUG_DISPLAY to false. Please check the documentation below for more info.
— https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
Best regards,
IsmaelHey Mapod,
Thank you for the inquiry.
What are the actual specifications of your server (RAM, CPU)? Please post the login details in the private field so we can investigate the issue further. In the meantime, try to switch to PHP 8.1, and enable the error logs in the wp-config.php file to see if it catches any errors.
define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false );Best regards,
IsmaelSeptember 8, 2025 at 6:07 am in reply to: Website wird ohne CSS-Stylesheet-Formatierung angezeigt #1489041Hey uteba,
Thank you for the inquiry.
The default compression from the theme should not cause this issue, but try to disable it temporarily, then enable the compression and merging options in your caching plugin and observe whether the issue still occurs randomly. Do you update or modify the theme options from time to time?
Best regards,
IsmaelHey Gianluca,
Thank you for the inquiry.
You can use this css code to adjust the border of the input fields inside the form and decrease the space between the checkboxes.
#top div .av-light-form .input-text, #top div .av-light-form input[type=email], #top div .av-light-form input[type=input], #top div .av-light-form input[type=number], #top div .av-light-form input[type=password], #top div .av-light-form input[type=search], #top div .av-light-form input[type=tel], #top div .av-light-form input[type=text], #top div .av-light-form input[type=url], #top div .av-light-form select, #top div .av-light-form textarea, div div .av-light-form .button { color: #fff; border-color: #fff; border-width: 1px!important; } #top .avia-builder-el-25 #avia_7_1 p { margin-bottom: 10px; display: block; height: 40px; float: none; } #top .avia-builder-el-25 .avia_ajax_form .element_avia_8_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_9_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_10_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_11_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_12_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_13_1 label, #top .avia-builder-el-25 .avia_ajax_form .element_avia_8_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_9_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_10_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_11_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_12_1 input[type=checkbox], #top .avia-builder-el-25 .avia_ajax_form .element_avia_13_1 input[type=checkbox] { top: -20px; position: relative; margin-bottom: 0; } #top .avia-builder-el-25 input.button { top: -20px; position: relative; }Best regards,
IsmaelHi,
Thank you for the update.
In the current version (5.2.1) installed on your site, you may need to download the latest version of the theme from your ThemeForest account and upload it manually to your server via FTP. Once the theme is updated to version 7.1.2, you should be able to update it again directly from the dashboard. Please refer to this documentation for more information.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey dpcram,
Thank you for opening another thread.
As mentioned previously, we may need to log in to the site to properly check the issue. Please create a test account and provide the login details in the private field. We also recommend reaching out to the plugin developers for additional assistance.
Best regards,
IsmaelHi,
You’re welcome! Let us know if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The SVG file you provided above is not accessible on our end, so the issue is likely related to your server or WordPress installation. Please try to install the following plugin and let us know the result.
— https://wordpress.org/plugins/svg-support/
Best regards,
IsmaelSeptember 5, 2025 at 7:18 am in reply to: Enfold and Paid Membership Pro – any successful integrations? Issues? #1488970Hi,
Thank you for the inquiry.
The Advanced Layout Builder that comes with the theme is completely different from the default Block Editor, so they are not compatible with each other. If the plugin provides shortcodes to create forms, you can insert them in a Text or Code Block element in the builder. Otherwise, you’ll need to continue using the Block Editor. We recommend reaching out to the plugin developers for further assistance.
Best regards,
IsmaelSeptember 5, 2025 at 7:13 am in reply to: Color section aligned to the center of its content #1488969Hi,
Great! Please don’t hesitate to open another thread if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
We are not entirely sure which plugin is adding the css code because it’s being added internally. Try to disable all plugins temporarily, then activate them one at a time to figure out which one is generating the css.
Best regards,
IsmaelHey idcdesign,
Thank you for the inquiry.
Looks like the background color is applied to the column itself, which already contains a background image. Remove the current css modification and replace it with the following code:
#rfbordertop:before { width: 100%; height: 100%; display: block; z-index: 2; position: absolute; top: 0; left: 0; visibility: visible; } #rfbordertop:hover::before { background: #0eb34b7d; } #rfbordertop .av_textblock_section, #rfbordertop .hr { z-index: 20; position: relative; }Let us know the result.
Best regards,
IsmaelSeptember 3, 2025 at 6:26 am in reply to: REDSYS PLUGIN – CREDIT CARD PAYMENT GATEWAY NOT WORKING #1488884Hey rixi,
Thank you for the inquiry.
The effect is actually disabled on mobile view because the css property that enables it is not supported, specially on iOS. You can try enabling it back using the following css code but you may find issues with the transition.
#top .alternate_color.avia-bg-style-fixed, #top .footer_color.avia-bg-style-fixed, #top .header_color .header_bg.avia-bg-style-fixed, #top .main_color.avia-bg-style-fixed, #top .socket_color.avia-bg-style-fixed { background-attachment: fixed; }— https://caniuse.com/background-attachment
Known Issues:
Firefox does not appear to support the local value when applied on a textarea element.
Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.
iOS has an issue preventing background-attachment: fixed from being used with background-size: coverBest regards,
IsmaelHi,
Did you remove the css code? We didn’t see it when we checked. Please make sure all css code is valid —- try checking for any unclosed css rules.
Best regards,
IsmaelHi,
Thank you for the info.
Did you add this css code? It sets the opacity of the builder modal to 0.9, which makes it appear it’s not editable, even though it actually is editable.
.js { opacity: .09; }If you didn’t add this yourself, we recommend disabling the plugins or temporarily removing the modifications. Let us know the result.
Best regards,
IsmaelSeptember 3, 2025 at 5:00 am in reply to: Possible to hide a tab within a Tab Section on some pages from display? #1488878Hi,
Thank you for the update.
You can apply a custom css class to the Tab Section element where specific tabs need to be hidden, then adjust the css rules accordingly.
#top .custom-tab-section-class-name a[href="#tab-2"][data-av-tab-section-title="2"] { display: none; }Best regards,
IsmaelSeptember 3, 2025 at 4:58 am in reply to: Code block change seems to have affected page display? #1488877Hi,
Great! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Please continue here: https://kriesi.at/support/topic/redsys-plugin-credit-card-payment-gateway-not-working/
Best regards,
IsmaelSeptember 2, 2025 at 7:45 am in reply to: REDSYS PLUGIN – CREDIT CARD PAYMENT GATEWAY NOT WORKING #1488852Hi,
Thank you for opening another thread.
Unfortunately, we don’t provide support for third-party plugins, and we’re not familiar with Redsys. We’ll do our best and take a look. When we checked the Redsys Diagnostics panel, it indicated an issue with the API connection or integration, which might be the reason why the payment gateway is not working.

url image upload
Please check this documentation for more info: https://sis-d.redsys.es/sis/CAs/comunicadoCertificado.htmlIs this the redsys checkout page?

url image upload
We recommend keeping in touch with the plugin developers for additional assistance.Best regards,
Ismael -
AuthorPosts







