Forum Replies Created

Viewing 30 posts - 7,231 through 7,260 (of 25,536 total)
  • Author
    Posts
  • in reply to: how to change the default font in enfold ? #1266217

    Hi Fabrice,

    Yes, just go to Enfold > General Styling > Fonts (tab), you should see the options to change the font and font size there.

    Best regards,
    Nikko

    in reply to: Various issues with website after updating to 4.7.6.4 #1266216

    Hi rehbiskup,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: WordPress 5.6 #1266215

    Hi Samuel,

    I have updated to WordPress 5.6 and checked both backend and frontend and all is working properly.
    However, I’m not sure if some plugins won’t break.
    I would suggest creating a staging site ( https://themeisle.com/blog/wordpress-staging-site/ ) then apply the updates there first and check if it breaks on your site.
    Even if it’s successful, make sure to still have a backup on your live site.

    Best regards,
    Nikko

    in reply to: Enfold Theme Options Not Working #1266200

    Hi mycubaguide,

    Thanks for giving us admin access.
    Please try to clear your browser cache.
    The Theme Options show properly on my end (screenshot in private content), I think the old js files are fetched on your end that’s causing the issue.

    Best regards,
    Nikko

    in reply to: Sliders and mobile burger menu not working #1266193

    Hi Court_2,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Problem with BlogPosting #1266192

    Hi PM,

    Thanks, I have checked on it and when you click over it to check the problem, I could see the image tag is properly supplied with the URL in the src attribute.
    The result seems good and the warning shows that it’s optional, it’s a bit puzzling why it has a warning on it.

    Best regards,
    Nikko

    in reply to: Grid Row – Columns 100% height #1266190

    Hi Alexander,

    Can you try to do the following instead:
    1. Edit the Grid Row, Advanced > Developer Settings > Custom CSS Class, then put this value: equal-columns (You can use this in multiple gridrows you want this to apply, just by doing step 1)
    2. Go to your child theme’s functions.php and add this code:

    function equal_height_columns(){
    ?>
    <script>
    (function () {
    	const wrapper = document.querySelector(".equal-columns");
    	const columns = wrapper.querySelectorAll(".av_one_full");
    	let max = 0;
    	
    	function adjustHeight(el) {
    	  el.style.height = max + "px";
    	}
    	
        function maxHeight(el) {
    		max = Math.max(max, el.clientHeight);
    	}
    	
    	columns.forEach(maxHeight);
    	columns.forEach(adjustHeight);
    })();
    </script>
    <?php
    }
    add_action('wp_footer', 'equal_height_columns');

    Best regards,
    Nikko

    in reply to: Cant' update to Version 4.7.6.4 #1265747

    Hi MarkusSchauma,

    Please backup your site first, then try to do the following steps:
    1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
    2. It should generate a new folder, open it and look for the enfold folder
    3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    4. Log in to WordPress as and Admin.
    5. Install and activate a maintenance plugin and put your site in Maintenance mode.
    6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    7. Click on the ADD NEW button.
    8. Click on the UPLOAD THEME button.
    9. Click BROWSE and choose enfold.zip file
    10. Click the INSTALL NOW button and switch to Enfold or your child theme.
    11. Remove the maintenance mode then deactivate and remove the maintenance plugin.

    Best regards,
    Nikko

    in reply to: Grid Row – Columns 100% height #1265721

    Hi Alexander,

    Can you try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    .page-id-2 #av-layout-grid-1 .av_one_half.avia-builder-el-first {
        background-color: rgba(237,28,139,0.07);
        background: linear-gradient(45deg,rgba(237,28,139,0.07),rgba(36,186,236,0.07));
        padding: 20px;
        border-radius: 3px;
    }
    
    .page-id-2 #av-layout-grid-1 .av_one_half.avia-builder-el-first .flex_column {
        background: none !important;
    }

    This code on is page-specific and also targets a specific point so it won’t affect any other elements.

    Best regards,
    Nikko

    Hi barabasone,

    I have updated the page and CSS, please try to clear the browser cache to fetch the new CSS and review the page.
    Let us know your feedback.

    Best regards,
    Nikko

    in reply to: Your Site is Experiencing a Technical Issue #1265708

    Hi c_srishti,

    The credentials you gave does not work, please check.

    ERROR: Incorrect username or password.

    Best regards,
    Nikko

    in reply to: URGENT! Enfold Avia Layout Builder Not Working / Failure #1265691

    Hi dnweil,

    Thanks, I was able to login.
    I have checked on the pages and I don’t see any error in the js console or the spinning wheel icon loading endlessly.
    Is this only specific the one or few pages? or is this already fixed?
    I have posted a screenshot in private content, showing that it’s loading properly on my end.

    Best regards,
    Nikko

    in reply to: Add icon next to shopping cart icon #1265688

    Hi fcp,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Website hangs while loading after Update #1265687

    Hi Indra,

    Try using WP Super Cache and check if it works better on your setup.

    Best regards,
    Nikko

    in reply to: URGENT! Enfold Avia Layout Builder Not Working / Failure #1265424

    Hey dnweil,

    I tried to login using the credentials you gave, however, it does not work and it shows this error:

    Unknown username. Check again or try your email address.

    Best regards,
    Nikko

    Hey buerogestaltet,

    Can you try adding this CSS code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:989px) {
      .responsive.html_mobile_menu_tablet #top #wrap_all #header {
        position: absolute !important;
        background-color: transparent !important;
      }
    
      .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a, 
      .responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container {
        height: 60px !important;
        line-height: 60px !important;
      }
    }

    Best regards,
    Nikko

    in reply to: Add icon next to shopping cart icon #1265402

    Hi fcp,

    I see, below this code that I gave before:

    $output .= "<li class='profile-item'><a href='#replace_with_link'><span ".av_icon_string('profile')."></span></a></li>";

    add this code (and replace the link):

    $output .= "<li class='wishlist-item'><a href='#replace_with_link'><span ".av_icon_string('wishlist')."></span></a></li>";

    And below this code:

    $icons['profile'] = array('font' =>'awesome-font', 'icon' => 'uf2bd'); 

    add:

    $icons['wishlist'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue807'); 

    Then add this CSS code:

    .responsive.html_bottom_nav_header #top #menu-item-profile {
        display: flex;
    }
    
    .responsive.html_bottom_nav_header #top #menu-item-profile li {
        margin-left: 8px;
    }

    Best regards,
    Nikko

    in reply to: Enfold editor contact form does not work #1265126

    Hi Kingu_PL,

    I have checked on the issue and I could not find out the reason however I could propose a workaround.
    I tried to create a test page and make it similar in everything (including the js code) and it works properly.
    The only difference is the original page throws a 403 error which is unexpected.
    The solution I could propose is to delete the original page then rename and change the permalink of the test page,adjust few settings.
    Hope this helps.

    Regards,
    Nikko

    in reply to: Add icon next to shopping cart icon #1265117

    Hi fcp,

    Are you still referring to the same site? (link in private content).
    I looked into functions.php and the code is not there.

    Best regards,
    Nikko

    in reply to: Website hangs while loading after Update #1265115

    Hi forgottensky,

    I wasn’t referring to that, I did see the problem but the reporting for errors is turned off but I don’t think it’s relevant anymore since the issue isn’t PHP.
    It’s a three-way conflict that I found and the involved parties are:
    1. Borlabs Cookie
    2. Humming Bird
    3. Enfold’s Javascript file merging and compression (in Enfold > Performance)
    if one of the three is disabled it works properly (if it has the following setup):
    1. Borlabs Cookie + Enfold’s Javascript file merging and compression enabled = (Hummingbird disabled) works properly
    2. Borlabs Cookie + Hummingbird = (Javascript file merging and compression disabled) works properly (this is the site’s current setup that I made)
    3. Hummingbird + Enfold’s Javascript file merging and compression enabled = (Borlabs Cookie disabled)

    For now, it’s setup #2 so Enfold’s optimization with js is disabled and hummingbird handles it.

    Best regards,
    Nikko

    Hi themepack,

    If it works properly when you test it in the frontend then it’s good since you are already following the element’s template.
    For suggestions, since it’s tied only with testimonials post type it becomes limited, I think you should be able to create a dropdown for so you can select other post types. :)

    Best regards,
    Nikko

    in reply to: headline higher #1264981

    Hi Talker77,

    Please try to replace this code:

    #top .flex_column .schongewussthalb .av-special-heading-tag {
        position: relative;
        top: -40px;
        background-color: #fff;
        padding: 0 15px!important;
        margin: 0 auto!important;
        display: inline-block;
    }

    with:

    #top .flex_column .schongewussthalb {
        top: -16px;
        left: 0;
        position: absolute;
    }
    
    #top .flex_column .schongewussthalb .av-special-heading-tag {
        background-color: #fff;
        padding: 0 15px!important;
        margin: 0 auto!important;
        display: inline-block;
    }
    
    #top .flex_column .schongewussthalb + .av_textblock_section .avia_textblock > p:first-child {
        margin-top: 0;
    }

    Best regards,
    Nikko

    Hi marlonvanwyhe,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: How to put a field from a post in post content element? #1264800

    Hi jeiceta,

    No worries, just let us know if you need assistance.

    Best regards,
    Nikko

    in reply to: Enfold editor contact form does not work #1264799

    Hi Kingu_PL,

    Thanks for giving us admin access.
    We are now investigating on the issue.

    Best regards,
    Nikko

    Hi marlonvanwyhe,

    Thanks for giving us the cPanel access.
    This is now fixed on your site, please check.
    We apologize, it’s a bit tough troubleshooting on your site since it goes:

    This site can’t be reached

    after some tests but when IP address is changed it can be accessed again.
    I have disabled ModSecurity on your site which helped resolved the issue.

    Best regards,
    Nikko

    in reply to: Enfold Backend looks different #1264608

    Hi Filipp,

    You’re welcome :)
    The animation is tied up with the Slideshow Transition with Fade transition the animation is similar with http://www.filippfuchs.de and with Slide sidewards its similar with http://www.wald-fuchs.com however there’s no option to select the type of animation from the captions.

    Best regards,
    Nikko

    in reply to: don't load custom.css in wp #1264601

    Hi Joan,

    You’re welcome :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Sliders and mobile burger menu not working #1264561

    Hi Court_2,

    There’s a js error showing in the web console.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( to be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Enfold editor contact form does not work #1264560

    Hi Kingu_PL,

    Can you post the password on private content? so any moderators can try to investigate the issue.

    Best regards,
    Nikko

Viewing 30 posts - 7,231 through 7,260 (of 25,536 total)