Forum Replies Created

Viewing 30 posts - 25,921 through 25,950 (of 34,339 total)
  • Author
    Posts
  • Hi,

    @ChrisBards

    Please try doing a test submission after the plugin is installed, by default no data is saved without the plugin, so you can’t retrieve old submissions.

    Best regards,
    Mike

    in reply to: LayerSlider is not working on mobile and tablets #981355

    Hi,
    I have taken a look and found that you are getting a js error for screen sizes 1440px and below:

    Uncaught Code.PhotoSwipe.createInstance: No images to passed. code.photoswipe.jquery-3.0.5.js

    this seems to be coming from: /wp-content/plugins/tablet-photography/photoswipe/code.photoswipe.jquery-3.0.5.js
    Please try disabling the plugin tablet-photography and clear any site and browser cache, and check again.
    Often the errors reported in the console begin with a different root cause, so if this doesn’t solve please try disabling your other plugins and check.

    Best regards,
    Mike

    in reply to: Problems with masonry gallery #981352

    Hi,
    I have taken a look and I find that on first load or hard refresh the images are loading slowly because there are so many of them, after the element has been created, which gets it’s height from the images.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    	}, 2000);
    	
    	$(window).load(function () {
    		setTimeout(function() {
    			clearInterval(int);
    		}, 5000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Mike

    in reply to: Facebook widget phone #981343

    Hi,
    I have checked with a LG Android v5.1.1 with Chrome and the FaceBook widget shows.
    Please see screenshot in Private Content area.
    Do you have “data saver” turned on, which uses caching to view sites, and have you tried clearing your cache & history?

    Best regards,
    Mike

    in reply to: Woocommerce booking & Enfold #981340

    Hi,
    Thank you for explaining, I have tested with Android and find that I can add the number of people. Since you have said that this doesn’t work with iPhone I will ask the team to take a look with a iPhone.
    Thanks for your patience.

    Best regards,
    Mike

    Hi,
    I’m not sure I understand, as when I check your popup the google opt out is already visible as a button,
    because of [av_privacy_google_tracking] which is a built in function,
    and as I understand it there is no need to add any more code or radio buttons.
    2018-07-04_134808
    You can read more about this here: ENFOLD 4.4 AND THE GDPR

    Best regards,
    Mike

    in reply to: Menu issues #981330

    Hi,
    In your color section try changing the “Background Image Position” to “Top Center”
    2018-07-04_133241
    I tested and it places the image under the header when Scale to fit is used.

    Best regards,
    Mike

    in reply to: Mobile fly out menu hides under content #981323

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Image full width on ONE side of the content #981321

    Hi,
    Sorry for the mixup, we will be more careful.
    Was there anything thing else we can assist with on this issue, or shall we close this then?

    Best regards,
    Mike

    Hi,
    Please try this css:

    #menu-item-phone a[data-av_icon]:before {
        font-size: 20px !important; 
    }

    If you add this to your child theme style.css, please resave your theme settings to ensure your merged css is rebuilt.
    If you find it’s not helping, please test in WordPress > Customize > Additional CSS.
    Also be sure to clear your browser cache.

    Best regards,
    Mike

    in reply to: Mobile fly out menu hides under content #980894

    Hey steviger,
    This is happening because in your child theme style.css the “.overlap_slider” has a z-index of 10000, where on the homepage it has a z-index of 99 (.overlap_slider_frontpage {z-index: 99;})
    Please see if you can change this on line 91,
    otherwise, try adding the css in your WordPress > Customize > Additional CSS:

    .overlap_slider{z-index: 99 !important;}

    Best regards,
    Mike

    Hi,
    To have the sub-menu extend to 768px, please try this css in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 768px)
    {
    	.responsive #top .sticky_placeholder{max-height:0px; }
    	.responsive #top .av-submenu-container{top: auto !important; position: relative !important; height:auto; min-height:0; margin-bottom: -1px;}
    	
    	.responsive #top .av-menu-mobile-active {text-align: center; }
    	.responsive #top .av-menu-mobile-active .mobile_menu_toggle{display: inline-block!important; }
    	.responsive #top .av-menu-mobile-active .av-subnav-menu{display:none!important; }
    	
    	.responsive #top #wrap_all .av-menu-mobile-active.container {width:100%; max-width: 100%;}
    	.responsive #top .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block!important; }
    	.responsive #top .av-subnav-menu > li:first-child{margin-top:-1px;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu  li{display:block; border-top-style: solid; border-top-width: 1px; padding:0;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu > li > a{border-left:none; padding:15px 15%; text-align: left;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before{content: "\25BA"; position: absolute; top: 15px; margin-left: -10px; font-family: 'entypo-fontello'; font-size: 7px;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li > ul{visibility:visible; opacity: 1; top:0; left:0; position: relative; width:100%; border:none;}
    	.responsive #top .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul{display: none;}
    	.responsive #top .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul.av-visible-sublist{display: block;}
    	
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li > ul a{padding:15px 19%;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li li > ul a{padding:15px 24%;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li li li > ul a{padding:15px 29%;}
    
    }

    Best regards,
    Mike

    in reply to: Header on mobile view #980880

    Hi,
    To have this only effect your homepage, you would need to add the page ID to the css rules, like this:

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

    Best regards,
    Mike

    in reply to: Sticky or fixed element #980876

    Hi,
    I believe Guenni007 used a different script, here he explains the steps

    Best regards,
    Mike

    in reply to: Individual Object ID #980870

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: fixed background photo #980867

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Cannot customize theme/other issues #980863

    Hi,
    I found that in the Layer Slider advanced settings you had “Use Google CDN version of jQuery” turned on, turning off solves.
    2018-07-03_205941

    Best regards,
    Mike

    in reply to: Menu font colours #980861

    Hi,
    Perhaps I misunderstood, I thought you wanted the transparent header and on scroll it changes to green?
    If you want it green all of the time, try changing the “Header visibility and transparency” setting to “No transparency” for the page in the editor.
    2018-07-03_204743

    Best regards,
    Mike

    Hi,
    This may be easier to accomplish with the Say What Plugin
    Try adding the text you would like to replace, and your new text, and use ‘avia_framework’ as the Text Domain. This screenshot shows a example.
    setting_breadcrum

    Best regards,
    Mike

    Hi,
    It seems that you already have a phone button next to the burger menu. Please explain what changes you would like.

    Best regards,
    Mike

    in reply to: Make same Advanced menu #980843

    Hi,
    When I look, the phone seems to be lined up with the menu, and the logo seems to be off center, by design?
    But if you would like to move the phone up some, please try this css in your Quick CSS:

    .top-phone {
        margin-top: -8px;
    }

    Best regards,
    Mike

    Hi,
    Yes, we will leave this open while you test, to be sure it is working for you.
    Also you can remove the fontello code in functions.php since you won’t be using it.
    Have a happy 4th of July :)

    Best regards,
    Mike

    in reply to: Sticky or fixed element #980558

    Hi,
    Thanks for the login, I found that when adding the custom class to the column you included the dot, I removed the dot and it now works.
    I also adjusted the sticky height of the column and the start position, here is the new code for your review:

    // sticky element
    function add_sticky_script(){
    ?>
    <script type="text/javascript">
    (function($){
      function a() {
          $(window).scroll(function(e){
            var $sticky = $('.sticky_element');
            var position = ($sticky.css('position') == 'fixed');
            if ($(this).scrollTop() > 170 && !position){
              $sticky.css({'position': 'fixed', 'top': '170px', 'right': '8%','width' : $sticky.innerWidth() });
              $sticky.next().css('float', 'right');
              $sticky.addClass('fixed_element_style');
            }
            if ($(this).scrollTop() < 170 && position)
            {
              $sticky.css({'position': 'static', 'top': '0px', 'width' : '' });
              $sticky.next().css('float', 'left');
              $sticky.removeClass('fixed_element_style');
            }
          });
      }
    
      a();
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_sticky_script');

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to override the #top tag #980536

    Hi,
    Yes that is correct “#offsite-sec” is the container for “.flex_cell.no_margin” that is why there is a space between them, and why “#offsite-sec” has to be there and not at the top.
    Think of stairs & each step is a div or element
    Hope that makes since.

    Best regards,
    Mike

    in reply to: Dropdown menu NOT showing up when on the homepage #980531

    Hi,
    Thanks :)
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Ok, I added “float: left;” to the icon, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Comments and social share buttons under blog #980522

    Hi,
    To change to content of the text, please try the Say What Plugin
    Try adding the text you would like to replace, and your new text, and use ‘avia_framework’ as the Text Domain. This screenshot shows a example.
    setting_breadcrum

    Best regards,
    Mike

    in reply to: Menu font colours #980519

    Hi,
    It looks like your css was not updating, I enabled the css file merging, and then disabled it again, and it seems to have solved the header color issue. I still recommend using the css to set the sub-menu colors though.

    Best regards,
    Mike

    in reply to: Volumenlizenz Anfrage #980491

    Hey Pascal König,
    Danke, dass du dich ausgesucht hast,
    Leider, da Enfold ausschließlich bei Theme Forest angeboten wird, besagt unser Vertrag mit ihnen, dass wir Lizenzen nicht direkt verkaufen können oder Rabatte anbieten, wenn sie nicht öffentlich zugänglich sind.
    Wir bieten jedoch von Zeit zu Zeit öffentliche Rabatte an. Bitte melden Sie sich für unseren Newsletter an, um über unseren nächsten Rabatt informiert zu werden.
    Wir wünschen Ihnen viel Erfolg und danken Ihnen für Ihr Interesse an Enfold.

    ————————-

    Thank you for reaching out,
    Unfortunately, since Enfold is offered exclusively at Theme Forest, our contract with them says we can not sell licenses directly, or offer discounts unless it is open to the public.
    We do however offer public discounts from time to time, please signup for our newsletter to be notified of our next discount.
    We wish you great success, and thank you for your interest in Enfold.

    Best regards,
    Mike

    in reply to: How to override the #top tag #980369

    Hey laptophobo,
    If the section has the ID #offsite-sec with the cells inside,
    then it’s probably going to be:
    .responsive #top #wrap_all #offsite-sec .av-flex-cells .no_margin
    if this doesn’t help then please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

Viewing 30 posts - 25,921 through 25,950 (of 34,339 total)