Forum Replies Created

Viewing 30 posts - 7,951 through 7,980 (of 34,887 total)
  • Author
    Posts
  • 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: center social media icon in footer #1404344

    Hi,
    It looks like you have added the social icon in the copyright field, please remove and use the Social Icons toggle instead
    Enfold_Support_1755.jpeg
    Then try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #socket .social_bookmarks {
        float: none;
        margin: auto;
        position: relative;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    this is the expected result:
    Enfold_Support_1757.jpeg

    Best regards,
    Mike

    in reply to: Z-index for column in grid row, not working on Ipad #1404333

    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

    Hey Marina,
    Thanks for your patience and the link to your site, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function anchor_offset_with_slow_scroll() { ?>
      <script>
    (function($) {
      $('a[href*=#]:not([href=#])').click(function() {
        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) {
            $('html,body').animate({
              scrollTop: target.offset().top - 100 //offsets for fixed header
            }, 1000);
            return false;
          }
        }
      });
    }(jQuery));
    </script>
      <?php
    }
    add_action('wp_footer', 'anchor_offset_with_slow_scroll');

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Blog Style Business: ‘Read more’ + Square Gravatar #1404296

    Hi,
    Thanks for your patience and the link to your site, I see that you are using the WordPress ▸ Settings ▸ Reading ▸ Posts page to set the page that displays your blog posts, this uses the default WordPress blog loop and nothing added to the page “blog” will show.
    We recommend using the theme option Enfold Theme Options ▸ Where Do You Want To Display The Blog instead to select your “blog” page and then you can use the Advanced Layout Builder elements to show the blog.
    But first let’s decide how you want to show your posts, you can use a grid style or list style. There are other options within these options but this will be a start. I created two test pages below for you to review and check the backend, you can also read our Blog Element documentation

    Best regards,
    Mike

    in reply to: Gallery with Tabbed Content Slider #1404295

    Hi,
    Thanks for your patience, to show the portfolio title on hover try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .grid-content {
        margin-top: -54px;
    }
    .grid-entry:hover .grid-content {
        opacity: 1;
    }
    .grid-content {
        opacity: 0;
    }

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

    Best regards,
    Mike

    in reply to: center social media icon in footer #1404294

    Hey bemodesign,
    Thank you for the link to your site, do you want both the copyright and icon centered on separate lines or centered next to each other on the same line?

    Best regards,
    Mike

    in reply to: Icons Right with center menu #1404293

    Hey goldieslongbeach,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top nav .social_bookmarks {
        float: right;
    }

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

    Best regards,
    Mike

    in reply to: Small separator color #1404292

    Hey goldieslongbeach,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
    	  border-color: #ab966a;
    }

    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: Custom menu for products – style #1404291

    Hi,
    Oh I see, I was looking at the wrong menu. try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av_section_1 .flex_column.el_after_av_one_fourth.avia-builder-el-last {
    	z-index: 0;
    	position: relative;
    } 
    .menu-meniu-categorii-container ul.sub-menu {
        position: relative;
        left: 100%;
        top: -42px;
        height: 42px;
        background-color: #fff;
    }
    .menu-meniu-categorii-container .menu-item-has-children {
    	height: 42px;
    }
    .menu-meniu-categorii-container .menu-item-has-children:not(:hover) ul.sub-menu {
    display: none;
    }

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

    Best regards,
    Mike

    in reply to: Shortcode Contact Form in Mega Menu #1404290

    Hi,
    Thanks for the feedback, I see what you mean but I don’t see any errors in the browser console, will the form submit if it has no required fields?

    Best regards,
    Mike

    in reply to: Third Level Layout Elements Not Loading/Saving #1404288

    Hi,
    I see on your site when editing the element you get this error: /wp-admin/admin-ajax.php 404 (Not Found) I’m not sure what could be causing this, but you could try checking your webhost error logs.
    I’m unable to reproduce this on my test demo linked below as I don’t get this 404 error, I have included the screenshots of editing the element in the backend.

    Best regards,
    Mike

    in reply to: Duplicate ENFOLD parent themes in WP. #1404287

    Hi,
    In the screenshot it looks like you have added code into the Custom Class field of the button:
    Enfold_Support_1745.jpeg
    please don’t do this as this field is only for class names.
    We don’t have a way to add woocommerce shortcodes into buttons, instead add the shortcodes for woocommerce buttons into a code block element, or a text block, or if you are editing a product page using the Advanced Layout Builder use the Product Purchase Button element.

    Best regards,
    Mike

    Hi,
    Thanks for the link to your site, in your text element you have 8 extra div’s, perhaps you copied them in error, please go to the text element and click the text tab:
    Enfold_Support_1741.jpeg
    But please note that you have set the option at Enfold Theme Options ▸ Advanced Styling ▸ P to a font size 15px that will override the text element font size:
    Enfold_Support_1743.jpeg
    so you should remove this customization first so you can choose the font size of text elements individually.
    Or you could try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main.all_colors .avia_textblock p {
        font-size: 30px;
    }

    adjust the number to suit, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Cell/Column CSS Overwrite? #1404283

    Hi,
    Thanks for the link to your page, for the top grid row element you would try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #main .av-flex-cells .no_margin.av-zero-padding {
    display: block;
    margin: 0;
    height: auto !important;
    overflow: hidden;
    padding-left: 8% !important;
    padding-right: 8% !important;
    }
    }

    but the background image with the hat will also need this css:

    @media only screen and (max-width: 767px) {
    #av-layout-grid-1 > div.flex_cell.av-gridrow-cell.av_one_half.no_margin.avia-builder-el-4.el_after_av_cell_one_half.avia-builder-el-last.av-zero-padding > div > div > div {
    	    padding: 230px 8%;
    }
    }

    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Using shortcodes in template files breaks layout #1404281

    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,
    Thanks for your patience, the Dev Team writes since there isn’t a CSS selector we can use to check if Gravity Forms is active, we suggest the following workaround, add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function ava_gravity_forms_mod() {
    if ( is_plugin_active( 'gravityforms/gravityforms.php' ) ) {
        echo '<style>
    			#postdivrich_wrap.avia-hidden-editor #postdivrich {
    				visibility: visible;
    			}
    			#postdivrich_wrap.avia-hidden-editor #postdivrich .wp-editor-tabs,
    			#postdivrich_wrap.avia-hidden-editor #postdivrich #insert-media-button,
    			#postdivrich_wrap.avia-hidden-editor #postdivrich #wp-content-editor-container {
    				display: none;
    			}
    	    </style>';
      }
    }
    add_action('admin_head', 'ava_gravity_forms_mod');

    This is how it looks after adding this code to the functions.php file:
    228215372-e8528e6e-d57e-4300-91f2-9bd703d3ad90.png

    Best regards,
    Mike

    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: Video Slider Audio Doesn’t Turn On #1404234

    Hi,
    Thanks for your patience and the link to your site, unfortunately, some web browsers do not allow autoplay with sound, so while the video is set to autoplay with sound it can not override the browser defaults, so you can not force this. You could try using the built-in LayerSlider or another slider plugin which may have a “hack” around this but the browsers try to block this with each update.

    Best regards,
    Mike

    in reply to: I have problems with editing produt image #1404230

    Hey churchillalexander43,
    Thank you for your patience, please note that we don’t recommend using the Elementor builder plugin with the Enfold theme as it may conflict with the built-in Advanced Layout Builder (ALB).
    You can use the ALB to customize single product pages using the elements and you can see an example in our demo here and here.
    If you want to use the same layout for multiple products then you can save it as a template and apply it to each product.
    Enfold_Support_1737.jpeg
    Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I found that you were adding a page content shortcode in a text element in a tab section and it was showing an error that this shortcode is not supported there:
    Enfold_Support_1735.jpeg
    to correct I added a new standard editor page 7238 for page content shortcode linked below and this works correctly, please check.

    Best regards,
    Mike

    Hi,
    Sorry, I don’t see the link to your site in the Private Content area of the thread, in the forum, please include it and admin login so we can examine your issue.

    Best regards,
    Mike

    in reply to: Custom menu for products – style #1404158

    Hi,
    Thanks for your patience and the link to your site, I see that your Magazin menu item is the only one with a submenu and it is a mega menu, for this to slide up into view on hover try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #header .menu-item-mega-parent:hover .avia_mega_div {
        animation: slideup 1s;
        animation-fill-mode: forwards;
    }
    @keyframes slideup {
        0% { top: 200%; }
        100% { top: 100% }
    }

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

    Best regards,
    Mike

    in reply to: Cannot load demo content #1404106

    Hi,
    Thanks for the feedback they have already sent this message in the past, but unfortunately these are normal requests an each time we ask our host to unblock 20i IP address the attacks cause the server to block 20i IP again within a day. I recommend that in the future you use the above method to load the demo content to 20i servers.
    Glad we were able to help you with this situation, 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: Compatibility with Download Manager #1404073

    Hi,
    Thanks for the feedback, when you are in the media library using the list mode and click on the pdf title you land on the “Edit Media” page and this page doesn’t include the div ID “wpdm-media-access” and I’m not sure if it is meant to as I tested this in the default WordPress theme and the ID or button doesn’t show there either.
    Compared to when you are in the media library using the list mode and click on the pdf title you get a modal popup with the div ID.
    I found no dotlottie-player.js.map 404 error, typically source maps are the original non-minified version of a minified script as in some cases a browser may search for these in the same way some browsers search for a favicon without any links to one.

    Best regards,
    Mike

    in reply to: Mobile menu doens’t work #1404070

    Hi,
    I see that your menu links are now working, but I don’t understand your question about under category images, please explain further perhaps a screenshot would help.

    Best regards,
    Mike

    in reply to: Duplicate ENFOLD parent themes in WP. #1404068

    Hi,
    I understand that you have a favicon set in the theme settings, but you also have a favicon.ico in the root structure of your domain, this is the default location that many web browsers look for a favicon.ico so in many cases this will override the theme settings.
    Please try as I have advised.

    Best regards,
    Mike

    in reply to: Home Page Options (Splash page) #1404066

    Hi,
    Yes on the page in the backend in the admin panel under Layout ▸ Header visibility and transparency choose Hide Header on this page to hide the header.
    Or if you do want the header but no menu, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.page-id-4151 #avia-menu {
    	display: none;
    }

    and change the page ID to yours, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Home Page Options (Splash page) #1404055

    Hey schwabino,
    I agree with your idea, it is what I would recommend.

    Best regards,
    Mike

    in reply to: Mobile menu doens’t work #1404054

    Hey flexi_floxi,
    Try going to WordPress ▸ Dashboard ▸ Settings ▸ Permalink Settings ▸ Permalink structure and choose Post Name and then save the settings.
    If this doesn’t correct please include admin login in the Private Content area so we can investigate.

    Best regards,
    Mike

Viewing 30 posts - 7,951 through 7,980 (of 34,887 total)