Forum Replies Created

Viewing 30 posts - 1,231 through 1,260 (of 66,065 total)
  • Author
    Posts
  • in reply to: Special block management #1477752

    Hi,

    Thank you for the update.

    If you want to limit the width of the grid layout, go to the Advanced > Developer Settings panel, apply the value “av-grid-constrain-width” in the Custom CSS Class field, and then add this css code:

    #top .av-grid-constrain-width {
        max-width: 70%;
        margin: 0 auto;
    }

    Adjust the max-width value as needed.

    Best regards,
    Ismael

    in reply to: Events Calendar Temlpate #1477751

    Hi,

    You might need to make a few modifications to make sure the event displays properly.

    This is why we don’t recommend using the default template. If you wish to continue using the default template, you can hire a freelance developer to assist with the customization.

    Best regards,
    Ismael

    in reply to: Change FontIcon on Archive Page #1477750

    Hey peter559,

    Thank you for the inquiry.

    Please provide the link to the blog page so we can check the blog layout. If you’re using the default layout, you can use this css code to replace the icon or image with a custom background image:

    .template-blog .blog-meta .post-author-format-type {
        background: url("bg-image-url.jpg");
    }
    
    .template-blog .blog-meta .post-author-format-type img {
        display: none;
    }
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: WP Accessibility #1477748

    Hi,

    Do you press “Space” once you get to the “skip-to-content” link or button? Please check the screenshot below:

    View post on imgur.com

    We also added the tabindex=”0″ attribute to the skip links to give priority to them in the tab order.

    function ava_custom_script()
    {
        ?>
        <script type="text/javascript">
            (function ($)
            {
                document.addEventListener("DOMContentLoaded", function ()
                {
                    document.querySelectorAll("#skiplinks a").forEach(link =>
                    {
                        link.setAttribute("tabindex", "0");
                    });
                });
            })(jQuery);
        </script>
        <?php
    }
    
    add_action('wp_footer', 'ava_custom_script', 9999);

    Best regards,
    Ismael

    in reply to: Content slider #1477744

    Hi,

    would it be possible to apply this only to the content slider on the home page?

    Yes, this is possible. Please edit the Content Slider element, go to Advanced > Developer Settings, and enter “av-content-slider-nav-bottom” in the Custom CSS Class field. Then, replace the css code with:

    #top .av-content-slider-nav-bottom .avia-smallarrow-slider-heading {
        position: absolute;
        bottom: -50px;
    }

    https://kriesi.at/documentation/enfold/add-custom-css

    Best regards,
    Ismael

    in reply to: Add Spacing and Panels/Text Boxes in Classic Editor #1477743

    Hi,

    Yes, it’s possible to use the ALB for the events page, but we don’t recommend it because this will limit the functionality of the events. Also, please note that not all event elements are available in the Advanced Layout Builder. If you want to proceed, you can include the event post type in the Enfold > Layout Builder > Activate Your Custom Post Types For ALB field.

    Best regards,
    Ismael

    in reply to: WP Accessibility #1477742

    Hey dondela,

    Thank you for the inquiry.

    You have to replace the anchor #content with #main or the ID of the section it should skip to when accessed. To apply the ID “content” to the first Color Section containing the content, go to Advanced > Developer Settings and enter the ID in the Custom ID field.

    Best regards,
    Ismael

    in reply to: Video in Color Section #1477740

    Hi,

    Thank you for the update.

    The video should cover the entire slider when this option (Stretch the video…) is enabled. Please try this css code:

    #top .av-element-cover video {
        object-fit: cover;
    }

    This should result to: https://imgur.com/2Kl21jz

    We tried logging in to the site but the account above is no longer valid.

    Best regards,
    Ismael

    in reply to: webfonts in cookies-settings #1477739

    Hi,

    You can remove them from Enfold > Privacy & Cookies > Cookie Handling > Modal Window Custom Content. Look for the “Other External Services” entry, then remove that part from the Tab Content field.

    < p >Google Map Settings:[av_privacy_google_maps]

    View post on imgur.com

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: Special block management #1477737

    Hey Christian,

    Thank you for the inquiry.

    Have you tried using the Grid Layout element? Set the cell size to 3/5 1/5 1/5. You can also set the cell size to 1/3 2/3, then use Column elements in the second cell.

    Best regards,
    Ismael

    in reply to: How to remove space between gallery and video? #1477736

    Hey Jak73,

    Thank you for the inquiry.

    You can add this css code to remove the space above the video:

    .avia-video.av-m7hoi823-5fffa067e0538a32526d7bf7eec640c7 .mejs-container {
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .avia-video.av-m7hoi823-5fffa067e0538a32526d7bf7eec640c7 video {
        background-color: transparent;
    }
    
    .avia-video.av-m7hoi823-5fffa067e0538a32526d7bf7eec640c7 {
        padding-bottom: 50%;
        background: transparent;
        border: 0 !important;
        margin-top: -20px;
    }

    Best regards,
    Ismael

    Hey Herb,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the issue and a link to the page with the masonry element? You can use platforms like Savvyify, Imgur 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, Imgur 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,
    Ismael

    in reply to: mfp-hide pop up #1477734

    Hi,

    Thank you for the info.

    We get an error when we try to edit the functions.php file.

    Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.

    Please provide the FTP details in the private field.

    If you want to proceed yourself, edit the code in the functions.php file and replace it with:

    function inline_popup_enabler(){
    ?>
    <script>
    (function($){
        $(window).on('load', function() {
        	$('.inline_popup').magnificPopup({
        	  type:'inline',
        	  midClick: true 
        	});
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'inline_popup_enabler');
    

    The equal_height_columns function in the same file is also causing an error. Try to replace it with:

    function equal_height_columns() {
    ?>
    <script>
    (function () {
        const wrapper = document.querySelector(".equal-columns");
        if (!wrapper) return;
        
        const columns = wrapper.querySelectorAll(".av_one_full");
        let maxHeight = 0;
        
        function adjustHeight(el) {
            el.style.height = maxHeight + "px";
        }
        
        function findMaxHeight(el) {
            maxHeight = Math.max(maxHeight, el.clientHeight);
        }
        
        columns.forEach(findMaxHeight);
        columns.forEach(adjustHeight);
    })();
    </script>
    <?php
    }
    add_action('wp_footer', 'equal_height_columns');
    

    We’ll wait for the FTP details.

    Best regards,
    Ismael

    Hi,

    We set the image as the background in the Enfold > General Styling > Logo Area panel and adjusted the header height in Header > Header Layout > Header Size to a custom pixel value. We then added this css code to adjust the background image height and hide the default logo.

    .header_color .header_bg {
        background: var(--enfold-header-color-background-image);
        background-size: auto 240px;
    }
    
    .logo img, .logo svg {
        display: none !important;
    }
    

    Screenshot:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Header menu items colour #1477731

    Hi,

    No problem! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Header menu items colour #1477539

    Hi,

    Thank you for the info.

    We adjusted the advanced styling of the Main Menu Links for the active state. Please make sure to purge the cache before checking the page.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Portfolio grid categories #1477538

    Hi,

    No problem! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: error – #1477537
    in reply to: initial setup #1477536

    Hey sam,

    Thank you for the inquiry.

    The initial setup and configuration are not included in the support because these can differ per site or client. However, we can assist you if you encounter any issues or have any questions. To get started with the theme, you can check the documentation below.

    https://kriesi.at/documentation/enfold/

    Best regards,
    Ismael

    in reply to: Filter by price #1477535

    Hi,

    The site is likely using a third-party plugin for the filters in the sidebar because its markup differs from the default WooCommerce filters. As mentioned above, the default shop filters will only display in the base shop or default product templates such as product categories. If you need a more advanced implementation of the filters, you’ll need to look for a plugin or contact a freelance developer.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Changes are not possible anymore #1477534

    Hey rixi,

    Thank you for the inquiry.

    There is a script error when we try to edit the home page. We also noticed that the site is using an older version of the theme (6.0.5). Please download the latest version of the theme or update it in the Enfold > Theme Update panel. After the update, make sure to purge the cache before testing the builder again.

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Mobile screen result #1477533

    Hi,

    Would you mind opening another thread and providing a screenshot of the issue? You can use platforms like Savvyify, Imgur 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, Imgur 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,
    Ismael

    in reply to: Fixed video on top site with FullScreen Slide #1477532

    Hi,

    Yes, unfortunately, this is a browser limitation that we don’t have control over. It should work in other browsers. Again, you can look for another plugin if this design is essential. The plugin we recommended above is free, as far as we know, but it is only compatible with the default editor.

    Best regards,
    Ismael

    in reply to: Content slider- form element button colour #1477531

    Hi,

    Thank you for the screenshot.

    The theme doesn’t have that option (Add Contact Form) by default, so it’s probably added by a plugin. Please check the plugins directory and look for contact form plugins such as Contact Form 7 or Gravity Forms. If you can provide the login details and site URL in the private field, we’ll try to check.

    The plugin might already have an option to add a “sent message”. For additional assistance, please contact the plugin authors.

    Best regards,
    Ismael

    in reply to: Google Maps API #1477530

    Hi,

    This is the error that we got after attempting to validate the API key.

    js?v=3.56&callback=av_backend_maps_loaded&key=AIzxxxx_AE_2AWxxxxxxx2OjTe-e3BUxHRG5nDBc:164 Geocoding Service: You must enable Billing on the Google Cloud Project at https://console.cloud.google.com/project/_/billing/enable Learn more at https://developers.google.com/maps/gmp-get-started

    It says that you have to enable billing for your Google Cloud project. For more info on how to properly generate an API key, please review this documentation.

    https://kriesi.at/documentation/enfold/google-map/#how-to-register-a-google-maps-api-key

    Best regards,
    Ismael

    in reply to: Video in Color Section #1477529

    Hi,

    Have you tried using the Fullscreen Slider? Add a Video Slide, define the video URL, then go to the Styling > Video Settings panel and set the Video Display to the second option (Stretch the video…). This should remove the black bars around the video. You will still need to define a preview image in the Content > Fallback Image panel.

    Best regards,
    Ismael

    in reply to: Webforms on Enfold not working #1477528

    Hi,

    Thank you for the update.

    Good to know that you’ve figured out the issue with the contact form. Regarding the autoresponder, have you added any filters or code in the functions.php file? Something like this:

    add_filter("avf_contact_form_autoresponder_mail", function($mail_array, $new_post, $form_params, $class) { 
         $mail_array["Subject"] = "Dear " . $new_post["1_1"] . " " . $new_post["2_1"] . "!";
    
         return $mail_array;
    }, 10, 4);
    

    Please enable the Appearance > Theme File Editor so that we can check the functions.php file.

    Best regards,
    Ismael

    in reply to: Logo not is not center with menu on desktop #1477527

    Hey cktanju,

    Thank you for the inquiry.

    Did you add this css code?

    .logo img.alternate {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        opacity: 0;
    }
    

    You can override it with:

    .av_header_transparency .logo img.alternate {
        top: 30px;
    }
    

    This should adjust the position of the logo.

    Best regards,
    Ismael

    in reply to: Layout possible with Enfold? #1477526

    Hi,

    We applied a unique class name (av-black-vertical-line) to the first column with the feather image, then added this css code to create the black line.

    .av-black-vertical-line:before {
        content: '';
        width: 1px;
        height: 200px;
        position: absolute;
        background: #000000;
        top: -100px;
        left: 100px;
        display: block;
        z-index: 1000;
        visibility: visible;
    }
    

    We also added a separator/whitespace element to the first section to create a huge space at the bottom, then added this css to pull the columns upward.

    .av-grid-with-black-border {
        position: relative;
        z-index: 100;
    }
    
    .av-grid-pull-black-border {
       margin-bottom: -324px;
    }

    Best regards,
    Ismael

    in reply to: Add Spacing and Panels/Text Boxes in Classic Editor #1477524

    Hi,

    Thank you for the update.

    1.) The CET is only available for the Advanced Layout Builder.

    2.) Yes, you can edit the content and all options as long as they are not locked. Only locked options or content fields are not editable.

    Best regards,
    Ismael

Viewing 30 posts - 1,231 through 1,260 (of 66,065 total)