Forum Replies Created

Viewing 30 posts - 10,441 through 10,470 (of 66,288 total)
  • Author
    Posts
  • in reply to: Horizon Gallery fixed height on mobile screen #1341275

    Hi,

    Thank you for the info.

    For some reason, we are getting a 403 forbidden error when we try to access the dashboard or the login page. Did you change the login URL? Please make sure that the dashboard is accessible from the following countries (see private field), or just disable the security plugin temporarily.

    Best regards,
    Ismael

    in reply to: Add horizontal scrolling menu to mobile header #1341274

    Hi,

    Yes, that should be enough, and as @Guenni007 pointed out above the Amazon menu is not really that intuitive and the site would be better off with a simple menu.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    No problem. Let us know in a different thread if you have more questions. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Can't Access Pages from the WordPress Dashboard #1341271

    Hi,

    Thank you for the info.

    Did you purge the Litespeed cache and disabled the Enfold > Performance > File Compression settings after upgrading the theme? Doing this will ensure that latest scripts and stylesheets are loaded. If the issue persists, please enable the error logs and set the installation to debug mode so that we can check for errors.

    // https://wordpress.org/support/article/debugging-in-wordpress/#example-wp-config-php-for-debugging

    Best regards,
    Ismael

    in reply to: Broken footer in translated contribution #1341270

    Hi,

    Thank you for the update.

    The Advance Layout Builder (ALB) is actually active when we edited the page but for some reason, it is still using the default template instead of the template-builder.php file. We had to access the ALB and update the page manually. We are not really sure why the ALB status was not active in that particular page. Is this happening on a lot of pages?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    So this implies that the expected fallback should be somehow implemented right ?

    Yes, you are correct. But it looks like the option is not yet available and upon reviewing the code, the video doesn’t actually look for fallbacks or I just missed something. We will forward this issue to our channel.

    For the meantime, please try to edit the enfold/framework/php/function-set-avia-frontend.php file and look for this code around line 898.

    $html5_files = $video;
    

    We will add a filter by replacing the code with:

    $html5_files = apply_filters( "avia_html5_video_files", $video );
    

    You can then use this code in the functions.php file to manually define fallbacks for a specific video.

    add_filter("avia_html5_video_files", function($videos) {
        if ( ! strpos($videos["web"], "world-video.web") === false) {
           $videos["mp4"] = "https://site.com/wp-content/uploads/world-video.mp4";
           $videos["ogv"] = "https://site.com/wp-content/uploads/world-video.ogv";
        } 
    
        return $videos;
    }, 10, 1);
    

    This checks if the name of the video is “world-video.webm”, then assign fallbacks for mp4 or ogv.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider problem after update 4.8.9.1 #1341266

    Hi,

    Thank you for the update.

    I only use the slider that comes in enfold. “Fullwidth Easy Slider”.

    You have to override the config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.php file using this code https://pastebin.com/qgNqLvkR.

    We tried to access the dashboard but we got locked out (423 error). Did you change the login URL? Please try to disable the security plugin or option temporarily so that we can check the site properly.

    Best regards,
    Ismael

    in reply to: Change logo image after scroll down #1341265

    Hi,

    Thank you for the info.

    Did you set jQuery to load in your footer? The script is not working because according to the browser console “jQuery is not defined”, which means that either jQuery is actually not loaded or the script loads before the jQuery library. To fix the issue, we adjusted the priority of the wp_footer hook to 999 to make sure that the script loads after the library.

    Best regards,
    Ismael

    in reply to: Burger Menu Customized #1341263

    Hi,

    No problem! Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Couple Issues with Enfold Install #1341262

    Hi,

    Great! Good to know that you have found the issue. Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: no index no follow for selected sites? #1341259

    Hi,

    Thank you for following up.

    The code is actually working, the robots meta tag is added to the page but the default meta tag is still there. Did you install an SEO plugin? Please try to set the Enfold > SEO Support > Meta tag “robots” to the second option and let your plugin set the appropriate tags.

    Best regards,
    Ismael

    in reply to: Woocomerce Wholesale tabel problem #1341257

    Hi,

    Thank you for the info.

    The following script should create the quantity buttons once the shop table has been loaded. Please add it in the functions.php and make sure to remove the cache before checking the page.

    function ava_custom_js_script() { ?>
        <script>
            (function($) {
                // apply quantity button to otfw shop table 
                // https://kriesi.at/support/topic/woocomerce-wholesale-tabel-problem/
                $(document).on("otfwtable_shown", function() {
                    setTimeout( function() {
                        avia_apply_quant_btn();
                    }, 150);
                });
            })(jQuery);
    	</script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_js_script', 999);
    
    

    Best regards,
    Ismael

    in reply to: Cookies toggles on custom content and categorization #1341256

    Hi,

    Is there a shortcode that list all cookies found by your scanner with their toggles (not one by one listed by me)?

    There is nothing like that in the theme, unfortunately. You will have to manually add the privacy shortcodes one at a time. Again, the list of privacy shortcodes can be found in the Enfold > Performance > Privacy & Cookies > Privacy Shortcodes tab.

    Best regards,
    Ismael

    in reply to: Lazy Loading Question #1341255

    Hi,

    Have you tried using this filter to disable lazy loading for a specific image?

    function avf_skip_loading_lazy_image_42_large( $value, $image, $context ) {
        if ( 'the_content' === $context ) {
            $image_url = wp_get_attachment_image_url( 42, 'large' );
            if ( false !== strpos( $image, ' src="' . $image_url . '"' ) {
                return false;
            }
        }
        return $value;
    }
    add_filter(
        'wp_img_tag_add_loading_attr',
        'avf_skip_loading_lazy_image_42_large',
        10,
        3
    );
    

    This will disable the lazy loading attribute for the image with the ID 42.

    Best regards,
    Ismael

    in reply to: Embedding Sub Navbar element on WooCommerce #1341254

    Hi,

    it kicks the sidebar down below the product loop. Am I missing something obvious to avoid this? Here is the code I adapted from your’s.

    Sorry for the delay. We are not seeing this issue on our end. The sidebar is perfectly positioned beside the content even though the fixed submenu is there. Would you mind providing a screenshot?

    Best regards,
    Ismael

    in reply to: Product Description Setup #1341253

    Hey Leo,

    Thank you for the inquiry.

    Looks like you are using the Advance Layout Builder (ALB) for the products, which is why they are not displaying in their default style or layout. Which part of the product page are you trying to adjust?

    You can open a new thread or ticket in this inquiry form.

    // https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    Hey markus-fischer,

    Thank you for the inquiry.

    You may need to adjust the Homepage and Social settings in the Yoast > Search Appearance > General tab. Please note that the changes here will not take effect immediately. You may have to wait for a while for the changes to propagate. Make sure to remove the cache before checking it again.

    Best regards,
    Ismael

    in reply to: Ideal with for responsive color-section paralax #1341251

    Hi,

    We tested the parallax effect of the layer slider on mobile view but it seems to be disabled, which is probably due to performance reasons. Parallax effects could degrade the rendering performance of the page a bit specially on devices with limited resources because it has to transform the element dynamically based on the cursor or scroll position. This is probably why the effect is disabled on mobile devices.

    Best regards,
    Ismael

    Hi,

    It might be cached or it is still updating. Please try it again after a while, or test the entry in this link.

    // https://developers.facebook.com/tools/debug/

    Best regards,
    Ismael

    in reply to: Remove sidebar from blog on mobile #1341144

    Hey!

    UPDATE: You can also adjust the css > layout.css file using the code below.

    // https://pastebin.com/93FsnV6f

    Best regards,
    Ismael

    Hi,

    We have checked the links in the screenshot above and the robots meta tag are properly set to “index,follow”, which makes the semrush “nofollow” warnings seem inaccurate. Did you try to run the semrush test again?

    We have also found this old thread, which might be related to this issue.

    // https://kriesi.at/support/topic/improved-added-relnofollow-excuse-me-what-this-is-the-biggest-nonsense/#post-1052624
    // https://kriesi.at/support/topic/how-to-remove-s-from-search-url/

    In the later versions of the theme, we have added the rel=”nofollow” attribute to the search icon to prevent duplicate URLs, but based on your screenshot above, the rel attribute is not included in the search icon html. Did you modify the avia_append_search_nav function?

    Best regards,
    Ismael

    in reply to: Contact Form Not Working (Not Sending Emails) #1341132

    Hi,

    Thank you for the info.

    Did you set the (Email address hidden if logged out) as the from address? This should automatically whitelist any messages coming from the contact form. If you are not seeing the messages in your inbox, please try to check the junk or spam folder. If this is still not working, please post the login details in the private field so that we can check the issue further.

    Best regards,
    Ismael

    in reply to: Setting contact form link to open in a new tab #1341131

    Hey jaimemerz,

    Thank you for the inquiry.

    This is possible but you have to directly edit the enfold/config-templatebuilder/avia-shortcodes/contact/contact.js around line 234, look for this code..

    form.attr('action', redirect_to);
    location.href = redirect_to;
    

    .. and replace it with:

    form.attr('action', redirect_to);
    window.open( redirect_to, '_blank );
    

    This should open the redirect link in a new tab. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the changes.

    Best regards,
    Ismael

    in reply to: Can't Access Pages from the WordPress Dashboard #1341127

    Hey jnightingale,

    Thank you for the inquiry.

    The site is actually using a very old version of the theme, 4.6.1, which is probably why the auto-update is not working. The latest version is now 4.8.9.1, which is available from your Themeforest account. You may need to manually update the theme via FTP this once. Please check this documentation for more info on how to manually update the theme.

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

    Best regards,
    Ismael

    in reply to: Enfold SEO Issues #1341125

    Hi,

    I checked on Google how it is being displayed

    It might be an old Google search entry, which will be updated eventually once the site has been re-crawled or re-indexed by Google. Just make sure to update regularly and add new content to it. This is what we see when we google or search for the site.

    screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwDDN4kFqGGvfPEcT?e=9SZZ5F

    The link in the search result also redirects to https properly.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We updated the enfold\config-templatebuilder\avia-shortcodes\gallery\gallery.php file as instructed in the previous thread. The title of the page should not display above the gallery anymore.

    Best regards,
    Ismael

    Hey markus-fischer,

    Thank you for the inquiry.

    We are not seeing any support links in the search results above. You can just ignore this for now because Google will eventually update the search entries as long as the site is regularly updated. If you want, you can a submit a sitemap to Google to provide more information about the site.

    // https://developers.google.com/search/docs/advanced/sitemaps/build-sitemap

    Best regards,
    Ismael

    in reply to: White space between footer socket and main content #1341107

    Hey aboderc,

    Thank you for the inquiry.

    The password for the username above is invalid, so we were not able to check the post. Please check the info carefully or create a different login account. A screenshot of the layout issue will also help.

    Best regards,
    Ismael

    Hey mebi,

    Thank you for the inquiry.

    The default contact form element have only two options for security, the default number captcha and the Google reCAPTCHA option. If you want to avoid using Google’s captcha widget, you may have to improve the site’s security in other ways such as installing a security plugin like Sucuri or Wordfence to monitor the site and block harmful traffic. You can also use a different contact form such as Contact Form 7 and install a honeypot plugin to add another layer of security to the contact form.

    // https://wordpress.org/plugins/contact-form-7-honeypot/

    Best regards,
    Ismael

    in reply to: Can't reorder images in masonry gallery #1341101

    Hey tonyiatridis,

    Thank you for the inquiry.

    This issue will be fixed on WordPress 5.9.1. For the meantime, you have to add this code in the functions.php file to enable the gallery sorting back.

    function ava_custom_css_admin_mod() {
        echo '<style>
          .wp-core-ui .attachments:after {
              visibility: hidden;
              display: block;
              font-size: 0;
              content: " ";
              clear: both;
              height: 0;
          }
        </style>';
    }
    add_action('admin_head', 'ava_custom_css_admin_mod');
    

    Best regards,
    Ismael

Viewing 30 posts - 10,441 through 10,470 (of 66,288 total)