Forum Replies Created

Viewing 30 posts - 11,341 through 11,370 (of 35,067 total)
  • Author
    Posts
  • in reply to: Critical Issue and Clashes #1358578

    Hey Daviddjh,
    Thanks for the link to your site, but it sounds like the first error you post about only occurs in the backend, so please include an admin login in the Private Content area and a test page/order we can try on and a screencast of the steps to create the error so we can try.
    My question is did this used to work and then suddenly not work? Perhaps a new plugin (MyWorks) was added and now you see the error?
    have you tried disabling your plugins to see if the error is resolved?

    Let’s look at one issue at a time, but is this the MyWorks plugin you are referring to?

    Best regards,
    Mike

    in reply to: Menu link description (subtext) is not showing #1358577

    Hey drzatcodcan,
    Please link to your site so we can check.

    Best regards,
    Mike

    in reply to: Enfold not loading styles – CSS Problems #1358576

    Hi,
    Thanks for the login to your site, on your /service-center/ page in your screenshot above I found that the wrong color showing (a bright blue) was the default browser user agent color, so no setting seemed to be applied from the Enfold Theme Options ▸ Advanced Styling
    When I added the color and font size to your child theme stylesheet in your current .av-main-nav > li > a rule:

    .av-main-nav > li > a {
        line-height: 35px!important;
        height: 35px!important;
    	color: #00315c;
    	font-size: 17px; 
      }

    it worked correctly, so this points to your child theme stylesheet working but not the theme Enfold Theme Options ▸ Advanced Styling
    I see in your WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server both of your PHP memory limit & Max input time are negative values:
    2022-07-16_004.jpg
    typically I would expect to see positive values:
    2022-07-16_005.jpg
    So from your post above it sounds like everything was working fine until recently, so did you just update to PHP v8, if so it looks like the PHP setting are not the same for your previously PHP version, probably 7.4 and the new v8 on your server, try going back to v7.4 to test, and if that works try adjusting them to match.
    If you didn’t change the PHP version since the error, then did you make any changes with the better search replace plugin and then noticed the error? This plugin is very powerful and can make serious unexpected changes, and has no fall back option.
    If this is true, do you have a pre plugin server backup? You might need to use it to correct, I’m not sure.
    If you don’t have a backup then you could add the css needed to correct your menu in your child theme stylesheet and not rely on the Enfold Theme Options ▸ Advanced Styling options.
    I have not seen a case of the Advanced Styling not working and I don’t see any related errors?

    Best regards,
    Mike

    in reply to: demo import #1358573

    Hi,
    Thanks for the login to your site, what web host are you using?
    I see in your WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server you have a negative number: Max input time -1, typically this is set to a positive 180.
    2022-07-16_001.jpg
    This makes me think that you are using OVH hosting which disables the PHP set_time_limit() function on their sites. If you are not using OVH hosting please ask your web host to change the Max input time to 180.
    I also note that it looks like your web host is deferring the javascript loading before the theme, because the javascript options are not showing in the Enfold Theme Options ▸ Performance ▸ Change WordPress Defaults, these are the options you have:
    2022-07-16_002.jpg
    this is what you should see:
    2022-07-16_003.jpg
    Please ask your web host to enable the WordPress defaults for jQuery.
    After correcting these two server issues try importing the demo again.
    If this still doesn’t work then try the manual import as in our documentation

    Best regards,
    Mike

    in reply to: Table Layout #1358564

    Hi,
    Thanks for your question, in order to make your heading rows span across multiple columns the table would use the colspan attribute, unfortunately, the Enfold table element doesn’t offer this feature and considering that you are also looking for advanced fixed columns and rows when scrolling I would recommend looking for a table plugin that offers these features.
    I did find a stackoverflow example: Set colspan dynamically with jQuery to use as a base to try this with our table element, but please note that it will not work for the mobile table view.
    The script works by removing the empty cells and adding the colspan attribute to the first cell with text, also the very first cell is ignored.
    2022-07-15_007.jpg
    the result:
    2022-07-15_008.jpg
    If you want to try this add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_colspan_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
       $('#colspantest .avia-heading-row').each(function() {
        var tr = this;
        var counter = 0;
        var strLookupText = '';
        $('th', tr).each(function(index, value) {
          var th = jQuery(this);
    
          if ((th.text() == strLookupText) || (th.text() == "")) {
            counter++;
            th.prev().attr('colSpan', '' + parseInt(counter + 1,10) + '').css({textAlign : 'center'});
            th.remove();
          }
          else {
            counter = 0;
          }
          strLookupText = th.text();
        });
      });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_colspan_script');

    and add the custom ID colspantest to the table element

    Best regards,
    Mike

    in reply to: conflict styling datepicker and gravity forms #1358562

    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

    Hey sky19er,
    Thank you for your question, I did a quick test for the gallery element, and when I add “PhD” to a image title in the media library it doesn’t seem to change the case in the image title:
    2022-07-15_003.jpg
    the results:
    2022-07-15_004.jpg
    I also tested editing the attachment details in the gallery element:
    2022-07-15_006.jpg
    and the results:
    2022-07-15_005.jpg
    so I don’t think that WordPress or Enfold are changing the case by default, perhaps it another script or plugin?
    Is this how you are adding the titles?

    Best regards,
    Mike

    in reply to: Adding Shadow to Top Of Layout Box #1358560

    Hi,
    Thanks for your feedback, I made an error, the box-shadow I posted above was for inset which shows the shadow on the inside of the element:
    box-shadow: 0 10px 20px rgb(0 0 0 / 20%) inset;
    you would want this instead:
    box-shadow: 0 10px 20px rgb(0 0 0 / 20%);
    I tested this on your homepage, for the full width slider it worked correctly, but for the color section “Our Service” it did not because there is another color section below it with a background color.
    So I added z-index to the css and this solved, I thought the 20% color in the box-shadow was a little light so I changed it to 40% so you can see it better, but feel free to adjust to suit.
    So now the custom class is below-shadow and the css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field is:

    .below-shadow {
        -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        -webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
        box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
        z-index: 1;
        position: relative;
    }

    please clear your browser cache and check the homepage and try to reproduce on your other pages.

    Best regards,
    Mike

    in reply to: Main Menu_ Line indicates the wrong side #1358498

    Hi,
    Thank you for your patience, I was not able to figure out what the conflict was and I was not able to recreate it on my test site, so in the interest in solving this for you I disabled the Main Menu Indicator in the Enfold Theme Options ▸ Advanced Styling ▸ Main Menu Indicator:
    2022-07-15_002.jpg
    and wrote this css for your site and added it to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #avia-menu .menu-item-top-level.current_page_parent .avia-menu-fx,
    #avia-menu .menu-item-top-level.current_page_item .avia-menu-fx {
    background-color: #a83331;
    color: #ffffff;
    border-color: #861110;
    opacity: 1;
    visibility: visible;
    }

    Now all of your main menu items have the correct Menu Indicator when on the page or it’s sub-menu item anchor.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Masonry Element — overaly color and opacity #1358489

    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 Elena,
    Thanks for your question, the issue was that your css for category links was using “display:block”:

    .custom-masonry-cat,
    .avia-builder-el-0 .av-post-metadata-category-link a {
    	 color: #719430;
    	 font-family: 'caveat';
    	 font-size: 16px;
    	 text-align: center;
         display: block;
         font-weight: 700;
         text-transform: uppercase;
    }

    I changed to “display:inline”

    .custom-masonry-cat,
    .avia-builder-el-0 .av-post-metadata-category-link a {
    	 color: #719430;
    	 font-family: 'caveat';
    	 font-size: 16px;
    	 text-align: center;
         display: inline;
         font-weight: 700;
         text-transform: uppercase;
    }

    and now the categories are in one line:
    2022-07-15_001.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Sticky header – possible to stop at a certain point #1358485

    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: Bookly Form 'Extras" #1358418

    Hi,
    Thank you for the link to your site and the screenshot, please try this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    #top #main .bookly-js-count-control ~ input[type="text"] {
    	display: inline-block;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    in reply to: Adding Shadow to Top Of Layout Box #1358417

    Hey ewebbdesigns,
    Thanks for the link to your example page, I see the box-shadow:
    2022-07-14_010.jpg
    this is the css that creates it:

    .partners {
        background-color: #FAFAFA;
        -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) inset;
        -webkit-box-shadow: 0 10px 20px rgb(0 0 0 / 20%) inset;
        box-shadow: 0 10px 20px rgb(0 0 0 / 20%) inset;
    }

    since you want it in so many different places I would recommend adding a custom class to each element that you want it to show below, but I can’t see your site because the link doesn’t go to it, so please link directly to it.
    Please see our documentation for adding a custom class and try adding the above css, if you need further help please include an admin login in the Private Content area and we can help will some step-by-step instructions for you to address all of your elements.

    Best regards,
    Mike

    in reply to: Hover FX for Portfolio Gallery #1358415

    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: Widgets Not Working #1358414

    Hi,
    Ok, I was just expecting your screenshot to show all of these listed instead of just the first three.
    We will leave this open to hear back from you.
    BTW, Envato does limit the number of times the token can be checked in a 24 hour period, there is no specific message involved, just try not to keep clicking the button a ton of times, try waiting a day.

    Best regards,
    Mike

    in reply to: Slider caption and arrows outside the images #1358410

    Hey Antonio,
    Thanks for the link to your site, I assume you mean the page “portfolio 1” it is the only one that I see arrows and titles on, so do you just want to hide them?
    Why don’t you just use the same settings as on the other two pages where the arrows and titles don’t show? Perhaps I’m misunderstanding?

    Best regards,
    Mike

    in reply to: Hover FX for Portfolio Gallery #1358408

    Hi,
    I don’t recall the last time this was requested, I didn’t have this in my bag of tricks I just whipped it up :)
    Assuming this helped, shall we close this then?

    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: Audio Player – incorrect display #1358406

    Hey Melanie,
    Thank you for your patience, are you using some custom css to change any of the player colors?
    Do you want all of the player colors to be the default or did you want some of the elements to be blue?
    I see the dark line, but all of the elements look off so I’m not sure if it’s a conflict or if it’s intentional.
    Please include an admin login in the Private Content area so we can examine it closer.

    Best regards,
    Mike

    in reply to: Avia layout builder contact form #1358403

    Hi,
    Please try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    .avia-form-success {
    	font-family: 'montserrat';
    	font-size: 14px;
    	background: transparent;
    }

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

    Best regards,
    Mike

    in reply to: Menu hoover change #1358401

    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: Hello I need to install Travel demo without woocommerce #1358400

    Hi,
    Please try the theme setting file linked below.
    After importing it you may need to deactivate Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and activate Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and then clear your browser cache and any caching plugins, and check.

    Best regards,
    Mike

    in reply to: Hover FX for Portfolio Gallery #1358398

    Hey Justin,
    Thanks for the links to your site, try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #av-sc-portfolio-1 .grid-image img:hover {
    animation: slowscalein 1s;
    animation-fill-mode: forwards;
    }
    #av-sc-portfolio-1 .grid-image img {
    animation: slowscaleout 1s;
    }
    @keyframes slowscalein {
      0% {
        transform: scale(1);
        -webkit-transform: scale(1);
      }
      100% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
      }
    }
    @keyframes slowscaleout {
      0% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
      }
      100% {
        transform: scale(1);
        -webkit-transform: scale(1);
      }
    }

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

    Best regards,
    Mike

    in reply to: Menu hoover change #1358396

    Hi,
    Please try using the Enfold Theme Options ▸ Advanced Styling ▸ Main Menu Indicator and set the option to zero to hide this:
    2022-07-14_009.jpg
    Or try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    #header.header_color .avia-menu-fx {
    	display: none;
    }

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

    Best regards,
    Mike

    Hi,
    This was moved to a new tab called Typography and there is a toggle switch to see the option:
    2022-07-14_008.jpg
    Best regards,
    Mike

    Hey pnamroud,
    Thank you for your question, the header transparency option is a per page setting in the editor of each page, please look for the “Layout” admin sidebar, then Header visibility and transparency and choose No transparency
    2022-07-14_007.jpg

    Best regards,
    Mike

    in reply to: changes are saved when clicking "preview" #1358392

    Hi,
    Thanks for the feedback,
    I see that you have:
    Yoast SEO
    Yoast SEO Premium WPML SEO

    Did you try toggling between these, above you said “when we deactivate every plugin except for yoast and use Enfold, there is no issue” or if you only deactivate yoast there is no issue, so was that yoast or yoast premium, and does yoast and WPML SEO work together with Enfold?
    I ask because many people use yoast and WPML together, but you have many WPML addons and yoast premium, so I’m thinking there is a specific conflict.

    Best regards,
    Mike

    in reply to: Widgets Not Working #1358391

    Hi,
    I don’t believe you have the specific Token permissions needed, your screenshot only shows these permissions:
    Your purchases
    Your username
    Your email

    but you need all of these checked when you create the Token:
    2022-07-14_005.jpg

    Best regards,
    Mike

    in reply to: Fulldwidth Video, No Border #1358388

    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

Viewing 30 posts - 11,341 through 11,370 (of 35,067 total)