Forum Replies Created

Viewing 30 posts - 12,571 through 12,600 (of 67,591 total)
  • Author
    Posts
  • 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

    in reply to: PHP 8.1 critical error #1333048

    Hi,

    Thank you for the info.

    We can now access the login page but it is asking for another authentication code. There is a third field in the login form.

    2 Factor Authentication code*

    Can you disable that field temporarily so that we can access the site?

    Best regards,
    Ismael

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

    Hey Jorge,

    Thank you for the inquiry.

    Would you mind providing a link to the page where you are currently testing this option? It sounds like you are trying to allow your users to customize the site in the frontend. Creating that option or feature will require significant amount of modification and is beyond the scope of support. You may need to contact or hire a third party developer to build the option.

    Best regards,
    Ismael

    in reply to: Enfold child Newsletter #1333045

    Hey ictsystem,

    Thank you for the inquiry.

    how can I view only the mail field and the name?

    What do you mean? Please note that the widget will automatically display every fields that was added in the Mailchimp form creation panel. If you only need to display some of the fields, you have to create a new form and display that instead.

    Best regards,
    Ismael

    in reply to: Contact Form autorespond WITHOUT including form data? #1332968

    Hi,

    Thank you for the clarification.

    Try to use this filter in the functions.php file to exclude the contact form message or form fields’ value from the autorespond message.

    // directly return the autoresponder text
    add_filter("avf_form_custom_autoresponder", function($auto, $message, $cp, $post) {
        return $cp->form_params['autoresponder'];
    }, 10, 4);
    

    Best regards,
    Ismael

    in reply to: PHP 8.1 critical error #1332967

    Hi,

    Thank you for the info.

    We enabled the debug mode and got a bunch of errors in the login page. One of the errors is related to the layer slider — it says here that the layer slider drafts does not exist in the database.

    Fatal error: Uncaught mysqli_sql_exception: Table ‘_vk7_layerslider_drafts’ doesn’t exist in wp-includes/wp-db.php:2056 Stack trace: #0 /home/l/i/ftp_linkbergdk/wp-includes/wp-db.php(2056): mysqli_query(Object(mysqli), ‘DESCRIBE …’) #1

    Did you remove the layer sliders? You may need to restore those entries from a backup if available.

    Best regards,
    Ismael

    in reply to: Api key #1332965

    Hi,

    Thank you for the update.

    We tried to login using the account above but it seems to be incorrect or invalid. Please check the info carefully or provide another admin account.

    Best regards,
    Ismael

    in reply to: Swipebox overlay problem #1332964

    Hi,

    Thank you for the update.

    We cannot find the same contact form in the live site. Where did you add it, and how can we reproduce the issue? Please provide a login account for the staging site so that we can check the issue properly.

    Best regards,
    Ismael

    in reply to: Max height to a code block #1332952

    Hi,

    Great! Glad we could be of help. Please feel free to open a different thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold settings lost after transfer #1332951

    Hey Michael,

    Thank you for the inquiry.

    Have you tried importing the theme options AFTER changing the entries in the database instead? Make sure to export the theme options first before editing the domain name.

    Did you actually check the Enfold > Theme Options? Are the options gone or just the site styling? It is possible that the compressed files (Performance > File Compression) still contain the old domain name, which is why the site styles are gone.

    Best regards,
    Ismael

    in reply to: update 4.8.8. Critical error in Theme PHP 8+ #1332950

    Hi,

    Thank you for update.

    Have you tried editing the avia_blog.php file as instructed in this thread?

    // https://kriesi.at/support/topic/critical-error-9/#post-1327504

    Please check your child theme and make sure that the avia_blog.php file is not there. If it is, please remove it temporarily.

    Best regards,
    Ismael

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

    Hey ToniMalena,

    Thank you for the inquiry.

    We get the following error in the console when we go to the Team Velocity page, which might be due to the Performance > File Compression settings. Please disable the compression settings temporarily so that we can locate the script where the error occurs.

    
    Uncaught TypeError: Cannot read properties of undefined (reading 'addClass')
        at Object.show_item (avia-footer-scripts-07c8ca6e9ef6dc604f88c80532ccaf67---618a9c3e07e05.js:105)
        at s.fn.init.single_callback (avia-footer-scripts-07c8ca6e9ef6dc604f88c80532ccaf67---618a9c3e07e05.js:106)
        at i.AviaPreloader.trigger_loaded (avia-footer-scripts-07c8ca6e9ef6dc604f88c80532ccaf67---618a9c3e07e05.js:33)
        at i.AviaPreloader.checkImage (avia-footer-scripts-07c8ca6e9ef6dc604f88c80532ccaf67---618a9c3e07e05.js:33)
        at avia-footer-scripts-07c8ca6e9ef6dc604f88c80532ccaf67---618a9c3e07e05.js:32
    

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Width Header image larger on mobile #1332948

    Hey hitrev,

    Thank you for the inquiry.

    We can use this css code to adjust the size of the image a bit.

    .av_slideshow_full li img {
        transform: scale(1.1);
    }

    But we would recommend adding another Fullscreen Slider element in place of the current one instead and upload an image that is specifically resized for mobile view. You can then toggle the sliders’ visibility by adjusting the Advanced > Responsive Settings > Element Visibility settings. With these options, you can set the new Fullscreen Slider to only display on mobile view and the current slider on larger screens.

    Best regards,
    Ismael

    Hey ASoliveres,

    Thank you for the inquiry.

    The auto update in the current version (3.8) will no longer work, so you have to update the theme or upload it to your server manually via FTP. Make sure to create a site backup before doing so. And after the update, toggle the Performance > File Compression settings or disable it temporarily, then purge the cache.

    For more info about manual theme update, please check this documentation.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: Diagonal Border in Color Section #1332916

    Hi,

    Thank you for the info.

    Looks like you already changed the design and layout of the page above. It looks good. Where can we see the issue again? Please create a temporary page showing the issue.

    Best regards,
    Ismael

    in reply to: Masonary for blog posts without showing the date #1332915

    Hey smuejae,

    Thank you for the inquiry.

    You can use this css code instead.

    .av-masonry-date {
        display: none !important;
    }
    

    Please do not forget to toggle or temporarily disable the Enfold > Performance > File Compression settings, and purge the cache after adding the css code.

    Best regards,
    Ismael

Viewing 30 posts - 12,571 through 12,600 (of 67,591 total)