Forum Replies Created

Viewing 30 posts - 16,141 through 16,170 (of 66,159 total)
  • Author
    Posts
  • Hi,


    @Guenni007
    : I might have misread the documentation. Please check this.

    If a static page is set for the front page of the site, this function will return true only on the page you set as the “Posts page”.

    Best regards,
    Ismael

    Hi,

    Thank you Ismael for your help, its a good approach and works on large monitors. However, from a screen width of smaller than 768px, there are styling inconsistencies:

    We can wrap the code inside a css media query so that it doesn’t affect the mobile view, or to keep the default header layout on smaller screens.

    @media only screen and (min-width: 989px) {
      #top:not(.home) #header .av-logo-container, #top:not(.home) #header .av-logo-container .logo a, #top:not(.home) #header .av-logo-container, #top:not(.home) #header .av-logo-container .logo a img {
        max-height: 59px !important;
        height: 59px !important;
        line-height: 59px !important;
      }
    
      #top:not(.home) #header .av-logo-container .main_menu li a {
        height: 59px !important;
        line-height: 59px !important;
      }
    
      #top:not(.home) #main {
        padding-top: 64px !important;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Where Logo in theme stored? #1241636

    Hi,


    @CharlieTh
    : Please try to use @Guenni007’s code above to change the default login logo. As we explained previously, you can grab the default logo URL using the avia_get_option function or this line.

    $logo = avia_get_option('logo'); 
    


    @Guenni007
    : Thank you for the code! :)

    Best regards,
    Ismael

    Hi,

    Have you tried to clear the browser cache or test on another browser? It might be serving old entries or results. The same error doesn’t display on our end as you may have seen in the screenshot above.

    Best regards,
    Ismael

    Hi,


    @malenejandersen
    : The site napartners contains an old version of the theme, v4.5. You have to upgrade it to the latest version, v4.7.6.3. If the issue persists after the update, please feel free to open a new thread and post the details in the private field.

    We’ll close this thread for now. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Borlabs Cookie not compatible with enfold? #1241626

    Hi,

    @Borlabs: Thank you for the info. I completely missed or forgot that patch. Would you mind sharing the details about the solution in this thread? It might help other users in the future.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We’ve been checking this thread on and off for the past few days but every time we do, the account above doesn’t work on our end. We tried connecting with and without TLS but it’s the same — login account is invalid. We also tried connecting via SFTP, used both old and new password, but we’re still getting the same login account error.

    Please ask your hosting provider to create a new FTP account and make sure that it can be accessed from these countries ( Austria, US, Lithuania, Ukraine, Philippines, Sweden )

    Temporarily, you can install a third party plugin for the cookie consent bar.

    // https://wordpress.org/plugins/cookie-law-info/
    // https://wordpress.org/plugins/easy-wp-cookie-popup/

    Best regards,
    Ismael

    Hi,

    We did check the staging site previously and we couldn’t reproduce the issue. We refreshed the page a few times just to check if the issue is still random but we are not able to reproduce it anymore. We checked the site on Firefox Windows 10.

    Best regards,
    Ismael

    Hi

    Thank you for the update.

    You may need to replace the Icon List with another set of elements because again by default its title is not inside a heading tag, so the TOC will NOT include it. You can use the Special Heading, Icon and the Text Block elements to create a layout that is close to the Icon List element.

    Besides: If setting the Header category in the Icon Listsettings is a bug, when shall I expect it to be fixed. Will your developers investigate this furthe

    It’s not a bug – it’s just the default markup or HTML of the Icon List element.

    UPDATE: We just noticed that there is an option where you can adjust the Heading Tag of the icon list item. Please edit one of the icon list items, then go to the Advanced > Heading Tag toggle and select one of the heading tags (h1, h2, h3 ..).

    Best regards,
    Ismael

    in reply to: Masonry anchor title #1241601

    Hi,

    Thank you for the clarification.

    We can still use the same script above, but we’ll target the masonry content instead of the featured image.

    Please look for this line:

    if($(e.target).hasClass('av-masonry-image-container')) {
    

    Replace it with:

    if($(e.target).hasClass('av-masonry-entry-content')) {
    

    Best regards,
    Ismael

    in reply to: No image link and overlay at portfolio grid #1241598

    Hi,

    Thank you for the update.

    There are still two copies of Enfold in the themes folder, and there are a lot FEG folders, so we are not sure which one is the child theme. What is the name of the child theme folder? Would you mind deleting the older version so that we can work on the latest one?

    Best regards,
    Ismael

    in reply to: Social media icons in footer #1241595

    Hi,

    Thank you for the update.

    This css code should remove the right border of the instagram icon.

    #top .social_bookmarks li:last-child {
    	border-right: 0;
    }

    Best regards,
    Ismael

    in reply to: Content Slider Space #1241594

    Hi,

    Thank you for the update.

    You can use this css code to adjust the width of the columns on mobile view.

    @media only screen and (max-width: 767px) {
        .slide-entry-excerpt .flex_column {
    	width: 100% !important;
        }
    
        .slide-entry-excerpt {
    	display: block;
        }
    }
    

    Best regards,
    Ismael

    in reply to: Flag in menu #1241590

    Hey Magnus,

    Thank you for the inquiry.

    The link tag in the language switcher container is duplicated, but the other is empty. To remove the empty link, we can use this css code.

    .av-main-nav li:nth-last-child(2) a:first-child {
    	display: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: ARCHIVE – template-archives.php #1241580

    Hi,

    You can use the get_the_post_thumbnail function above line 73 of the template-archives.php file to display the featured image above the post title or link.

    echo "<li><a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".the_title_attribute('echo=0')."'>".get_the_title()."</a></li>";
    

    // https://developer.wordpress.org/reference/functions/get_the_post_thumbnail/

    Best regards,
    Ismael

    Hi,

    Hi Ismael, are you sure about this?

    Yes, the browser still loads the image because it’s still in the DOM and the browser expects that there’s still a possibility that the image will be manipulated by a script later on. One example is a slider with multiple images — only the first image or slide is visible on page load but the browser will still request all images in the slider.

    And please note that in the section.php file, we moved the image URL in the data-src attribute, so the script will only apply the value of the data attribute either as background image or the value of the src attribute on page load. This might also affect the lazyload option.

    $params['data'] = "data-src='{$src}' data-section-bg-repeat='{$repeat}'";
    

    Unfortunately, we are not exactly sure how the lazyload option works in that plugin, so we might not be able to help you further in this case.

    Best regards,
    Ismael

    in reply to: 2 logo's showing on scroll #1241282

    Hi,

    Thank you for the update.

    You might be able to hide the logo based on the scroll position of the window. Something like this:

    $(window).scroll(function (event) {
        var scroll = $(window).scrollTop();
        // if scroll less than 50 show logo else hide it
    });
    

    Or try this css code to hide the logo by default and only display it when the av_header_transparency class name exists in the header.

    .logo {
        display: none;
    }
    
    .av_header_transparency .logo {
        display: block;
    }

    The screenshot above doesn’t display because it’s an AI file. Please use jpg or png for the screenshot.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    You can start with this css code to remove the icon and adjust the position of the slide content so that it’s above the slide image or the purple box. It might require some adjustments specially on mobile view.

    #top .avia-content-slider .slide-image .fallback-post-type-icon {
    	display: none !important;
    }
    
    #top .avia-content-slider .slide-content {
    	position: absolute;
    	top: 0;
    	color: #ffffff;
    	padding: 10px;
            width: 100%;
    }
    
    #top .avia-content-slider .slide-entry-title.entry-title, #top .avia-content-slider .slide-entry-title.entry-title a {
    	font-size: 17px;
    	color: #ffffff !important;
    }

    Best regards,
    Ismael

    in reply to: AJAX Add to cart doesn't work #1241273

    Hey Ramiro,

    Thank you for the inquiry.

    Is this still an issue? The add to cart seems to be working properly in the product pages above. The product gets added to the cart without page refresh, which means AJAX works.

    Best regards,
    Ismael

    Hi,


    @Missca
    : Where can we see the issue? Please open a new thread and provide the necessary details in the private field so that we can check it properly. We’ll close this thread for now.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Are you using the Video/Audio layer? There are more options under the layer’s embed field. You should be able to turn off the player controls there.

    Best regards,
    Ismael

    in reply to: Vertical Menu Alignement #1241259

    Hey dbideaz,

    Thank you for the inquiry.

    Have you tried adjusting the bottom padding of the first menu item?

    #menu-item-11 {
    	padding: 126px 3px 361px 3px;
    }
    

    Or we can use flexbox to control the size of the menu items.

    .html_header_sidebar .container_wrap {
    	width: 100%;
    	height: 100%;
    }
    
    .html_header_sidebar #header .container {
    	height: 100%;
    }
    
    .html_header_sidebar #header .av-main-nav {
    	display: flex;
    	flex-direction: column;
    }
    
    .html_header_sidebar #header .av-main-nav, .html_header_sidebar #header .av-main-nav-wrap {
    	width: 100%;
    	height: 100%;
    }
    
    .html_header_sidebar #header .av-main-nav > #menu-item-11 {
    	height: 70%;
    }

    The very last css declaration defines the height of the first menu item.

    Best regards,
    Ismael

    in reply to: Deep Linking in Essential Grid page not working #1241253

    Hey Jamie,

    Thank you for the inquiry.

    Both links above go to the homepage but we did find the essential grid element in the fx-products page but there seems to be an error.

    Uncaught ReferenceError: grecaptcha is not defined
        <anonymous> https://www.flayrfx.com/wp-content/plugins/contact-form-7/modules/recaptcha/script.js?ver=5.2.2:28
    

    Please note that we don’t provide support for third party plugins as stated on our support policy but we’ll try to help as much as possible. You may need to contact the plugin authors for additional assistance.

    Best regards,
    Ismael

    in reply to: Header help please #1241242

    Hi,

    Thank you for the inquiry.

    You can use this css code to adjust the position of the phone info container where you added the booking button.

    .phone-info {
    	position: absolute;
    	right: 10px;
    }
    

    To hide it on mobile view, use this css code.

    @media only screen and (max-width: 767px) {
        .phone-info {
    	display: none;
        }
    }

    You can also set the logo to the center by adjusting the Menu and Logo Position settings in the Header > Header Layout panel.

    Best regards,
    Ismael

    in reply to: Display Issue in Firefox #1241237

    Hi,

    Where did you get the value -moz-available? It doesn’t look like a valid value for the width property.

    Have you tried setting the width to 100% instead?

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

    Best regards,
    Ismael

    in reply to: Theme not looking right after update #1241235

    Hi,

    Thank you for the update.

    We have added this css code in the Enfold > General Styling > Quick CSS field to fix the issue.

    #wrap_all {
        position: relative;
    }

    Best regards,
    Ismael

    in reply to: Recaptcha not working on zorbas.dk and se! [URGENT] #1241231

    Hi,

    Is there a staging version of the site where the Google ReCAPTCHA option is active? We would like to test it.

    Which version of the spam protection are you using, v2 or v3?

    Best regards,
    Ismael

    in reply to: Menu has changed all the style. #1241226

    Hi,

    Thank you for the inquiry.

    The menu seems to be displaying as it should now. Have you tried purging the cache, or disabling the Performance > File Compressions settings?

    Best regards,
    Ismael

    in reply to: Google Analytics onclick= in main nav #1241147

    Hey jaimemerz,

    Thank you for the inquiry.

    You can attach a click event listener to the menu items and execute the Google Analytics function or tracker when someone click on the element. If you’re using jQuery, the script might look something like this.

    $(".menu-item').click(function(){
      // GA tracker here
    }); 
    

    Best regards,
    Ismael

    in reply to: MASSIVE MySQL Database – Options Table Issue #1241142

    Hi,

    Thank you for the update.

    Are you using a cache plugin? There should be a dedicated button to purge the cache manually. If you’re not using any plugin, you can ask your hosting provider if your server is actually storing or caching any data and if it can be deleted manually.

    Best regards,
    Ismael

Viewing 30 posts - 16,141 through 16,170 (of 66,159 total)