Forum Replies Created

Viewing 30 posts - 27,841 through 27,870 (of 34,601 total)
  • Author
    Posts
  • in reply to: The events calendar and Masonry sorting #942046

    Hi,
    OK, I found that on the homepage, the masonry element was set to only show 4 items, I changed it to all. Please check that the function is now working.

    Best regards,
    Mike

    in reply to: Question about Enfold #942045

    Hey Leah Martinez,
    In this situation, the best course of action would be to purchase a new license at Theme Forest Each license is good for one domain, so if your main site is my-domain.com & your shop is shop.my-domain.com you will be fine.

    Best regards,
    Mike

    in reply to: Combo Widget – how to limit to certain categorys #942041

    Hey pixopolis2222,
    Looks like you will need to edit core files to do this, please see: https://kriesi.at/support/topic/remove-category-from-enfold-combo-widget/

    Best regards,
    Mike

    in reply to: Font size of sub menu under Mega Menu #942039

    Hi,
    Try adding the css in to WordPress > Customize > Additional CSS

    #top #header .avia_mega_div .mega_menu_title a {
      font-size: 20px!important; 
    }

    Best regards,
    Mike

    Hi,
    Try to update manually via FTP: https://vimeo.com/67209750
    Or: http://kriesi.at/archives/the-complete-guide-to-updating-enfold
    ensure you remove the enfold folder via FTP and then upload the new one, so as to not leave any old files behind.

    Best regards,
    Mike

    in reply to: The events calendar and Masonry sorting #942036

    Hi,
    Well, just a thought. Ok so can you explain what changed when your function stopped working, had you updated Enfold or the Events calendar? Perhaps one of the terms has changed, I wonder if downgrading one or the other would get it working again so we can isolate the which term changed
    Have you tried disabling your plugins?

    Best regards,
    Mike

    in reply to: How to change the font of the title subheading. #942030

    Hi,
    Try this code in the General Styling > Quick CSS field:

    h6.av-special-heading-tag {padding-bottom: 0px !important;}
    .av-subheading {margin-top: 0px !important;}

    Best regards,
    Mike

    in reply to: Loading time #942028

    Hi,
    @WPTurnedUp: nice write ups, thanks for sharing.
    @CW: 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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Says 1 plugin update needed but all already updated? #942025

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Enfold Version 4.2.6 Printing CSS Issues in Firefox #942024

    Hi,
    Firefox has this printing limitation, which is a known issue, but on the firefox support forums they advise to take screenshots or use Firefox Add-ons. This will not help your visitors, but something we can’t force either.
    Chrome is also not printing the second page, but this is because the print.css has many elements, such as the footer, that are set to display:none
    please see \wp-content\themes\enfold\css\print.css
    Some suggest the Print-O-Matic plugin as a work around.

    Best regards,
    Mike

    in reply to: Custom blog post template #942015

    Hi,
    For post titles, when using the advanced layout builder, you can create a shortcode to display the title, which will automatically update. Please see this solution.
    Enfold templates are to save element layouts that you may use often so you can use them again, but they do not update previous posts, pages, or content.
    Think of them as saving the elements in your clipboard, and once you paste them you still need to edit the content for the post, or they would all look the same.
    If you are only changing colors, then css would be your best solution.

    Best regards,
    Mike

    in reply to: The events calendar and Masonry sorting #942006

    Hey jjsabatino,
    I logged in but I don’t see the above code in your functions.php, have you tried adding it back in?

    Best regards,
    Mike

    in reply to: How to setup the Column animation speed or duration ? #942005

    Hey ikiyamay,
    Please try adding this css to WordPress > Customize > Additional CSS:

    .avia_transform .avia_start_delayed_animation.left-to-right {
        -webkit-animation: avia-ltr 1.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
        animation: avia-ltr 1.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; 
    }

    The built in time is: 0.8s I changed to 1.8s, feel free to adjust to suit.
    If this doesn’t work please Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: smartphone sideways view messed up #942001

    Hey zohar2014,
    Sorry, I was unable to reproduce with a Android phone, or with Chrome developer tools. Please see this video.
    Are you using a iPhone?

    Best regards,
    Mike

    in reply to: Reduce size of the socket line & title line high #941992

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Mailchimp Pop-Up code breaking site #941986

    Hi,
    Ok I was able to login, the password had a curly quote :)
    I created the mailchimp popup that automatically opens after 5 seconds on the popup-test page, please see link in the Private Content area.
    First I created the popup box using this tutorial
    Then I modified the script from the tutorial to open the popup 5 seconds after page load and added it to the same code block as the popup:

    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('.open-popup-link').magnificPopup({
    	  type:'inline',
    	  midClick: true
    	});
    });
    
    (function($){
        $(window).load(function() {
            setTimeout(function() {
           $('a.open-popup-link').trigger('click'); 
            }, 5000);    
        });
    })(jQuery);
    </script>

    Please check, if you like it, copy the code block to a new code block on any page you want it to work on.
    I have tested it on your home page and it works without braking the video or other elements.

    Best regards,
    Mike

    in reply to: Loading time #941940

    Hi,
    Ok, I also tested in Firefox with caching off, and found your page loaded in about 3.x seconds, the two tests gave about 3.5 seconds, which is pretty good for a site using a slider and page animations.
    Lets take a look at some of the results, the poorest score “Defer parsing of JavaScript” is because they recommend loading the js in the footer, yet the issue is that Enfold needs to load a few js in the header for them to work, most of the js is loaded in the footer as recommended.
    The next one “Optimize images” can be definitely improved on with a plugin such as EWWW Image Optimizer The tool will offer to do them all for you, but I recommend just doing the 4 on your report to start so you can save your credits for the future.
    Those are the only two results below a “B” the next one “Minify JavaScript” is one you should not try to change, Minifying JavaScript into one file will brake some of the scripts, most of the scripts are minifyed individually.
    Once your site is finished and not on a testing server, your next step to a faster site would be to use a CDN, please see this article.

    Best regards,
    Mike

    in reply to: Responsive Layer Slider #941917

    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
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Demo Import doesn´t work #941791

    Hi,
    is there anything else we can assist with on this, or shall we close this?

    Best regards,
    Mike

    in reply to: Child Theme after Site Complete #941790

    Hey Eleina_Shinn,
    Yes, this is very easy to do, please read: Read about using a Child Theme

    Best regards,
    Mike

    in reply to: Layout Editor not loading after WP undate to 4.9.5 #941789

    Hey marboo,
    I see you are using Enfold v3.7.1, please update to v4.2.6 and ensure your webhost has PHP v7 installed.

    Best regards,
    Mike

    in reply to: Says 1 plugin update needed but all already updated? #941788

    Hey gb,
    It is most likely the layerslider. We always add the current layerslider to our there updates, but the layerslider team seems to release new versions very often. You can rest assured that it is nothing to worry about.
    The drop-in is most likely from your webhost to help with the installing of WordPress, we see this often.

    Best regards,
    Mike

    in reply to: Add Text and Images over Fullscreen Slider #941787

    Hey WEP_Management_Inc,
    It looks like you are nearly there in your design, but you may be running out of options with the “Full screen slider”, perhaps you should try the layerslider so you can add the top text to the slider?
    To create the social share buttons at the bottom, please try coping the shortcode of the “social share” element add to your layerslider
    and use the css on this page ,look about half way down for the round social share buttons.

    Best regards,
    Mike

    in reply to: Child theme #941786

    Hi,
    Glad to hear you want to use a child theme, you will find this is a good move once you decide to make any custom modifications to the theme.
    To answer your question, adding a child theme will not have any impact on your site.
    You will want to take a couple of steps, 1: please export your theme settings at: Enfold Theme Options > Import/Export > Export Theme Settings File
    2: once you install your child theme, please import your parent theme settings at:
    Enfold Theme Options > Import/Export > Import Settings from your Parent Theme
    Then you’ll need to re-set your menu options and any other WordPress theme specific options that are tied to which theme you are using.
    Finally, sometimes it is necessary to save your theme options one more time, to encourage the settings to be saved and activated in the /wp-content/uploads/dynamic_avia/ folder.

    Best regards,
    Mike

    in reply to: Responsive Layer Slider #941784

    Hey CW,
    I removed the visibly settings in the layerslider, and named the logo “desktoph1”.
    Then I added the css:

    @media only screen and (min-width: 1000px) { 
    #desktoph1 {display:none !important;}
    }
    @media only screen and (max-width: 999px) { 
    #layer_slider_1 {display:none !important;}
    }

    To hide the slider under 999px, and hide the logo over 1000px
    Please clear any cache plugin and your browser cache.

    Best regards,
    Mike

    in reply to: Cache Minify Plugins #941782

    Hi,
    Is there anything else we can assist with on this issue, or shall we close this then?

    Best regards,
    Mike

    in reply to: Mailchimp Pop-Up code breaking site #941780

    Hi,
    Thanks, I tried the new url and login, but I still received and error, please check.
    To remove the masonry animation please try:

    .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
    -webkit-animation: none!important; 
    animation: none!important; 
    }

    Best regards,
    Mike

    in reply to: Loading time #941778

    Hey CW,
    Please review the test results for your page here
    Are you using a caching plugin, such as WP Fastest Cache ?

    Best regards,
    Mike

    in reply to: How to change the font of the title subheading. #941777

    Hey DROR,
    Try this code in the General Styling > Quick CSS field:

    .av-subheading.av-subheading_below.av_custom_color p {
    font-family: 'Reforma Light'!important;
        font-weight: 300!important;
    }

    Best regards,
    Mike

    in reply to: Enfold2017 Demo – import don´t work #941770

    Hi,
    Glad we were able to help, The issue is Strato webhost, they seem to be blocking our IP.
    We will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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

Viewing 30 posts - 27,841 through 27,870 (of 34,601 total)