Forum Replies Created
-
AuthorPosts
-
Hey maryenvato,
Thank you for the inquiry.
Did you modify the styles for the <select> and <option> elements? Please try to add this css to adjust the color of the option fields.
option { padding: 8px; background: #FFFFFF; color: #333333; } option:hover { background: #EEEEEE; }Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
We may need to inspect the page to properly understand the issue. Please create a test page and provide the URL in the private field. We also recommend reaching out to the plugin developers for additional assistance.
Best regards,
IsmaelHey Eleina,
Thank you for the inquiry.
Please add this code in the Quick CSS field to adjust the layout of the top bar on mobile view:
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ #top #header_meta .phone-info>div>div { display: flex !important; align-items: center !important; justify-content: start !important; flex-direction: column; gap: 4px !important; } }Result:
Best regards,
IsmaelHi,
Great! Glad you figured it out. Feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelDecember 2, 2025 at 7:34 am in reply to: Product not showing in the cart without logged in to the website #1492020Hi,
Glad to know that the issue is resolved. Please feel free to open another thread if the issue occurs again.
Have a nice day.
Best regards,
IsmaelHey Rompf,
Thank you for the inquiry.
The child theme should be included in the package you downloaded from Themeforest, but you can also download it directly from the documentation.
— https://kriesi.at/documentation/enfold/child-theme/
Let us know if you need more info.
Best regards,
IsmaelHey limedrop,
Thank you for the inquiry.
You can try the fixed or parallax background effect in a Color Section element or Slider, but it wouldn’t be exactly the same as the scroll effect found on the site above. This is possible with the Layer Slider, but it would require a standalone license because the scroll effects are not available in the native Layer Slider plugin included in the theme. Hope this helps.
Best regards,
IsmaelDecember 1, 2025 at 7:31 am in reply to: Comment form for an article on mobile is not displaying correctly #1491969Hi,
Thank you for the inquiry.
Adding this code in the Quick CSS field should correct the layout issue on mobile view:
@media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ #commentform label { position: relative; left: auto; top: 0; } #top .comment-form-cookies-consent label { top: -30px; } }Screenshot:
Best regards,
IsmaelDecember 1, 2025 at 6:43 am in reply to: Problems with Hivepress plugin / Does Enfold redirect searches? #1491968Hi,
Glad to know that you’ve found the issue. To override the current filter, you can use the remove_filter function so you can define your own.
— https://developer.wordpress.org/reference/functions/remove_filter/
Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
That is not possible without significant modifications to the theme, unfortunately. We recommend using the Content Slider instead so you can control the content for each slider. Try manually adding an image and text for each slide.
Best regards,
IsmaelHey coredesignsupport,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? The logo image cannot be translated by default, but you can use the avf_logo filter to assign a different logo image based on different conditions, like different language.
Example:
function avf_logo_mod($logo){ $currentlang = get_bloginfo('language'); if($currentlang == "fr_FR"){ $logo = 123; // <-- replace with the FR logo image } return $logo; } add_filter('avf_logo','avf_logo_mod');Best regards,
IsmaelHi,
Thank you for the inquiry.
We can reproduce the issue but we are not yet sure what is causing it. Have you tried increasing the WP_MEMORY_LIMIT from 40M to at least 256M? This is the recommended minimum for many modern themes and plugins including Enfold.
In the meantime, we recommend downgrading to PHP 8.3 and make sure that the WP_MEMORY_LIMIT is increased to 256M.
Best regards,
IsmaelNovember 28, 2025 at 7:27 am in reply to: Header size changes when switching to “tablet” and “mobile” sizes #1491916Hi,
Thank you for the inquiry.
Have you tried selecting standard screen sizes instead of manually adjusting the screen width or height? We made some adjustments to the css code and re-added it in the Quick CSS field.
@media only screen and (max-width: 989px) { .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { height: 50px; line-height: 50px; } .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 50px; margin-top: 50px !important; } .responsive #header_main .container { height: 50px !important; } .responsive #top .logo { height: 48px !important; } #top #menu-item-search { top: 4px; } }(Tablet):
(Phone)
Best regards,
IsmaelHi,
Thank you for the info.
You may need to adjust a few PHP settings to resolve this issue. If you have access to the php.ini file or PHP configuration, you can try setting the following options.
memory_limit = 512M max_execution_time = 300 post_max_size = 64M max_input_vars = 5000For additional assistance, we recommend reaching out to your hosting provider and ask them to adjust the settings if necessary.
Best regards,
IsmaelHi,
Let us know in a different thread if you have more questions. Thank you for your patience.
Best regards,
IsmaelNovember 28, 2025 at 6:59 am in reply to: YouTube video in Easy Slider – start time (&t / &start) is ignored #1491912Hi,
Thank you for the inquiry.
The video slide doesn’t accept parameters by default, but you can use this filter to adjust the video’s parameters manually.
add_filter( 'avf_youtube_video_data', function( $data ) { if( !empty( $data['videoid'] ) && $data['videoid'] === 'SUZEVjv7tXM' ) { $data['start'] = 8; } return $data; });Best regards,
IsmaelNovember 28, 2025 at 6:14 am in reply to: Problems with Hivepress plugin / Does Enfold redirect searches? #1491911Hey sescha,
Thank you for the inquiry.
Is it working correctly when using the default WordPress search widget instead of the theme’s AJAX search? You can test this by adding a Search widget in the Appearance > Widgets panel.
Another option is to use the avf_ajax_search_query filter to adjust the default query so it retrieves listings based on their custom fields. You may need to contact hivepress for the correct query parameters.
Let us know the result.
Best regards,
IsmaelNovember 26, 2025 at 6:34 am in reply to: Header size changes when switching to “tablet” and “mobile” sizes #1491827Hey Angelo,
Thank you for the inquiry.
This sets the header height to 90px on tablet view:
.responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { height: 90px; line-height: 90px; }To override it, you can add this css code:
@media only screen and (min-width: 768px) and (max-width: 989px) { .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a, .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container { height: 50px; line-height: 50px; } .responsive #top #main { margin-top: 50px !important; } }Let us know the result.
Best regards,
IsmaelHi,
Unfortunately, that is not possible without significant modifications to WordPress. You may need to hire a freelance developer or contact Codeable for this type of customization. Please check the link below.
— https://kriesi.at/contact/customization
Best regards,
IsmaelHey limedrop,
Thank you for the inquiry.
The top menu items are still white on mobile view when we checked. Did you figure this out?
To make sure they’re white, try to add this css code:
.responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a, .responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a, .responsive #top .av_header_transparency #header_main_alternate, .responsive .av_header_transparency #header_main .social_bookmarks li a, .responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span, .responsive #top .av_header_transparency #header_meta, .responsive #top .av_header_transparency #header_meta li, .responsive #top #header_meta .social_bookmarks li a { color: #ffffff; }Best regards,
IsmaelHi,
The countdown and the tabs are loaded because they are used by default elements in the page, tabs are used for the widgets and the countdown for the events plugin. As we have mentioned above, if the resources are still loaded even after disabling them using the code we provided above, it means that they are required by the templates or certain elements depend on them.
If you need to disable the tab section’s stylesheets and scripts, try this code:
function ava_wp_enqueue_scripts_mod_b() { wp_dequeue_style('avia-module-tabsection'); wp_deregister_style('avia-module-tabsection'); } add_action('wp_enqueue_scripts', 'ava_wp_enqueue_scripts_mod_b', 100);Best regards,
IsmaelHey annevoelkel,
Thank you for the inquiry.
Have you tried disabling the plugins temporarily? We may need to log in to the site to properly check the issue. Please include the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Did you try the suggestion above using the Color Section element to create a full-width container? We may need to inspect the actual page. Please create a test page and provide the URL in the private field.
Best regards,
IsmaelHi,
@Eleina_Shinn: Try to use this html in the phone number field:<div style="display:flex;align-items:center;gap:20px;"> <div style="display:flex;align-items:center;gap:6px;">[av_font_icon icon='phone' font='svg_entypo-fontello' size='13px' position='left' av_uid='av-mifjh9cz' sc_version='1.0'][/av_font_icon] 941-462-9082</div> <div style="display:flex;align-items:center;gap:6px;">[av_font_icon icon='ue805' font='entypo-fontello' size='13px' position='left' av_uid='av-emailicon' sc_version='1.0'][/av_font_icon] (Email address hidden if logged out) </div> </div>Please don’t hesitate to open another thread if you need additional assistance.
Best regards,
IsmaelHey tariqyacoub82,
Thank you for the inquiry.
You don’t need the Woocommerce plugin to have an RTL site. Did you happen to install any of the demo pages that include shop or ecommerce features? Please provide the login details in the private field so we can check further.
Best regards,
IsmaelHey collinsfgc2025,
Thank you for the inquiry.
You may need to deselect the pages in Enfold > Theme Options > Custom Error 404 Page and Maintenance Mode settings. Try to re-enable the options temporarily, then deselect the currently selected page in the dropdown or set it to
“Select Page”. Please refer to the screenshot below.Best regards,
IsmaelNovember 26, 2025 at 5:48 am in reply to: Different font colour for logged in and out users #1491817November 25, 2025 at 6:49 am in reply to: Boxed content in grid row with fullwidth background #1491777Hi,
Great! Please feel free to open another thread if you have more questions. Have a nice day.
Best regards,
IsmaelHi,
As mentioned above, when we removed the first eight items, the update worked, so there may be custom content in one of those entries causing the issue. Try removing each section one at a time to identify which entry is causing the problem. Let us know the result.
Best regards,
IsmaelHi,
Thank you for the update.
In the previous thread, the user only needed to edit the Parent or Page Attributes metabox, but they were not modifying or expecting the child pages to inherit the parent page’s URL. Please note that the permalink or slug of portfolio items is automatically generated based on the title. It will not inherit the parent page’s slug or permalink even if you set it as a child page.
Best regards,
Ismael -
AuthorPosts









