Forum Replies Created

Viewing 30 posts - 17,191 through 17,220 (of 35,026 total)
  • Author
    Posts
  • in reply to: Accordion does not function #1208959

    Hi,
    Thank you, I see that you have a “toggles.php” in your child theme and it looks like it is based on an older version, please try removing this file temporarily and save a copy of it, so the updated version in the parent theme is used.
    Then clear your browser cache and check.
    Then check if this corrects the accordion.

    Best regards,
    Mike

    in reply to: Hide left sidebar on print page #1208951

    Hi,
    As I examine the print preview there is a page inside of a page, so try changing the margin in .template-page.content, which is your actual page, and not in @page which is the preview frame.

    Best regards,
    Mike

    in reply to: H1 Tag on Pages #1208949

    Hi,
    Sorry for the late reply, your image was not showing because it was replaced with a 1px X 1px image by your lazy load plugin, I turned it off and now your images show.
    Please clear your site & browser cache and check.

    Best regards,
    Mike

    in reply to: Comment attachments take you to 404 page #1208944

    Hi,
    I’m surprised how few plugins there are for this, I would have thought there would be more. It seems many were taken down from WordPress due to security risks, perhaps adding this function adds a vulnerability to your site?

    Best regards,
    Mike

    in reply to: Changing the size of timeline bullet symbols #1208938

    Hi,
    Hopefully, we will leave this open to hear back from you.

    Best regards,
    Mike

    in reply to: Sidebar menu drop down #1208937

    Hi,
    Sorry, the css was missing a rule, please try this css instead:

    li.menu-item-has-children > ul.sub-menu,li.menu-item-has-children > ul.sub-menu {
    	display: none !important; 
    }
    li.current_page_item.menu-item-has-children > ul.sub-menu,li.current_page_ancestor.menu-item-has-children > ul.sub-menu {
    	display: block !important; 
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Woocommerce product page and ajax product filter #1208931

    Hi,
    Sorry for the late reply, in the opening post you said that on other pages this was working, how are those pages created, with shortcode? Can you customize the shop page the same way?
    When I go to the pages “PE2020” & “Outlet” from your main menu, and choose the color white from your sidebar filter the items are sorted to show white items. But this doesn’t work on the “Shop” page, this is the error you mean correct?

    Best regards,
    Mike

    Hi,
    Thanks for the link, but on Android the options are showing for me, please see the screenshot in Private Content area.
    This could be a cache issue, have you tried clearing your browser cache on your device?

    Best regards,
    Mike

    in reply to: Accordion does not function #1208817

    Hi,
    Thank you, please see below.

    Best regards,
    Mike

    in reply to: Demo Not Importing #1208811

    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
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Hide left sidebar on print page #1208809

    Hi,
    I was able to remove the lines, but I can’t add your logo because the header is hidden. Here are some good articles for the “print media” css, Print Basics, Perfect Print Stylesheet
    2020-05-01_054655.png
    I also removed the background image:
    2020-05-01_054812.png
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media print{
    .template-page.content {
    width: 100%; 
    margin: 20px 0 0 0; 
    float: none;
    }
    h1 {
    	margin-top: 20px !important; 
    }
    .main_color span {
    border-color: transparent !important; 
    }
    .avia-icongrid-flipback {
    display: none !important; 
    }
    p {orphans: 3;}
    @page { margin: 0cm }
    }

    If you would like a message on the top of your print pages, try adding this css to your print media rule:

    .template-page.content:before {
    content: "\ Thank you for printing our article. We hope that some of our other articles can catch your eye as well.";
    color: #777 !important;
    font-size: 1em;
    padding: 30px 0;
    text-align: center !important;    
    }

    2020-05-01_055921.png

    Best regards,
    Mike

    in reply to: Move logo and header widget behind #main content #1208503

    Hi,
    Thank you, please also look in your child theme style.css for:

        #search-2,
        div.avia-search-tooltip {
            top: 30px !important;
            left: -30px;
        }

    and change to:

    
        div.avia-search-tooltip {
            top: 30px !important;
            left: -30px;
        }

    Then add this css:

    @media only screen and (min-width: 989px) { 
    #top #wrap_all #search-2 {
    	top: 70px !important; 
    	right: 12%;
    }
    #top #custom_html-3 {
    	top: 40px !important;
    	right: 12%;
    }
    #top #custom_html-3 .custom-html-widget {
    	height: 238px;
        width: 200px;
    }
    }
    @media only screen and (max-width: 988px) { 
    #top #wrap_all #search-2 {
        top: 30px !important;
        right: 20px;
    }
    #top #custom_html-3 {
    	top: 40px !important;
    	right: 2%;
    }
    #top #custom_html-3 .custom-html-widget {
    	height: 238px;
        width: 200px;
    }
    }
    @media only screen and (max-width: 767px) { 
    	.responsive #top .logo {
    		top: 0 !important; 
    	}
    	.logo a {
        top: 0px !important; 
    	}
    	#top #wrap_all #custom_html-3 {
    		top: 0px !important;
    	}
    }

    and this function in your functions.php:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      	var width = $(window).width()
      	if ((width >= 989)) {
    $( '#wrap_all' ).each(function() {
    $( this ).find( 'span.logo' ).insertAfter( $(this).find('div#main') );
    $("span.logo").css({ 'position': 'fixed','z-index': '0' });
    
    $( this ).find( 'div#search-2' ).insertAfter( $(this).find('div#main') );
    $("div#search-2").css({ 'position': 'fixed','z-index': '0' });
    
    $( this ).find( 'div#custom_html-3' ).insertAfter( $(this).find('div#main') );
    $("div#custom_html-3").css({ 'position': 'fixed','z-index': '0' });
    });
    } else {
    $( '#wrap_all' ).each(function() {
    $( this ).find( 'span.logo' ).insertAfter( $(this).find('div#main') );
    $("span.logo").css({ 'position': 'fixed','z-index': '501' });
    
    $( this ).find( 'div#search-2' ).insertAfter( $(this).find('div#main') );
    $("div#search-2").css({ 'position': 'fixed','z-index': '501' });
    
    $( this ).find( 'div#custom_html-3' ).insertAfter( $(this).find('div#main') );
    $("div#custom_html-3").css({ 'position': 'fixed','z-index': '501' });
    });	
    }
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Accordion does not function #1208480

    Hi,
    Thanks, but the link to your login page doesn’t work, please check.
    When we are able to login, can we disable plugins to test temporarily?

    Best regards,
    Mike

    in reply to: Sidebar menu drop down #1208155

    Hi,
    Thanks for the link, this sidebar menu doesn’t show the behavior you described, the sub-menu items don’t dropdown or show on click. When you click the parent item you go to the page, then the sub-menu is shown, but it doesn’t toggle when clicked.
    For this behavior, please remove the function above and only use this css:

    li.current_page_item.menu-item-has-children > ul.sub-menu,li.current_page_ancestor.menu-item-has-children > ul.sub-menu {
    	display: block !important; 
    }

    Best regards,
    Mike

    in reply to: Comment attachments take you to 404 page #1208147

    Hi,
    Thanks, it looks like you are getting a “Too many connections” warning from your database, it looks like it’s set to 1040 by the max_connections option in your database, if you think you are getting about that much traffic ask your webhost to increase it. This could also be from something else, perhaps the plugin?
    The debug log is only showing Notice & Warning but no errors, so I’m still unsure the cause of the 404, and why I’m not getting it on my install, unless it’s because I have no traffic on my localhost to give me the “Too many connections” warning? Earlier you wrote that you were not “married” to this plugin, did you find any similar plugins? Did you see this one?

    Best regards,
    Mike

    in reply to: Move logo and header widget behind #main content #1208127

    Hi,
    It seems like the function above is still active, please remove it and the css so I can write and test the new script.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, the script above is using the smooth option, it is looking “smooth” to me and not a “jump”, but if the “smooth” looks too fast try changing the number 500 in the code to 1500 and clear your site and browser cache a couple of times.
    Unfortunately, I had to target the bottom of the container because the top was already in view and the scroll wouldn’t work. I could try to scroll by pixels, perhaps 400px?
    If you would like to try this then please remove the above code so I can try again.

    Best regards,
    Mike

    in reply to: Sidebar menu drop down #1208109

    Hi,
    So, you want no hover effect?
    Please point to an example of this behavior on our demo, or any of these demos.

    Best regards,
    Mike

    in reply to: Demo Not Importing #1208104

    Hi,
    It looks like you didn’t set the token with the correct permissions, see the screenshot, and please see our documentation.

    Best regards,
    Mike

    in reply to: Can't import a Demo #1208101

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Import demo #1208100

    Hi,
    Glad to hear, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: ENFOLD SOCIAL ICONS SHOWING AS BOXES #1208099

    Hi,

    @thinkingsunshine
    did you see a “web.config” file? If so then try merging this code in it:

    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
     <system.webServer>
       <httpProtocol>
         <customHeaders>
           <add name="Access-Control-Allow-Origin" value="*" ></add>
         </customHeaders>
       </httpProtocol>
     </system.webServer>
    </configuration>

    If not then try asking your webhost for assistance in setting CORS.

    Best regards,
    Mike

    in reply to: Sidebar menu drop down #1207777

    Hi,
    To do this you will have to remove the links from the parent items, right now if you click a parent you go to a URL, you can’t have a second click event because the browser doesn’t know if you want to open the menu or go to the URL.
    I can override the first click event, but you will not be able to use those parent links.

    Best regards,
    Mike

    in reply to: H1 Tag on Pages #1207775

    Hi,
    Thanks for pointing this out @Guenni007

    Best regards,
    Mike

    in reply to: masonry portfolio layout #1207773

    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
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Logo center and split menu left right #1207772

    Hi,
    I have submitted a feature request for the dev team to review.

    Best regards,
    Mike

    in reply to: Sidebar menu drop down #1207767

    Hi,
    Sorry, you can’t add a click event to the parent item because it is already a link. But if you add this css to your Quick CSS the menu will be expanded when on the parent or sub pages.

    li.current_page_item.menu-item-has-children > ul.sub-menu,li.current_page_ancestor.menu-item-has-children > ul.sub-menu {
    	display: block !important; 
    }

    Best regards,
    Mike

    in reply to: Demo Not Importing #1207761

    Hi,
    Thank you, the import is complete, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Import demo #1207753

    Hi,
    Thank you for the screenshot, please try going to Enfold Theme Options > Select Your Editor and choose the option “Use WP Classic Editor” and save, then check your page again.

    Best regards,
    Mike

    in reply to: Move logo and header widget behind #main content #1207751

    Hi,
    Thank you for the feedback, please remove the function above, I will re-write it with the 990 brake point and remove the css so it can be adjusted with the other css.
    You can use media queries in your css to adjust for certain screen sizes,

    @media only screen and (min-width: 990px) and (max-width: 1400px) { 
    .your {
    css: here;
    }
    }

    Best regards,
    Mike

Viewing 30 posts - 17,191 through 17,220 (of 35,026 total)