Forum Replies Created

Viewing 30 posts - 11,881 through 11,910 (of 34,988 total)
  • Author
    Posts
  • in reply to: all text (blocks) have [av_ codes in them #1352306

    Hi,
    Thanks for the screenshots, is there a possibility that the person who previously built this site in 2014 had added the shortcodes in the text elements using the Shortcode Wand from the Classic Editor?
    I have seen some sites where people have done this and everything works fine on the frontend, it just looks odd in the backend.
    Unfortunately, there is not an automatic way to convert these hybrid pages to strictly ALB pages, but if you want to manually adjust these you could Enable the Avia Layout Builder Debugger to do so.
    I recommend saving plain text copies of the full page shortcode just in case you somehow brake the shortcode, don’t depend on the revisions.

    Best regards,
    Mike

    in reply to: Missing sliding images since Enfold theme update #1352296

    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: menu burger color #1352294

    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: Footer only shows default version after update #1352232

    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: Hiding the date and author of posts #1352230

    Hi,
    Glad Rikard 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: Text disappears in the background #1352224

    Hi,
    Glad to hear, if the layout was the same then you could use classes to achieve this, but your new page is not the same.
    Are your additional pages going to use a grid element like the first page or a color section like this one?
    On the first page the following element was a color section, on the new page it is two 1/2 columns, can you place these columns in a color section?

    Best regards,
    Mike

    in reply to: Product slider slide transition #1352220

    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: Add footer content to all product category pages #1352219

    Hi,
    Glad to hear, I Enabled the Avia Layout Builder Debugger and copied the section shortcode.
    You can also use the WordPress Classic Editor shortcode wand in a default post or page to create an element and the shortcode will show in the Classic Editor for you to copy.

    Note that full-width elements, such as the color section don’t always behave when nested in other elements such as widgets, so in the widget you see that I removed the color section container and added an html div to take it’s place.

    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Add Search Icon On Mobile #1352217

    Hi,
    Glad to hear, please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Responsive Is Broken #1352178

    Hi,
    Unfortunately, we don’t have a way to disable Enfold mobile styles globally, it would require editing the stylesheet of each element manually and would require a lot of time for a plugin that we don’t support or recommend.
    Sorry but this is beyond our support scope.

    Best regards,
    Mike

    in reply to: Add Search Icon On Mobile #1352177

    Hey navindesigns,
    Thank you for your patience and login, in your function above I replaced the item class noMobile with menu-item-search-mobile
    Then I added this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_burger_search_mobile() { ?>
        <script>
    (function($){
    $('#avia-menu').one('click', function(){
    jQuery('#menu-item-search.menu-item-search-mobile').clone().wrapInner('<div class="burger_search_mobile"/>').children(0).unwrap().prependTo('#av-burger-menu-ul');
    });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_burger_search_mobile');

    and this css to your child theme stylesheet:

    #av-burger-menu-ul > .burger_search_mobile {
    	padding-left: 20px;
    }
    .avia_mobile #top #av-burger-menu-ul > .burger_search_mobile #searchsubmit {
        height: 100%;
    }

    Now your search shows at the top of your mobile menu:
    2022-05-18_001.jpg
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: WPML changes font & color #1352173

    Hi,
    Thanks for the screenshots, try adding this css to your EN Quick CSS field in the theme options:
    Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    #top #wrap_all .avia-slideshow .av-slideshow-caption.av-l2g3x00n-d3eb9544f049e85bc61e9272b95ae46b__0 .avia-caption-title {
        font-size: 58px;
        color: #fff;
    }
    #top .avia-slideshow .av-slideshow-caption.av-l2g3x00n-d3eb9544f049e85bc61e9272b95ae46b__0 .avia-caption-content p {
        font-size: 28px;
    }

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

    Best regards,
    Mike

    Hi,
    Glad Rikard 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: Enfold update not showing #1352137

    Hi,
    Glad Rikard 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: disable maintenance mode automatically #1352136

    Hey olasne,
    Thank you for your patience but this feature is not available as the maintenance mode is currently designed, you may be able to find a Coming Soon Countdown plugin that will automatically disable, there are quite a few of them to check, but I have not tried any of these.

    Best regards,
    Mike

    in reply to: Sticky header covers content of destination anchor #1352134

    Hi,
    Glad to hear, try this instead

    function custom_offset_script_with_width() { ?>
        <script>
    (function($) {
      $('a[href*=#]:not([href=#])').click(function() {
      	var width = $(window).width()
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') 
    && location.hostname == this.hostname) {
    
          var target = $(this.hash);
          target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
          if (target.length) {
          	if ($(window).width() < 768) {
            $('html,body').animate({
              scrollTop: target.offset().top - 10 //offsets for fixed header
            }, 1000);
            return false;
          } else {
          	$('html,body').animate({
              scrollTop: target.offset().top - 80 //offsets for fixed header
            }, 1000);
            return false;
          }
          } 
        }
      });
      //Executed on page load with URL containing an anchor tag.
      if($(location.href.split("#")[1])) {
          var target = $('#'+location.href.split("#")[1]);
          if (target.length) {
          	if ($(window).width() < 768) {
            $('html,body').animate({
              scrollTop: target.offset().top - 10 //offset height of header here too.
            }, 1000);
            return false;
          } else {
          	$('html,body').animate({
              scrollTop: target.offset().top - 80 //offset height of header here too.
            }, 1000);
            return false;
          }
          } 
        }
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_offset_script_with_width');

    Best regards,
    Mike

    Hi,
    Sorry, we were not able to help very well with this issue, but 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: Help for WordPress and Enfold upgrade #1352119

    Hi,
    Glad Rikard 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

    Hi,
    I believe you are referring to this setting, if so then no, there would not be a way to toggle this based on screen size.
    2022-05-17_001.jpg
    If this is not the setting you mean please include a screenshot of it, thanks.

    Best regards,
    Mike

    in reply to: Too big space on right side of main content #1352114

    Hi,
    Glad Nikko was 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: Hover Image Catalog #1352113

    Hi,
    Thanks for the screenshot and the login, I changed your hover css to this:

    a.av-catalogue-item:hover img {
    	transform: translateX(-3rem);
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, shall we close this then?

    Best regards,
    Mike

    in reply to: Theme Update doesn't work #1352073

    Hi,
    Glad Rikard 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: demo download don't work #1352070

    Hi,
    Sorry we don’t have this, the import file is a WordPress xml file, see our documentation on How to manually import a theme demo. You could import the demo on your localhost and export it’s SQL, but the duplicator plugin would also do this and include the images and be easier, I would recommend trying this method.

    Best regards,
    Mike

    in reply to: Footer/widgets not shown #1352011

    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

    Hi,
    Glad Rikard 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: Blog Grid Posts with left and right borders #1352008

    Hi,

    Try this css

    #main .changely-widget.avia_codeblock {
        height: 508px;
    }

    You won’t be able to change the background color because it’s in an iframe, it must be changed at the source.
    See the source link below, the larger background color is light gray.
    You could try making the iframe the exact size of the inner white background color of the iframe:

    #main .changely-widget.avia_codeblock {
        max-width: 568px;
        height: 474px;
        margin: auto;
    }

    Best regards,
    Mike

    in reply to: Blog Grid Posts with left and right borders #1351984

    Hi,
    I see that this is an iframe inside a code block, you could use this css:

    #main .avia_codeblock {
        height: 508px;
    }

    the first issue is that you should add a custom class to the code block element so this doesn’t effect other code blocks on other pages, add it like this:

    #main .custom-class .avia_codeblock {
        height: 508px;
    }

    the second issue is that this height is not dynamic so if the iframe height changes often you will want to guess what the tallest height might be and use that.
    With iframes you don’t have control of the inner content.
    You could try a javascript solution.

    Best regards,
    Mike

    Hi,
    Thanks for the link, the post author was having issues with the height, you are having problems with the width so this solution doesn’t apply to you.
    When you build the Hype element are you able to use position: relevant; for the inner containers? Or are you able to set brake points so the right hand text will be under the image?

    Best regards,
    Mike

    in reply to: Grid Row Element Not Filling Page Correctly #1351952

    Hi,
    Glad Rikard 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

Viewing 30 posts - 11,881 through 11,910 (of 34,988 total)