Forum Replies Created

Viewing 30 posts - 17,251 through 17,280 (of 35,074 total)
  • Author
    Posts
  • 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

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

    Hi,
    It sounds like you didn’t import the parent theme settings when you activated the child theme.
    2020-04-28_043032.md.png
    You can also try disabling or clearing your cache plugins, and disabling the Enfold Theme Options > Performance > JS & CSS file merging and compression and then clear your browser cache.
    To enable the shop cart icon in the menu, go to Enfold Theme Options > Shop Options > Header Shopping Cart Icon and choose “Always Display attached to the main menu”
    2020-04-28_045207.png

    Best regards,
    Mike

    in reply to: Anchor jumps too far in Chrome #1207506

    Hi,
    I believe that the page is going to the anchor but the page is not fully loaded yet, so when the page is finished loading the position of the scroll is not correct. This seems to help.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_scroll_script(){
      ?>
      <script>
    (function($) {
      $('a[href*="#"]:not([href="#"])').click(function() {
          var target = $(this.hash);
            $('html,body').stop().animate({
              scrollTop: target.offset().top - 90
            }, 'linear');   
      });    
    	if (location.hash){
        var id = $(location.hash);
    	}
    	$(window).load(function() {
      	if (location.hash){
        	$('html,body').animate({scrollTop: id.offset().top -90}, 'linear')
      	};
     	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_scroll_script');

    Please add this function and clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Demo Not Importing #1207489

    Hi,
    Sorry, we can’t control your webhost environment, but we can help, we will just need an admin login and FTP access to try a manual import to overcome your webhost’s issues.

    Best regards,
    Mike

    in reply to: Import demo #1207484

    Hi,
    Sorry, if you try to post a link to your site it didn’t work, please try again.
    Ok, you reset your site, go ahead and try to import the demo you want, if the error occurs again please take a screenshot and include a link to your site in the Private Content area so we can take a look.
    To add a screenshot please try using https://savvyify.com/img/ and pasting the image URL in your post.

    Best regards,
    Mike

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

    Hi,
    Glad to hear this helps some, but this was the only working solution I found that didn’t break the timeline, do you think you will be able to use this?

    Best regards,
    Mike

    in reply to: Disable double tap on Mobile Menu #1207482

    Hi,
    Glad to hear it is sorted out now, 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: Remove background colour on Construction demo #1207479

    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: Accordion Toggle – Selection/Highlight #1207427

    Hi,
    Sorry for the late reply and thanks for the screenshot. Unfortunately, I don’t see the focus ring on my device, but try this css to hide it on your device.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .main_color .toggler:focus {
      outline: 0 !important;  
      outline: 0 -webkit-focus-ring-color !important; 
    }

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

    Best regards,
    Mike

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

    Hey bcerin,
    Sorry for the late reply, you can add the media query @media print{ your-style-here } to your custom stylesheet.
    For example, this css will remove the sidebar header from the print version.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media print{
    	#header {
    		display: none !important; 
    	}
    	.html_header_left #main {
            margin-left: 0px !important; 
    	}
    }

    After applying the css, Please clear your browser cache and check.
    Please see the screenshots in Private Content area of the print preview with and without the css.
    You can add more css rules between the first and last brackets.

    Best regards,
    Mike

    in reply to: masonry portfolio layout #1207422

    Hi,
    To make it more specific I changed it to this:

    function remove_title_on_hover(){
      ?>
      <script>
    (function($){
      $("#top.page-id-1217 *").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_on_hover');

    now it should only work on the one page.

    Best regards,
    Mike

    in reply to: Remove background colour on Construction demo #1207421

    Hey jwencke,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header .av-main-nav > li > a, #top #header .av-main-nav > li > a > .avia-menu-text {
        background-color: transparent !important; 
        color: #0004ff !important; 
    }

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

    Best regards,
    Mike

    in reply to: Import demo #1207419

    Hey M_Salmaso,
    Please include a link to a page that we can see this shortcode, and perhaps an admin login in the Private Content area.

    Best regards,
    Mike

Viewing 30 posts - 17,251 through 17,280 (of 35,074 total)