Forum Replies Created

Viewing 30 posts - 8,761 through 8,790 (of 34,913 total)
  • Author
    Posts
  • in reply to: Slider minimum height in pixel not working? #1399005

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Search Results Page – Grid Layout #1399003

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Captcha #1398940

    Hey tamara_75,
    Thanks for the link to your site, I tested your contact page with your recaptcha and it seem to work correctly for me.
    Once you click on it and it activates the send button it should disappear.
    If you mean that you are not getting the email to your gmail account, it is probably because you are using your domain email as the sender email but sending it to the gmail address, it is probably being marked as spam, try using your domain address.
    To solve the recaptcha showing English text on the FR version I added this to your child theme functions.php

    add_filter('avf_google_recaptcha_apiurl_lang', function($lang, $context) {
    	if($context == 'frontend')
    	{
    		$lang = substr(get_locale(), 0, 2);
    	}
    
    	return $lang;
    }, 10, 2);

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Help needed pls with alternate header logo #1398937

    Hi,
    As I understand for the homepage only you would like the logo
    /wp-content/uploads/2023/02/2023-02-SB1-Datenaufbereitung-Website-3zu2-1800×1200-LogomitVerlauf.png
    before scrolling in the transparent header
    and after scrolling you would like the logo:
    /wp-content/uploads/2023/02/2019-10-SB1-Logo-Schmusebacke-quer-RGB-weiss-breiter_groesser-e1676543563718.png
    Typically when scrolling the transparent header the class header-scrolled is added, but I’m not seeing this now on your site.
    It also seems that your homepage menu is now hidden, is this by design?
    Please include an admin login in the Private Content area so we can see your settings and assist further.

    Best regards,
    Mike

    in reply to: Search Results Page – Grid Layout #1398933

    Hi,
    I’m not seeing this css on your page:

    .template-search .post-entry {
        clear: none;
    }

    when I test it I’m seeing the correct display:
    Enfold_Support_438.jpeg
    if you added the css in Enfold Theme Options ▸ General Styling ▸ Quick CSS field please check the css above it for missing brackets or other errors, otherwise Please include an admin login in the Private Content area so we can check.

    Best regards,
    Mike

    in reply to: Font not showing after adding using @font-face #1398926

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    I don’t believe this is an admin login, because when I log in I’m redirected to a /my-account/ maintenance page and can not reach the backend /wp-admin/, please check.

    Best regards,
    Mike

    in reply to: Mega menu bullets different colors #1398872

    Hi,
    To change the menu arrows please see our documentation: Replace mega menu arrows with custom icon
    So for your situation, to have the bar icon and to have it the color red, please try this css:

    #top .avia-bullet {
      border: none;
        padding:0;
        margin: 0 5px 0 0!important;    
    }
    #top .avia-bullet:before {
        content: "\e819";
        font-family: 'entypo-fontello'; 
        color: red;
        font-size:11px;
        line-height:1em;
        left:-3px;
    }

    This will change the above solution to have specific bars a different color to this css:

    .header_color #menu-item-331 > a > .avia-bullet:before {
        color: blue;
    }
    .header_color #menu-item-388 > a > .avia-bullet:before {
        color: green;
    }
    .header_color #menu-item-332 > a > .avia-bullet:before {
        color: yellow;
    }

    The expected results:
    Enfold_Support_436.jpeg

    Best regards,
    Mike

    in reply to: Help needed pls with alternate header logo #1398870

    Hi,
    Thanks for your feedback, if you use this function to assign the frontpage logo:

    add_filter('avf_logo','av_change_logo_img');
    
    function av_change_logo_img($img)
    {
        if( is_front_page() )
        {
            $img = "/path/logo-home.png";
        }
        return $img; 
    }

    then add this css to show it on the transparent header:

    #top.home .av_header_transparency .logo img.alternate, .av_header_transparency .logo .subtext.avia-svg-logo-sub svg {
        opacity: 0;
    }
    #top.home .av_header_transparency.av_alternate_logo_active .logo a > img, #top .av_header_transparency.av_alternate_logo_active .logo a > svg {
        opacity: 1;
    }

    I tested this on my demo site and the image in the function shows only on the homepage and in the transparent header.
    If this doesn’t work for you, please include admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

    Hi,
    We will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Hello I have a problem with my LayerSlider for my homepage #1398814

    Hi,
    Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Blog posts 3 questions #1398813

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Dots Menu (Fullwidth submenu element) with current class #1398812

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Bug: no sqare brackets in avia form subject possible #1398811

    Hi,
    Thanks for your feedback, I see this is already reported on our GitHub issues,
    I’m sure the Dev Team will reply to the GitHub issue.
    https://github.com/KriesiMedia/enfold-library/issues/22#issuecomment-1437049267
    But I believe this is because the Translation plugin doesn’t run in the backend, it is a frontend function using str_replace() thus using encoded characters for the backend mail function are needed.
    I have forwarded this for feedback and will reply when I hear back.

    Best regards,
    Mike

    in reply to: Help needed pls with alternate header logo #1398808

    Hey Alex Freelance,
    Thank you for your patience, as I understand for the homepage logo you want to show the center logo on the transparent header instead of the left-side oval logo,
    please try this css:

    #top.home .av_header_transparency .logo img.alternate, .av_header_transparency .logo .subtext.avia-svg-logo-sub svg {
        opacity: 0;
    }
    #top.home .av_header_transparency.av_alternate_logo_active .logo a > img, #top .av_header_transparency.av_alternate_logo_active .logo a > svg {
        opacity: 1;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Thanks for your patience, The Dev Team has adjusted the two files:
    enfold/js/avia-snippet-hamburger-menu.js
    enfold/js/avia-snippet-hamburger-menu.min.js

    These are linked below, please try them on your install and be sure to clear your site, server, and browser cache.
    Please don’t test with the script I posted above or the precious /#top modification, if you had applied it.

    Best regards,
    Mike

    in reply to: Social media icons in footer #1398765

    Hi,
    Glad we were able to help, Thanks to Guenni007 for the shortcode function. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Mega menu bullets different colors #1398683

    Hey Stefan,
    You could use css like this adjusting the color to suit the menu item IDs:

    <pre><code>.header_color #menu-item-331 > a > .avia-bullet {
        border-color: blue;
    }
    .header_color #menu-item-388 > a > .avia-bullet {
        border-color: green;
    }
    .header_color #menu-item-332 > a > .avia-bullet {
        border-color: yellow;
    }

    This css changes the menu arrows for three items to blue, green, and yellow.
    Try to modal this for your other items, this is the expected results for the above css:
    Enfold_Support_434.jpeg
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header (logo and burger menu) show on scroll up MOBILE #1398682

    Hi,
    To show the mobile header, logo and burger menu when scrolling down try this css:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all #header {
        position: fixed;
      }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Advanced Layerslider Mobile Full Screen #1398681

    Hey Chris,
    Thanks for the link to your site, for the LayerSlider the best solution is to create a mobile version of the slider, because for mobile it will be a portrait view, compared to desktop which is a landscape view.
    Try cloning your current desktop slider and naming it mobile, then change the canvas in the settings to about 425px x 768px and adjust the video to this aspect, if you find the video is cropped too much for mobile portrait then upload a new version of the video that will work for you.
    Then set the visibility for the mobile video to only show on mobile and the desktop to only show on desktop.

    Best regards,
    Mike

    in reply to: Local Google Font load from http not https #1398676

    Hi,
    Glad to hear that you have this sorted out, and thanks for sharing your solution. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hi,
    Thanks for the login, but I don’t see the URL to your site, please include this also.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, on each line I see error anon-0-0-0-187.ip6.invalid so it looks like your server is returning an invalid error for ip6
    I’m not a server expert so I recommend asking your webhost to investigate this error.

    Best regards,
    Mike

    in reply to: Recaptcha button not showing #1398613

    Hi,
    Thanks for the feedback, I guess I misunderstood, if you are talking about a Recaptcha button that always showing on the right bottom site then this would be from another plugin because Enfold doesn’t have this.
    The only thing we have similar to the is the Enfold Theme Options ▸ Privacy and Cookies ▸ Advanced Options ▸ Show reopen badge it looks like a “lock” icon to reopen the cookie bar.

    Best regards,
    Mike

    in reply to: Font not showing after adding using @font-face #1398612

    Hi,
    Thanks for the feedback, please note that you need to have the full url in your stylesheet because you have two different url’s in your
    WordPress ▸ Settings ▸ General ▸ Site Address
    WordPress ▸ Settings ▸ General ▸ WordPress Address

    when you only use /wp-content/uploads/avia_fonts/type_fonts/gothic.ttf in your css @font-face the correct address in not used, I corrected this for you and now the gothic.ttf is loading correctly.
    But gothic_bold.ttf or gothic-bold.ttf is not correct, it still gives a 404, please include FTP access so we can see what the path & file name for the bold version of the font is a correct your @font-face css

    Best regards,
    Mike

    in reply to: Change menus on mobile #1398607

    Hi,
    Glad we were able to help, Try making the text of the menu items smaller so they will fit on one line. If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: change word into icons sec menu #1398573

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: change word into icons sec menu #1398571

    Hi,
    Oops, I adjusted to this:

    #avia2-menu #menu-item-599 a:before {
    	content: "\e800";
    	font-family: fontello;
    	font-size: 16px;
    	color: #000;
    }
    #avia2-menu #menu-item-599 a{
    	font-size: 0;
    }
    #avia2-menu #menu-item-673 a:before {
    	content: "\e835";
    	font-family: fontello;
    	font-size: 16px;
    	color: #000;
    }
    #avia2-menu #menu-item-673 a{
    	font-size: 0;
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Font not showing after adding using @font-face #1398570

    Hey Jables,
    I assume that you uploaded them via FTP, please check the file name for gothic-bold.ttf as it is a 404.
    I was able to get gothic.ttf to load by changing the url but not gothic-bold.ttf
    I see you are not using SSL, do you plan to?
    I adjusted your css because body is too weak as a css rule, this works for most of your plain text not including headers:

    body #wrap_all #main {
    	font-family: 'gothic', sans-serif;
    	font-weight: normal;
    }

    For your special heading this css is better:

    
    #main h1.av-special-heading-tag {
    	font-family: 'gothic-bold', sans-serif;
    	font-weight: normal;
    }

    Best regards,
    Mike

    in reply to: change word into icons sec menu #1398566

    Hi,
    Thank you, I see this menu:
    Enfold_Support_426.jpeg
    and these custom icons:
    Enfold_Support_428.jpeg
    If you use this css:

    #avia2-menu #menu-item-599:before {
    	content: "\e800";
    	font-family: fontello;
    	font-size: 16px;
    	color: #000;
    }
    #avia2-menu #menu-item-599{
    	font-size: 0;
    }
    #avia2-menu #menu-item-673:before {
    	content: "\e835";
    	font-family: fontello;
    	font-size: 16px;
    	color: #000;
    }
    #avia2-menu #menu-item-673{
    	font-size: 0;
    }

    you should see this result:
    Enfold_Support_430.jpeg
    After applying the css, please clear your browser cache and check.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

Viewing 30 posts - 8,761 through 8,790 (of 34,913 total)