Forum Replies Created

Viewing 30 posts - 12,601 through 12,630 (of 66,084 total)
  • Author
    Posts
  • in reply to: Youtube video is unavailable #1312918

    Hi,


    @manchust
    : Try to update the theme from v4.7.4 to the latest version (v4.8.4). The upgrade might help fix the issue.

    Best regards,
    Ismael3

    in reply to: Post Slider Image in front of the learn more link #1312915

    Hi,

    Thank you for the info.

    You can add this css code to create an orange line before the read more text. Adjust it as necessary.

    .read-more-link {
        position: relative;
    }
    
    .read-more-link a {
        padding-left: 40px;
    }
    
    .read-more-link:before {
        content: "";
        height: 1px;
        width: 30px;
        background: orange;
        display: block;
        position: absolute;
        left: 0;
        top: 14px;
    }
    

    Best regards,
    Ismael

    in reply to: Content in symbol box is replaced by default text. #1312749

    Hi,

    Thank you for the inquiry.

    We can reproduce the issue on our own installation, but we are not yet sure what is causing. We will forward the issue to our channel and let you know once we have found the issue.

    Best regards,
    Ismael

    in reply to: Avia Layout Builder Doesnt Work , Cant Edit Anything #1312746

    Hey Kristi,

    Are you using both the Elementor and the Advance Layout Builder on the same page? You cannot modify the content of the Advance Layout Builder using Elementor and vice versa.

    For technical support please register here kriesi.at/support/register with your item purchase code .

    Go to https://kriesi.at/support/, select the theme that you purchased and bookmark the URL.

    Example: https://kriesi.at/support/enfold

    Scroll to the bottom of the page to open a new ticket.

    Best regards,
    Ismael

    in reply to: Preview Page with different content #1312745

    Hey maryenvato,

    Thank you for the inquiry.

    In which page does this issue occur? Have you tried applying the content of the page as template to another page? You can save the current content as template, remove the current page, create another, then apply the template. Let us know if that helps.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    We could adjust the stack order of the date picker so that it is rendered in front of the header instead of behind it.

    .datepicker.datepicker-dropdown.dropdown-menu {
        z-index: 9999 !important;
    }
    

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.

    Best regards,
    Ismael

    in reply to: Magnificent popup on button? #1312673

    Hey destserengeti,

    Thank you for the inquiry.

    Would you mind posting the URL of the page where you added the button with the open-popup-link class? You may need to adjust the magnific popup script a bit in order for this work to correctly. Try to replace the selector in the script with “.open-popup-link a” instead of just “.open-popup-link”.

    Best regards,
    Ismael

    in reply to: Move woocommerce cart icon on mobile #1312671

    Hi,

    Yes, that should be possible. Please try to add this css code to move the cart and burger menu icon further to the right, and decrease the space between them.

    @media only screen and (max-width: 767px) {
        #top #header .av-main-nav > li {
            padding-right: 0;
            margin-right: 0;
        }
    
        .responsive.html_bottom_nav_header #top #menu-item-shop.cart_dropdown {
            position: absolute;
            right: -20px;
        }
    }

    Best regards,
    Ismael

    in reply to: Author theme #1312662

    Hi,

    No problem. Please let us know if you have more questions about the theme.

    Best regards,
    Ismael

    in reply to: post slider show full content #1312659

    Hey sky19er,

    Thank you for the inquiry.

    Have you tried using the Content Slider element? You can insert shortcodes and create your own markup in each slider. Unfortunately, there is no slider in the theme where you can use the advance layout builder to create the content of the slide.

    Best regards,
    Ismael

    in reply to: Changing alignment of a caption on Fullscreen Slider #1312653

    Hi,

    Awesome! Glad to know that we could be of help. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hey Dommel,

    Thank you for the inquiry.

    We could apply the transform-origin property to adjust the zoom effect.

    .avia-image-container.av-hover-grow img:hover, .avia-image-container.av-hover-grow .avia-image-overlay-wrap:hover {
        transform-origin: top right;
    }
    

    For more info, please check this documentation.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin

    Best regards,
    Ismael

    Hey Tomasssu,

    Thank you for the inquiry.

    That is the default border of the container wrapper. If you would like to remove it, try this css code.

    #main > .container_wrap {
        border-top-width: 0;
        border: none;
    }
    

    Please do not forget to toggle the file compression settings after adding the css code.

    Best regards,
    Ismael

    Hey marcie73,

    Thank you for the inquiry.

    The difference is that the video in the “arte-del-restauro” is not set to auto play, while it does in the slider or in the home page. You can prevent or remove the enormous network payload by disabling the autoplay.

    Best regards,
    Ismael

    in reply to: bug in form #1312640

    Hi,

    We replied to the other thread. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: WebP support #1312639

    Hey Steve,

    Thank you for the inquiry.

    Would you mind providing a page showing the issue? You can actually use img tag for webp images. The picture tag is only used as a fallback for browsers that do not support the webp format, yet. The format is now widely supported on all browsers except on IE 11, but it does not matter anymore because WordPress already dropped support for IE11 just recently.

    // https://caniuse.com/webp

    Best regards,
    Ismael

    in reply to: missing translation #1312631

    Hey Christian,

    Thank you for the inquiry.

    We could use this filter in the functions.php file to adjust the email message and replace the text “true” with “wahr”.

    
    function avf_form_message_mod_checkbox($message, $new_post, $form_params) {
        $message = str_replace('true', 'wahr', $message);
        return $message;
    }
    add_filter('avf_form_message', 'avf_form_message_mod_checkbox', 10, 3);
    

    Best regards,
    Ismael

    in reply to: Grid with html code on overlay #1312626

    Hi,

    Thank you for the inquiry.

    The description and the title are in the same container, so the css code above should have worked. Please try to remove the current css code, then use the following instead.

    #top .grid-entry .grid-content {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        -webkit-transition: opacity 0.5s;
        transition: opacity 0.5s;
    }
    
    #top .grid-entry:hover .grid-content {
       opacity: 1;
    }

    This should set the grid content as overlay and display it on hover.

    Best regards,
    Ismael

    in reply to: Black space on videos (both self hosted and youtube) #1312612

    Hey hitrev,

    Thank you for the inquiry.

    You have to make sure that the video has an actual aspect ratio of 16:9. That is the only way to prevent the black borders from appearing in the frame.

    Best regards,
    Ismael

    in reply to: Buttons gone.. #1312407

    Hi,

    Did you set the border and background color to white? The minus symbol or toggle icon is not visible because its color is the same as the background. Try to check if the background and border color is set to the same color.

    We could also use this css code to adjust the color of the toggle icon.

    #top .av_toggle_section .toggle_icon {
        border-color: red;
    }
    

    Best regards,
    Ismael

    in reply to: ENFOLD 4.8.3 + WP5.8: Import theme settings not working #1312403

    Hey BeeCee,

    Thank you for the inquiry.

    You do not have to export/import the theme options. Try to activate the old theme back with the previous theme options or settings, upload the new version in the themes directory, then remove the old one or move it somewhere else temporarily. The new version should be recognized automatically with the old theme settings or options.

    You should consider creating a child theme to make future updates much easier.

    Best regards,
    Ismael

    in reply to: cookie consent lightbox not working #1312402

    Hey Sascha,

    Thank you for the inquiry.

    You have to enable the Enfold > Theme Options > Lightbox Modal Window option to make this work. The privacy modal popup window requires the lightbox script.

    Best regards,
    Ismael

    in reply to: Image resizes automatically on portfolio grid #1312398

    Hey emilconsor,

    Thank you for the inquiry.

    By default, the lightbox is set to use the large thumbnail, which has a maximum width of 1024px. You can adjust its size in the Settings > Media panel.

    Best regards,
    Ismael

    Hi,

    The theme options are no longer accessible to the account above. Did you change the role of the user? Please change it back to admin so that we could check the css code properly.

    Best regards,
    Ismael

    in reply to: Di nuovo problemi con il pre-caricamento #1312319

    Hi,

    Thank you for the inquiry.

    The staging site is loading properly on our end — both in the back and front end. How can we reproduce the issue? Is this happening on a specific page or panel in the dashboard?

    Best regards,
    Ismael

    in reply to: Tag archive #1312317

    Hi,

    No, we did not create any user on July 20th.

    Best regards,
    Ismael

    in reply to: Drop down button (Possibly missing function) #1312316

    Hi,

    For the meantime, you can try one of these custom select boxes.

    // https://freefrontend.com/css-select-boxes/

    You can find a demo and the code here.

    // https://codepen.io/oceatoon/pen/GJpvz

    Best regards,
    Ismael

    in reply to: update 4.8.4 and accordion #1312308

    Hi,

    Thank you for the update.

    Would you mind posting the login details in the private field? We would like to test the custom colors of the accordion element in your installation. These options work properly on our own installation.

    Best regards,
    Ismael

    Hey Peter,

    Thank you for the inquiry.

    You will have to block the enfold/framework/js/conditional_load/avia_google_recaptcha_api.js and the enfold/framework/js/conditional_load/avia_google_recaptcha_front.js script. They are registered in the enfold/framework/php/class-grecaptcha.php file.

    Best regards,
    Ismael

    in reply to: Youtube video isn't blocked despite cookie blocker #1312306

    Hey Peter,

    Thank you for the inquiry.

    We are not really sure how the borlabs content blocker really works, so you may need to ask the plugin author for more info about the issue. Have you tried adding the shortcode in a text or code block element? Another user also suggested using a locally hosted video instead of Youtube or Vimeo.

    // https://kriesi.at/support/topic/youtube-video-in-background-not-gdpr-compliant/#post-1161844

    Best regards,
    Ismael

Viewing 30 posts - 12,601 through 12,630 (of 66,084 total)