Forum Replies Created

Viewing 30 posts - 11,161 through 11,190 (of 66,206 total)
  • Author
    Posts
  • in reply to: image height at percentage of browser height #1333489

    Hi,

    Thank you for the clarification.

    You can set the color section’s content container width to 100%. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Best regards,
    Ismael

    in reply to: General Styling Page for End Users #1333488

    Hi,

    If you are going to use jQuery, the following functions might help.

    // https://api.jquery.com/click/
    // https://api.jquery.com/is/

    You can check if the clicked element contains a certain class name or ID using the is function above. Unfortunately, we are not sure what you are trying to do with the color section or what you actually mean by refreshing it.

    Best regards,
    Ismael

    in reply to: Enfold Pagebuilder changes amazon iframe code #1333487

    Hi,

    Did you use the code above? It is still working correctly on our end. Please create a new thread and post the login details in the private field so that we can add it for you. We will close this thread for now.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Overwriting Meta Title fails #1333486

    Hi,

    No problem. Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Trying to upload an iconfont manager zip #1333348

    Hi,

    Thank you for the update.

    We managed to upload a set of font icons from fontello.com in the Iconfont Manager without encountering an error.

    // https://fontello.com/

    Where did you get the font icons? Please note that only monocolored font icons are allowed in the upload manager.

    Best regards,
    Ismael

    in reply to: Layerslider fatal error #1333344

    Hey!

    We set the installation to debug mode temporarily and enabled the errors logs but we cannot find any meaningful info aside from the exhausted memory limit. We also noticed that you have installed the Search & Replace plugin. Did you adjust some entries in the database? You might have accidentally altered the layer slider entries, which caused the error.

    Thank you for your patience.

    Cheers!
    Ismael

    in reply to: How to add framed border to text element #1333339

    Hey Julio,

    Thank you for the inquiry.

    As we mentioned in the previous thread, it is possible to apply a unique ID or class name to any elements in the builder including the Text Block and the Special Heading element. Just edit the element, then go to the Advanced > Developer Settings panel to apply the class name or the ID. You can then use those attributes as css selectors to adjust the style of the element.

    Example:

    .your-custom-class { font-size: 100px; }
    

    Best regards,
    Ismael`

    in reply to: Autoplay on iOS #1333321

    Hi,

    Thank you for the update.

    We will include the changes in the next version of the theme. There will also be a new filter so that the attribute can be modified if necessary.

    /**
    				 * Add playsinline for IOS https://kriesi.at/support/topic/autoplay-on-ios/
    				 * Allow to modify if video is hidden on mobile (not done by default because of multiple mobile device selections)
    				 * @since 4.8.8.1
    				 * @param string $autoplay
    				 * @param string|array $video		array(  fileext => file url  )
    				 * @param array $attributes
    				 * @return string
    				 */
    				$autoplay = apply_filters( 'avf_html5_autoplay_mobile', "{$autoplay} playsinline", $video, $attributes );
    			}
    

    Best regards,
    Ismael

    in reply to: Error in developper tools/console #1333319

    Hi,

    Thank you for the update.

    The console clearly states that there is an error in the script, so it has to be traced and fixed. But since the issue only occurs when jQuery Migrate library is disabled, it means that there is a deprecated function that is still in used or that exists in the scripts. You can just keep the jQuery Migrate library enabled to get rid of the error.

    Best regards,
    Ismael

    in reply to: Direct Link to Ajax Portfolio Item #1333316

    Hi,

    Thank you for the info.

    In the enfold_customization_portfolio_linking function, try to look for this line..

    jQuery('.post-entry-'+p+' .grid-image').click();
    

    .. and replace it with.

    jQuery('.post-entry-'+p+' .grid-image').trigger("click");
    

    Best regards,
    Ismael

    in reply to: Product Grid / Product Slider Customization #1333308

    Hi,

    Glad to know to know that it is working. Regarding the button, try to use this css code to adjust the position of the read more link and ensure that it sticks to the bottom.

    .responsive #top .slide-entry .read-more-link {
        position: absolute;
        bottom: 0;
        left: 0;
        top: auto;
    }
    
    .responsive #top .slide-entry  .slide-entry-excerpt {
        position: relative;
        padding-bottom: 50px;
    }
    

    Best regards,
    Ismael

    in reply to: Header background is not displayed as set #1333114

    Hi,

    This is a very odd issue. The header is not visible but the mobile menu is still clickable. We cannot find any issue with the css and when we tried to increase the z-index value of the header, it didn’t affect the visibility of the mobile menu. Did you apply other css to the header?

    Best regards,
    Ismael

    in reply to: Header effect of mix-blend mode #1333110

    Hi,

    Thank you for the update.

    Would you mind providing a screenshot of the issue? The background of the mobile menu container is set to black when we checked the site. The header is also transparent, no blend mode. Please note that mix-blend-mode property will only work if you apply it on an element that is a direct child of another element. You should not expect the element to blend with other elements in the page, aside from its parent element.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode

    Best regards,
    Ismael

    in reply to: Trying to upload an iconfont manager zip #1333106

    Hey Joshua,

    Thank you for the inquiry.

    It might be due to a missing PHP extension called ZipArchive. Please check the following thread for a possible fix, or just make sure that the ZipArchive extension is enabled. You can ask your hosting provider to configure the server or the PHP options.

    // https://kriesi.at/support/topic/i-get-the-link-you-followed-has-expired/#post-1331575
    // https://kriesi.at/support/topic/download-of-files-for-demo-gym-demo-didnt-work-you-might-want-to-try-reloading/#post-1332980
    // https://kriesi.at/support/topic/unable-to-add-custom-fonts/#post-1331120

    Best regards,
    Ismael

    in reply to: Color change for gallery titles / put them below the pictures #1333103

    Hey tinohannes,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the image tooltip.

    .avia-tooltip {
        position: absolute;
        z-index: 9999999;
        padding: 12px;
        margin-top: -18px;
        margin-left: -4px;
        background: #000;
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        width: 140px;
        border-radius: 2px;
        text-align: center;
    }
    

    Default background color is set to rgba(0, 0, 0, 0.8).

    Best regards,
    Ismael

    Hi,

    Great! Glad to know that the latest version helped solve the issue. We will close this thread now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Direct Link to Ajax Portfolio Item #1333100

    Hi,

    Thank you for the update.

    The error occurs in the portfolio.js file around line 202..

    portfolio.js?ver=5.8.2:202 Uncaught TypeError: Cannot read properties of undefined (reading 'addClass')
        at Object.show_item (portfolio.js?ver=5.8.2:202)
        at s.fn.init.single_callback (portfolio.js?ver=5.8.2:292)
        at $.AviaPreloader.trigger_loaded (shortcodes.js?ver=4.8.7.1:944)
        at $.AviaPreloader.checkImage (shortcodes.js?ver=4.8.7.1:933)
        at shortcodes.js?ver=4.8.7.1:928
    

    .. in this code.

    content_retrieved[post_id].addClass('open_slide');
    

    The post_id is not defined.

    How do you execute or open the portfolio preview on load? Please post the script using pastebin or any online snippet tool.

    Best regards,
    Ismael

    in reply to: PHP 8.1 critical error #1333095

    Hi,

    Thank you for the info.

    The dashboard is now accessible without the errors. Try to remove the browser history or cache, or try to check the site on a different browser. (see private field)

    Best regards,
    Ismael

    in reply to: Special Heading – center sub heading to text. #1333094

    Hey John,

    Thank you for the inquiry.

    There are “centered” Heading Style options (see private field) in the Special Heading’s editor. Have you tried selecting one of those options?

    Best regards,
    Ismael

    in reply to: Magazine options not working in 4.8.8 #1333093

    Hey peterolle,

    Thank you for the inquiry.

    Did you modify or override the magazine.php file in the child theme? Please try to update the magazine.php file with the following code.

    // https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_8/alb/magazine.php

    Best regards,
    Ismael

    in reply to: burger menu not activating on small mobile screens #1333091

    Hi,

    No problem. Glad we could help. Please let us know in a different thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold settings lost after transfer #1333089

    Hi,

    Alright! Let us know if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Youtube videos not playing on site #1333088

    Hey covaun,

    Thank you for the inquiry.

    Have you tried using the video element? Did you enable the Enfold > Privacy & Cookies settings? It is possible that the privacy option is not allowing the video elements to load immediately without user consent or without accepting the privacy cookies first. Please provide a link to the page containing the video so that we can check it.

    Best regards,
    Ismael

    in reply to: Full width easy slider squished on mobile #1333086

    Hey NewGenerationDigital,

    Thank you for the inquiry.

    You can display a different slider (e.g Fullscreen Slider, Layer Slider) on mobile view by adjusting the element’s Advanced > Responsive Settings > Element Visibility options. With these options, you can hide the current slider on mobile view and display another element.

    Best regards,
    Ismael

    in reply to: Skip Content button #1333074

    Hey cacvaquero,

    Thank you for the inquiry.

    Where did you add the skip button? Please post the page URL in the private field so that we can check it. We may need to add a script that automatically focuses on the next or closest link element after clicking the skip button.

    Best regards,
    Ismael

    in reply to: Autoplay on iOS #1333067

    Hey spooniverse,

    Thank you for the inquiry.

    You may need to directly add the playsinline attribute in the /enfold/framework/php/function-set-avia-frontend.php file. Look for this code around line 933.

    $output .= "<video class='avia_video' {$image} {$autoplay} {$loop} {$metadata} {$muted} {$controls} id='{$uid}'>";
    

    Add the attribute in the video element.

    $output .= "<video class='avia_video' playsinline {$image} {$autoplay} {$loop} {$metadata} {$muted} {$controls} id='{$uid}'>";
    

    Best regards,
    Ismael

    in reply to: Overwriting Meta Title fails #1333065

    Hi,

    Thank you for following up.

    It actually works fine on our end even without the modifications above.

    back: https://imgur.com/TD9eE4W
    front: https://imgur.com/5CXwJuz

    There is probably another plugin in your installation that overrides the default title.

    Best regards,
    Ismael

    Hey hec9191,

    Thank you for the inquiry.

    This is not available by default but you can add a link to the gallery items that will redirect the users to a page containing the sub categories. Unfortunately, you cannot add or attach a menu to the gallery items.

    Best regards,
    Ismael

    in reply to: Layer Slider text not working #1333058

    Hey gdsconcepts,

    Thank you for the inquiry.

    Would you mind providing screenshot (use imgur or dropbox) of the issue? This is how we see the EN slider on our end. (see private field)

    Best regards,
    Ismael

    in reply to: Enfold settings lost after transfer #1333050

    Hi,

    Thank you for the update.

    We are NOT really sure about that but it might be due to the new post css file management or the file compression settings. Either way, you should be able to restore the theme options by re-importing them.

    Best regards,
    Ismael

Viewing 30 posts - 11,161 through 11,190 (of 66,206 total)