Forum Replies Created

Viewing 30 posts - 23,791 through 23,820 (of 66,065 total)
  • Author
    Posts
  • in reply to: Layerslider video background not working on Chrome #1056404

    Hi,

    Have you tried setting the youtube url from “https” to “http” or vice versa?

    Best regards,
    Ismael

    in reply to: Shop with woocommerce optimize #1056398

    Hi,

    Thanks for the update.

    Adjust the last modification with the following css code to remove the date:

    .avia-content-slider .slide-meta {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Problem about rel next/ previous in pagination #1055438

    Hi,

    I adjusted it again added a condition for the last page.

    add_action('wp_head', 'wp_head_pagination_mod');
    function wp_head_pagination_mod() {
        global $wp_query;
    
        $page = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : get_query_var( 'page' );
        $page = ! $page ? 0 : $page;
    
        $url = (isset($_SERVER['HTTPS']) ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
        $url = substr($url, 1, strpos($url, "page"));
    
        $link_prev = $url . 'page/' . ($page - 1);
        $link_next = $url  . 'page/' . ($page + 1);
    
        if( ! $page ) {
            $output .= ' 	 	<link rel="next" href="'. $link_next .'" />' . PHP_EOL;   
        } elseif( $page == $wp_query->max_num_pages ) {
            $output  = ' 	 	<link rel="prev" href="'. $link_prev .'" />' . PHP_EOL;
        } else {
            $output  = ' 	 	<link rel="prev" href="'. $link_prev .'" />' . PHP_EOL;
            $output .= ' 	 	<link rel="next" href="'. $link_next .'" />' . PHP_EOL;
        }
    
        echo $output;
    }

    Best regards,
    Ismael

    in reply to: Preview function not working #1055411

    Hi,

    Edit the page and remove the masonry element from the advance layout builder. You should also disable the plugins temporarily to see if one of them is causing the error.

    Best regards,
    Ismael

    in reply to: Moving elements #1055407

    Hi,

    It is displaying properly on desktop view. Did you remove the browser cache? Please purge the cache and then test the page again. Or do a hard refresh.

    Best regards,
    Ismael

    in reply to: Masonary Post and jetpack lazy loading #1055404

    Hi,

    Did you set jQuery to load in the footer? It’s an option in the Performance panel. The console reported that jQuery is not defined, so the script above is actually not being executed properly.

    Best regards,
    Ismael

    in reply to: Woocommerce sidebar – placement #1055399

    Hey MarcusJeroch,

    Thank you for using Enfold.

    What is the file name of the sidebar template? You should use the sidebar slug, not its actual name, so if the template name is sidebar-sidebar-name.php, the function should look like this:

    get_sidebar('sidebar-name');
    

    Best regards,
    Ismael

    in reply to: Icon Box Big without border #1055398

    Hi,

    Thanks for the update. You have to set the page’s Layout > Header visibility and transparency settings to “Transparent Header”.

    Best regards,
    Ismael

    in reply to: Homepage is not "clean" #1055396

    Hi,

    The “www” site is a different domain and it’s using a different theme. The “2019” site, however, is displaying the “Aktuelles” page as front page as set in the theme options.

    Best regards,
    Ismael

    in reply to: Speed values went down the gutter after updating Enfold #1055395

    Hi,

    Alright. The site’s score might have changed because that test is now using a different testing tool (https://searchengineland.com/google-pagespeeds-insights-tool-gets-a-major-update-with-more-data-from-lighthouse-307968). Please look at the suggested optimizations provided by the reports. For example, it says that you have to “Defer offscreen images”. In the list, you can see images that can be optimized and one of them is a gif image (gefaellt.gif). That image alone is 867KB, which is far from an optimized image. Yes, it is animated, but if you really want to optimize the page, you should remove it or lower its quality a bit more. Another suggestion is that you should “Use video formats for animated content” and again, it points to the gefaellt.gif image. Follow those suggestions and you should be able to increase the page speed.

    Best regards,
    Ismael

    in reply to: super slow site #1054892

    Hi,

    You have to install a cache and a minification plugin to decrease the external http requests. Some cache plugins have a minify feature by default.
    If you don’t want to install a plugin to minify those resources, go to the Enfold > Performance panel and enable the File Compression settings. You should not enable that option if you’re still working on the site.

    Best regards,
    Ismael

    Hi,

    Did you remove this line?

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'fullsize' ? 'entry_without_sidebar' : 'entry_with_sidebar';
    

    I think it’s not working because the content container doesn’t have these class attributes.

    Best regards,
    Ismael

    in reply to: Exclude category in blog posts #1054872

    Hi,

    You can use the is_page conditional function if you want this modification applied to a specific page. And change the value “meat” to an array if you need to exclude multiple categories.

    Best regards,
    Ismael

    Hey mocablue,

    Thank you for using Enfold.

    The latest version (4.5.2) is always available in your themeforest account’s Download panel. If you’re still on version lower than 4.5, you will have to update the theme manually via FTP because the update script on that version has been deprecated. This documentation should help: https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp

    Best regards,
    Ismael

    in reply to: Unable to set browser caching.May be because of theme? #1054869

    Hey MAKSIMS,

    Thank you for using Enfold.

    The site is still running on a very old version of the theme, 4.0.2, so it doesn’t have the performance feature, which is available in the latest version of the theme. Please upgrade WordPress to 5.0.2 and the theme to version 4.5.2.

    This article should help: https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Setting a browser cache is quite straight forward because all you need to do is define how long the files (scripts, css, images etc) will stay in the users’ local storage.

    // https://gtmetrix.com/leverage-browser-caching.html

    The article above provides a snippet that will go to your .htaccess file.

    Best regards,
    Ismael

    in reply to: Logo problems main navigations #1054867

    Hey Stephan,

    Thank you for using Enfold.

    You can use this css code to control the maximum height and width of the logo on mobile view.

    @media only screen and (max-width: 1024px) {
    .responsive #top .logo {
        height: 60px !important;
        width: 80%;
    }
    }

    Default height value is 80px.

    Best regards,
    Ismael

    in reply to: Resize Image Sizes #1054865

    Hi,

    Did you copy the code from your email? The arrow and equal symbols are converted to their html entity codes. You should copy it directly from the forum.

    Best regards,
    Ismael

    in reply to: Entries in a Google map #1054863

    Hey Biggy,

    Thank you for using Enfold.

    Do you have a screenshot or a mockup of the map? I think it’s possible with the map element and the map marker because you can add custom marker images. You can also try the hotspot element.

    Best regards,
    Ismael

    in reply to: Section Background not displaying after update to 4.5.2 #1054860

    Hi,

    Thanks for the update.

    Did you add this css code?

    #top #main, #top .html_stretched #wrap_all, #top .alternate_color, #top .main_color, #top, #top .header_color .container_wrap_meta {
        background-color: rgba(255,255,255,0) !important;
    }

    This sets the background opacity to zero.

    Best regards,
    Ismael

    Hi,

    Great! Glad that you figured it out because I have no idea what caused the issue. We’ll close the thread now.

    Best regards,
    Ismael

    in reply to: Open link lightbox using jquery and css class #1054855

    Hi,

    Awesome. One thing though. You don’t need to set the “mfp-iframe” and “lightbox-added” class attributes manually because they will be added automatically once the lightbox script is initialized.

    Best regards,
    Ismael

    in reply to: Portfolio Item Sigle Post #1054853

    Hi,

    Did you add this text somewhere?

    SkinnyFATS - Old Site CSS
    

    It’s causing a script error.

    Best regards,
    Ismael

    Hey Daniel,

    Thank you for using Enfold.

    That page doesn’t exist. Did you remove it? Please create a test page so that we can see the issue.

    Best regards,
    Ismael

    in reply to: Adding Social Media Icons at bottom of mobile menu #1054850

    Hi,

    Try to clone the social icons by replacing this line:

    htmlString   = $('#footer .social_bookmarks').find('li a'),
    

    .. with:

    socialContainer = $('#footer .social_bookmarks').clone(),
    htmlString   = socialContainer.find('li a'),
    

    Best regards,
    Ismael

    in reply to: Change settings in Layerslider not possible #1054849

    Hi,

    I was referring to other optimization options in that article. Anyway, I’m not sure why those particular options are now enforced but I guess it has something to do with the theme’s performance options. If you want to disable it, edit the config-layerslider > config.php file and disable this line of code.

    add_action( 'init', array( $this, 'force_settings'), 10, 0 );
    

    Best regards,
    Ismael

    in reply to: Highlight Button Color Help #1054848

    Hi,

    Have you tried adjusting the color value of the “Highlight color” or “Alternate Background Color” options in the General Styling > Logo Area panel? Those are the colors used for the menu hover, buttons etc. If you want to change it manually, use this css code:

    #top #wrap_all .header_color .av-menu-button-colored:hover > a .avia-menu-text {
        background-color: blue;
        color: red !important;
        border-color: purple;
    }
    

    You can adjust the color values as you wish.

    Best regards,
    Ismael

    in reply to: Centering the Overlay in a Color Section #1054844

    Hey HostageMedia,

    Thank you for using Enfold.

    That section has a “sky” background. Could you give us a screenshot? You can use imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Quantity Field on WooCommerce Shop Pages #1054843

    Hi,

    Around 10 seconds on the video, it looks like you’re dragging the product container towards the quantity field. You’re actually dragging the url of that product inside the input field. It’s a browser feature. You won’t be able to do that unless you drag the product container or the product title, which contains the product url, inside the field.

    Best regards,
    Ismael

    in reply to: How to add code block to the entire page #1054842

    Hi,

    You should replace the “.avia-progress-bar” selector with the custom css class attribute. Where can we see the progress bars? I can’t find any in the site.

    Best regards,
    Ismael

    in reply to: WP Forms Container Issue #1054841

    Hi,

    Is this fixed? This is what I see on my end.

    Screenshot: https://imgur.com/a/q2NTIWo

    Best regards,
    Ismael

Viewing 30 posts - 23,791 through 23,820 (of 66,065 total)