Forum Replies Created

Viewing 30 posts - 31 through 60 (of 66,939 total)
  • Author
    Posts
  • in reply to: form: visualisation difference #1492024

    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,
    Ismael

    in reply to: Tranlatepress change logo by language in header #1492023

    Hi,

    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,
    Ismael

    in reply to: Follow up, Post Link #1491821 #1492022

    Hey 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:

    Screenshot-2025-12-02-at-2-42-48-PM

    Best regards,
    Ismael

    in reply to: Easy Slider title and caption below images #1492021

    Hi,

    Great! Glad you figured it out. Feel free to open another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Enfold Cild Theme Teplate #1492017

    Hey 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,
    Ismael

    in reply to: Fade by scroll #1491970

    Hey 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,
    Ismael

    Hi,

    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:

    Screenshot-2025-12-01-at-2-30-24-PM

    Best regards,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Caption of Logo slider below the Logo #1491967

    Hey 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,
    Ismael

    in reply to: Tranlatepress change logo by language in header #1491966

    Hey 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,
    Ismael

    in reply to: Editing page not possible #1491918

    Hi,

    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.

    Screenshot-2025-11-28-at-2-44-14-PM

    In the meantime, we recommend downgrading to PHP 8.3 and make sure that the WP_MEMORY_LIMIT is increased to 256M.

    Best regards,
    Ismael

    Hi,

    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):

    Screenshot-2025-11-28-at-2-25-50-PM

    (Phone)

    Screenshot-2025-11-28-at-2-26-12-PM

    Best regards,
    Ismael

    in reply to: page update fails after high number of elements #1491914

    Hi,

    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 = 5000
    

    For additional assistance, we recommend reaching out to your hosting provider and ask them to adjust the settings if necessary.

    Best regards,
    Ismael

    in reply to: Load only used elements #1491913

    Hi,

    Let us know in a different thread if you have more questions. Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    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;
    });

    Screenshot-2025-11-28-at-1-59-12-PM

    Best regards,
    Ismael

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Hierarchy for portfolio entries #1491826

    Hi,

    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,
    Ismael

    in reply to: Secondary top menu font color on mobile #1491825

    Hey limedrop,

    Thank you for the inquiry.

    The top menu items are still white on mobile view when we checked. Did you figure this out?

    Screenshot-2025-11-26-at-1-25-20-PM

    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,
    Ismael

    in reply to: Load only used elements #1491824

    Hi,

    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,
    Ismael

    in reply to: page update fails after high number of elements #1491823

    Hey 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,
    Ismael

    in reply to: Before/After part #1491822

    Hi,

    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,
    Ismael

    in reply to: icons in top bar (telephone+email) #1491821

    Hi,


    @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,
    Ismael

    in reply to: RTL Language #1491820

    Hey 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,
    Ismael

    in reply to: Messages on Welcome page? #1491819

    Hey 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.

    Screenshot-2025-11-26-at-12-55-32-PM

    Best regards,
    Ismael

    in reply to: Different font colour for logged in and out users #1491817

    Hi,

    Thank you for the login info.

    We added this code in the Quick CSS field.

    #top .avia-testimonial-markup-entry-content {
        visibility: visible !important;
        color: #ffffff !important;
    }
    

    Please make sure to purge the cache before checking the page.

    Screenshot-2025-11-26-at-12-47-41-PM

    Best regards,
    Ismael

    in reply to: Boxed content in grid row with fullwidth background #1491777

    Hi,

    Great! Please feel free to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Cannot make Changes to a Page #1491776

    Hi,

    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,
    Ismael

    in reply to: Hierarchy for portfolio entries #1491775

    Hi,

    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

Viewing 30 posts - 31 through 60 (of 66,939 total)