Forum Replies Created

Viewing 30 posts - 26,611 through 26,640 (of 34,558 total)
  • Author
    Posts
  • in reply to: Post Slider Customization – mobile version #970763

    Hi,
    Well I was not able to disable the swipe capability, but in my tests I was able to improve the swipe capability so that if you swipe though the next two sets of images they display correctly, and if launching the lightbox you can view all 12 images.
    Please replace the above css with this and clear your browser cache to test:

    @media only screen and (max-width: 767px) { 
    #top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-1.av_one_fourth,#top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-2.av_one_fourth,#top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-5.av_one_fourth,#top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-6.av_one_fourth,#top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-9.av_one_fourth,#top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-10.av_one_fourth {
        width: 50%!important; 
    
    }
    #top.home #portfolio article.slide-loop-3,#top.home #portfolio article.slide-loop-4,#top.home #portfolio article.slide-loop-7,#top.home #portfolio article.slide-loop-8,#top.home #portfolio article.slide-loop-11,#top.home #portfolio article.slide-loop-12 {
        display:none !important;
    }
    #top.home #portfolio .container {
        width: 100% !important; 
        max-width: 100%!important; 
    }
    #top.home #after_section_2 .container .content {
    padding-top: 0px !important;
    }
    }

    Best regards,
    Mike

    in reply to: Link in footer, and burger menu #970579

    Hi,
    I have added your social icons to your burger menu (thanks to @Ismael for the code), first I added this code to the end of your functions.php file in Appearance > Editor:

    // add social icons inside the mobile menu
    function ava_custom_script_mod_social(){
        ?>
        <script>
        (function($){
            var int = '';
            function a() {
                var isMobile	 = $('.av-burger-menu-main').css('display'),
                    htmlString   = $('#header_main .social_bookmarks').find('li a'),
                    mobileMenu   = $('.av-burger-overlay'),
                    socialString = [];
        
                    if(isMobile == 'none') return;
                    if($('.burger-social').length) clearInterval(int);
        
                    htmlString.each(function() {
                        var socialClass	= $(this).parent('li').attr('class'),
                                socialItems = $(this).wrap('<li class="'+ socialClass + ' av-active-burger-items burger-social"></div>').parent().unwrap();
                        socialString.push(socialItems);
                    });
        
                    $(socialString).each(function() {
                        $(this).appendTo('#av-burger-menu-ul');
                    });
            }
        
            $('#header').on('mousedown', '.av-main-nav-wrap', function() {
                int = setInterval(function() {
                    a();
                }, 500);
            });
        
        })(jQuery);
        </script>
        <?php
        }
        add_action('wp_footer', 'ava_custom_script_mod_social');

    then I added this code in the General Styling > Quick CSS field:

    #av-burger-menu-ul li.burger-social {
        float: left;
    }
    
    #av-burger-menu-ul li.burger-social a {
        padding: 10px !important;
        border-bottom: none !important;
    }
    
    #av-burger-menu-ul li.social_icon_1 {
     padding-left: 40px
    }

    result:
    2018-06-09_184748
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Post Slider Customization – mobile version #970549

    Hey kellyCraftMedia,
    How about making two of the images 50% wide only for mobile, and when they are clicked the slideshow opens:

    @media only screen and (max-width: 767px) { 
    #top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-1.av_one_fourth,#top.home #portfolio .avia-content-slider article.slide-entry.slide-loop-2.av_one_fourth {
        width: 50%!important;
    }
    #top.home #portfolio article.slide-loop-3,#top.home #portfolio article.slide-loop-4 {
        display:none !important;
    }
    #top.home #portfolio .container {
        width: 100% !important; 
        max-width: 100%!important; 
    }
    #top.home #after_section_2 .container .content {
    padding-top: 0px !important;
    }
    }

    Please see screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Full Screen Slider not showing in Edge #970528

    Hi,
    You are getting this error in Edge: ” SCRIPT14: A security problem occurred.” it seems to trace to jetpack.js
    If you are using the JetPack plugin, please disable and clear browser and plugin cache, to see if that helps.
    If this doesn’t help, Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Reverse columns order on the back-end #970515

    Hi,
    Your login has a third field “Google Authenticator Code” please disable or provide what we need to complete.
    It sounds like the RTL css has changed since v4.0.7, do you still have your copy of this version on your computer? Can you link to it via dropbox?

    Best regards,
    Mike

    in reply to: Layout changed completely after theme update #970512

    Hi,
    I believe I have fixed your issue, I changed the setting at: Enfold Theme Options > Blog layout >Blog Styling
    2018-06-09_133302
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I took a look at your site, but I was able to open your burger menu and use the ajax search.
    On the desktop I was able to use the ajax search.
    Please see screenshots in Private Content area.
    Has this been resolved?

    Best regards,
    Mike

    in reply to: How to have hosted by only on bottom of homepage #970501

    Hi,
    I believe this is what you are trying to achieve:
    2018-06-09_131044
    you can add your text and links to Enfold Theme Options > Footer > Copyright
    2018-06-09_131233

    Best regards,
    Mike

    in reply to: strange anchor menu behaviour #970498

    Hi,
    In the Private Content area I see your login url and user email address, but I don’t see the password. Please include so we can login.

    Best regards,
    Mike

    Hey Elena,
    The snippet above is not complete, please ensure your snippet contains the last line like this:

    function popup_inline() { ?>
    <script type="text/javascript">
    jQuery(window).load(function(){
    	jQuery('.open-popup-link').magnificPopup({
    	  type:'inline',
    	  midClick: true
    	});
    });
    </script>
    <?php }
    
    add_action('wp_head', 'popup_inline');

    If you do have the full snippet, and your console is giving the error “not recognized as a function” this could also be a js conflict, Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
    If this doesn’t solve and your popup box is showing when it should be hidden, please ensure the hidden div contains the class “mfp-hide”
    If none of this helps, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Enfold Audio Player #970484

    Hi,
    Yes it should be in the next update, per Günter.
    Unless there is anything else we can assist with this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Social share buttons after comments in blog posts? #970480

    Hi,
    If I understand correctly, you wish to have this element:
    2018-06-09_115429
    after the comment section in each blog post.
    I assume your client is currently using the default editor, so the element is automatically displaying after the post and before the comment section.
    In this case, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function move_share_box(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery( '#top.single-post .template-single-blog' ).each(function() {
    jQuery( this ).find( '.av-share-box' ).insertAfter( jQuery(this).find('.comment-entry.post-entry') );
    });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'move_share_box');

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

    
    #top.single-post .template-single-blog div.post_delimiter {display:none !important;}
    #top.single-post .template-single-blog div.av-share-box {margin-bottom: 30px !important;}
    #top.single-post .related_posts.av-related-style-full {padding-top: 30px !important;}

    If this doesn’t help, Can you please include a admin login in the private content area so we can adjust.

    Best regards,
    Mike

    in reply to: Align text under green 'check marks' #970475

    Hi,
    I added a custom class to your text element: “special-listpoints-green”
    2018-06-09_114152
    then replaced your icons with bullets, and added this css to your Quick CSS:

    /* special bullets green */
    .special-listpoints-green ul {
        list-style: none;
    }
    .special-listpoints-green li::before {
        content: "\e812";
        font-family: entypo-fontello;
        color: #3ec607;
        position: relative;
        padding-right: 11px;
        margin-left: -20px;
    }

    2018-06-09_114047
    Thanks to @Guenni007 for the solution

    Best regards,
    Mike

    in reply to: Red cross as a bullet #970463

    Hi,
    Thanks to @Guenni007 I was able to easily add a custom class to your text element: “special-listpoints”
    2018-06-09_111335
    then add this css to your Quick CSS:

    /* special bullets */
    .special-listpoints ul {
        list-style: none;
    }
    .special-listpoints li::before {
        content: "\e816";
        font-family: entypo-fontello;
        color: #f00;
        position: relative;
        padding-right: 11px;
        margin-left: -20px;
    }

    for the result:
    2018-06-09_111108
    in the url in the Private Content area.

    Best regards,
    Mike

    in reply to: Problems with fonts and images on internet explorer #970446

    Hi,
    While investigating the IE issues, I found that you had 3 hidden images under the 3 profile images, that were only visible with the debugger on. I’m not sure how they were put there, but I cleared them and the page seems to be correct now.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: RTL menu to the right #970431

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

    @media only screen and (max-width: 989px) {
    .responsive.html_logo_right #top #wrap_all .av_mobile_menu_tablet .main_menu {
        top: 0 !important; 
        left: 0 !important; 
        right: auto !important; 
    }
    }
    @media only screen and (max-width: 989px) {
    .responsive #top .logo {
        float: right !important;
        width: auto !important; 
    }
    }

    If this doesn’t help, Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: RTL menu to the right #970400

    Hi,
    Sorry for the late reply, thanks for your patience.
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top.rtl .logo {
        float: left !important; 
        width: auto !important; 
    }
    }

    Best regards,
    Mike

    Hey LesleyJean,
    Sorry for the late reply, I found that creating a test page “blog test” creates a blog element that works correctly, so I wanted to Enable the Avia Layout Builder Debug but your functions.php is not allowing changes. Please edit the functions.php via FTP to add the debugging code so we can continue we our tests. If you don’t feel comfortable doing this, please include ftp access, in the Private Content area, for us to make the changes for you.
    Please note that I had deactivated your plugins for a few minutes for testing, so you may need to reconnect your JetPack plugin to your JetPack account.

    Best regards,
    Mike

    Hey connect4consulting,
    Sorry for the late reply. I have viewed the scroll down arrows, but they seem aligned for all of the screen sizes I checked.
    Has this been resolved?
    2018-06-08_233526

    Best regards,
    Mike

    Hey elsadenmark,
    Sorry for the late reply, I was able to login but I believe you have removed the tab section in question.
    If you are still interested in working on this please recreate the tab section and we will help align the image with the tab title.

    Best regards,
    Mike

    in reply to: Background Image in color section on Mobilephones #970249

    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 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: Space between columns (ALB) #970247

    Hi,
    We will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation 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 2017 Demo Import: Site doesn't look like Demo #970245

    Hi,
    We will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Help me rebuild elements from the Enfold 2017 demo #970244

    Hi,
    I would like to take a closer look at the backend. Please open a new thread and include your admin login in the Private Content area, since this is not your thread your login info will not be private here.
    Then post a link to the new thread here so I can find it easier, thanks.

    Best regards,
    Mike

    in reply to: Contact form not sending auto-reply emails #970242

    Hi,

    @TEZ-CV
    I have tested @Ismael filters and find they work no my test server, please try for yourself and let us know if it works for you.
    This will be a better solution than the edited file I posted.

    @martin_e83
    please try the filter above and let us know if it works for you, after we have some feedback we can post to the dev team for their review. I would also suggest requesting this feature on the Enfold feature request form so others can vote on this to demonstrate it’s popularity. This is where the dev team looks for new features and improvements.

    Best regards,
    Mike

    in reply to: enfold mobile menu is not displaying #970084

    Hi,

    @Oceans247
    Please open a new thread so we can assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private.
    Also please temporary disable any cache plugin while we are assisting with this issue.
    I also see that you have a jQuery error in “app.bundle.js” I don’t believe this is the cause, but you may wish to look at this because it could cause unexpected errors elsewhere. “app.bundle.js” is not a part of Enfold so I assume it is a custom script?

    Best regards,
    Mike

    Hi,
    Sorry I forgot to remove “show-mfp-title”, I was testing with it, but didn’t use it in the final solution.

    Best regards,
    Mike

    in reply to: Space between columns (ALB) #970064

    Hi,
    Glad Ismael was able to help, shall we will close this now?

    Best regards,
    Mike

    in reply to: enfold mobile menu is not displaying #970062

    Hi,
    Please try rebuilding your merged styles, to do this, please go to Enfold Theme Options > General Styling > Quick CSS field and enter a blank space in the Quick CSS to enable the “Save all changes” button, then save.
    If this doesn’t help, Can you please include a admin login in the private content area so we can take a closer look, the login posted earlier didn’t work for me.

    Best regards,
    Mike

    in reply to: Help me rebuild elements from the Enfold 2017 demo #970060

    Hi,
    Sorry I forgot to tell you that this code goes in the Avia Layout Builder Debug field, not in a text block element.
    Try creating a new blank test page and Enable Avia Layout Builder Debug then add the code above and save the test page.
    This will help you see how the element was created and the settings. Then you can use the advanced layout builder to recreate on your actual page.

    Best regards,
    Mike

Viewing 30 posts - 26,611 through 26,640 (of 34,558 total)