Forum Replies Created

Viewing 30 posts - 22,621 through 22,650 (of 67,496 total)
  • Author
    Posts
  • in reply to: Stacking Image in Grid Row for Mobile #1116854

    Hi,

    Try to replace the css selector “#av-layout-grid-4 .flex_cell.no_margin.avia-builder-el-24” with the Section ID of the grid element plus a custom css class attribute applied to the cells. First, you have to enable the custom css class field.

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    Hi,

    What do you mean by “ALB code in product description” and “full editor”? The purpose of the modification in the previous thread is to have the products or posts switch to the Advance Layout Builder automatically. It won’t be able to detect or convert shortcodes that is inside a different content field.

    Best regards,
    Ismael

    in reply to: Private post made public after update #1116846

    Hi,

    Thank you for the update.

    Is the “status” custom field present in every posts? If it is, then you can set the search to query only posts that are public when the search keyword used is not a 6-digit code.

    Include this code in the functions.php file along with the previous ones.

    add_filter('avf_ajax_search_query', 'avf_ajax_search_query_mod', 10, 1);
    function avf_ajax_search_query_mod( $search_query )
    {
    	$url = parse_url($search_query);	
    	parse_str($url['path'], $search_parameters);
    
    	$search_meta = array(
            'meta_query' => array(
              array(
                  'key' => 'status',
                  'value' => 'private',
                  'compare' => '!='
              )
            )
        );
    
    	$search_parameters = array_merge( $search_parameters, $search_meta );
    
    	return $search_parameters;
    }

    Best regards,
    Ismael

    in reply to: Contact form spam and required field being bypassed #1116668

    Hi,

    Awesome! We’ll close the thread now. Let know if you need anything else.

    Best regards,
    Ismael

    in reply to: Contact form spam and required field being bypassed #1116666

    Hi,

    Awesome! We’ll close the thread now. Let know if you need anything else.

    Best regards,
    Ismael

    in reply to: recaptcha v3 keeps authenticating #1116664

    Hi,

    Great! Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice evening!

    Best regards,
    Ismael

    Hi,

    You’re welcome! Glad we could help.

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    And don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold. :)

    Best regards,
    Ismael

    in reply to: Using Advanced layout editor for posts #1116657

    Hi,

    You can create a custom shortcode for it as described in the following thread.

    // https://kriesi.at/support/topic/post-using-advanced-editor-how-to-insert-post-meta-info-title-date-etc/#post-466158

    Let us know if that helps.

    Best regards,
    Ismael

    Hi,

    Did you enable the file compression? Toggle the compression from the Enfold > Performance panel after doing the file modification. That should regenerate the compressed or merged script.

    Best regards,
    Ismael

    in reply to: Header shop page #1116653

    Hi,

    No problem. Please don’t hesitate to open a new thread if need anything related to the theme.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Questions about filters #1116572

    Hi,

    Thank you for the update.

    You should be able to remove the current filter with this css code.

    .woof_products_top_panel {
        display: none !important;
    }
    

    Just add it in the Quick CSS field or the child theme’s style.css file.

    Best regards,
    Ismael

    Hi,

    Is this what you’re trying to implement?

    // https://mailchimp.com/help/about-connected-sites/#Connect_Your_Website_Builder

    Why do you need this? Are you trying to create a MailChimp popup form or something like that?

    Best regards,
    Ismael

    in reply to: auction plugin compatibility with Enfold #1116570

    Hi,

    You can use this css code to the sort element above the products.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .responsive #top .woocommerce-ordering {
         top: 0;
         bottom: auto;
      }
    }

    You don’t need to copy the css media query if there is an existing one with the same media condition.

    Best regards,
    Ismael

    Hey sky19er,

    Thank you for using Enfold.

    The pages/posts created with the advance layout builder are going to use the “template-builder.php” file to render the content. You can’t use the default the_content or get_content function for those pages. You have to fetch the custom field named “aviaLayoutBuilderCleanData”, which holds the ALB shortcodes.

    /**
    * Filter the content for content builder elements
    */
    $content = apply_filters( 'avia_builder_precompile', get_post_meta( get_the_ID(), '_aviaLayoutBuilderCleanData', true ) );
    

    The content of the post meta is going to be automatically compiled as long as its wrap in the “avia_builder_precompile” filter.

    Best regards,
    Ismael

    in reply to: Internet Explorer 11 compatability #1116563

    Hi,

    There’s no ETA yet, but you will surely be notified once it’s available for download. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Images with links not working with Retina #1116561

    Hey THP,

    Thank you for using Enfold.

    We are not really sure how the plugin applies the srcset attribute, so we can’t really tell you what’s the problem. Have you tried asking the plugin authors how the plugin applies the data-srcset attribute? The data-srcset attribute is missing in the image element, which is probably why it doesn’t work.

    Best regards,
    Ismael

    in reply to: Anchor Links Not Scrolling to Tab Section Tabs #1116557

    Hi,

    You need to change the selector used in this function or line.

    scrollToTab( '.avia-buttonrow-wrap a', 'click' );
    

    Replace “.avia-buttonrow-wrap a” with the footer links selector.

    Best regards,
    Ismael

    in reply to: Pb with images resizing #1116554

    Hey newki75,

    Thank you for using Enfold.

    What is the original size of the images your client is uploading? Please ask her not to upload image wider or taller than 1600px. The size of the image used in the single post page can have a maximum height of 321px.

    Best regards,
    Ismael

    in reply to: Add custom $_POST data into the contact form email #1116549

    Hi,

    Thank you for the update.

    The name and id attribute of the fields should be prepended with “avia_” plus an integer based on their position in the fieldset and the id of the contact form element e.g., “avia_1_1”, “avia_2_1”, “avia_3_1” etc.

    
    <p class=" first_form  form_element form_fullwidth" id="element_avia_3_1">
    <label for="avia_3_1">Subject <abbr title="required" class="required">*</abbr></label> 
    <input name="avia_3_1" class="text_input is_empty" id="avia_3_1" type="text" value="">
    
    

    This is necessary because this is the pattern recognize by the script responsible for sending the mail.

    Best regards,
    Ismael

    in reply to: Saving post with advanced layout is not working #1116544

    Hi,

    Thank you for the update.

    You should try and ask your hosting provider to have the admin-ajax.php file white listed or rule out of the mod security module. Let us know if that helps. The module tends to block that file because it creates a lot of requests.

    Best regards,
    Ismael

    in reply to: Contact form spam and required field being bypassed #1116543

    Hi,

    Thank you for the update.

    Looks like you’ve set up the v3 version. You should see the submit button change to “Authenticating..” while the authentication is running and turn back to the actual submit label once it’s done. You can remove the default captcha if you don’t find it necessary.

    Best regards,
    Ismael

    in reply to: Custom Post Type from plugin #1116542

    Hey ilogicltd,

    Thank you for using Enfold.

    The search results page shows up fine when the “Sheba Mini site” plugin is disabled. What is that plugin for? Are you doing any redirects in it?

    Best regards,
    Ismael

    in reply to: Menu Problem #1116541

    Hi,

    Thank you for using Enfold.

    That’s the color of the active menu — “home” is highlighted because it is related to the start page. If you want to disable the active menu color, use this css code.

    #top #header .av-main-nav > li.current-menu-item > a .avia-menu-text, #top #header .av-main-nav > li.current-menu-item > a .avia-menu-subtext {
        color: #000000;
    }
    

    Don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Enfold Form will not send if I activate Recaptcha V3 #1116539

    Hi,

    Thank you for the update.

    The issue occurs when the Performance > JS Compression option is enabled. Please deactivate the JS compression option for now and use Autoptimize instead.

    Best regards,
    Ismael

    in reply to: Add custom JS to ALB Avia Shortcode in child theme #1116538

    Hi,

    Thank you for the update.

    You have to modify the shortcode files directly if you want to replace the default Button title field with a dropdown. I’m not really sure why that’s necessary though. Are you trying to create a dropdown of the posts/pages title automatically?

    Best regards,
    Ismael

    in reply to: Video load delay #1116537

    Hey FayeMcC,

    Thank you for using Enfold.

    Where are you testing it? The video seems to be loading properly on Microsoft Edge, Windows 10.

    Best regards,
    Ismael

    in reply to: Sticky header Transparency #1116536

    Hi,

    Thank you for the update.

    Head on to the Enfold > Header > Header Behavior panel. Make sure that the “Sticky” and “Shrinking” header is enabled. You can then add the following css code to change the background color on scroll and prevent the header from shrinking.

    .header-scrolled.header_color .header_bg {
        background-color: transparent;
    }
    
    #header_main .container, #header_main .container .main_menu ul > li a, #header_main .container .main_menu li, #header_main .container .logo a, #header_main .container .logo a img {
        min-height: 85px !important;
        max-height: 85px !important;
        height: 85px !important;
    }

    Best regards,
    Ismael

    Hey Zsolt,

    Thank you for using Enfold.

    You can actually disable the default captcha by editing the contact form element. Scroll down a little bit and look for the “Contact Form Captcha” settings. If you want to translate it instead, install and activate the “Loco Translate” plugin.

    // https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    I can’t access the site — leads to 401 authentication page. Are you sure that the shortcode isn’t added as text? This usually happens when you add the shortcode in the “Visual” mode of the editor instead of the “Text/HTML” mode.

    Best regards,
    Ismael

    in reply to: Yoast not working with Enfold #1116529

    Hi,

    @michaelH: I was actually asking if the block editor is currently enabled. If that’s the case, please try to switch to the classic editor. The editor toggle is in the Enfold > Theme Options panel.

    Best regards,
    Ismael

Viewing 30 posts - 22,621 through 22,650 (of 67,496 total)