Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #610694

    I recently hired a WordPress developer to optimize my Enfold blog for faster load times. He did a number of things, and did indeed speed it up. It loads much faster now.

    So, I naively paid him without doing a thorough quality check of my entire site on desktop and mobile. Now, he’s no longer answering my messages, so I’m hoping you can help. Here’s what’s happening:

    Desktop:
    Home Page: guitaranswerguy.com
    My 6 “Most Recent Blog Posts” are overlapping unnaturally. They’ll correct themselves if you resize your browser, but this shouldn’t be happening.

    Mobile:
    Home Page: guitaranswerguy.com
    The Most Recent blog posts aren’t showing at all. There’s just a giant empty space where they should be loading.
    The “hamburger” (navigation) menu icon is missing. So, my mobile visitors have no way to navigate my website.

    I’ve provided my WP login credentials. Help?

    #610700

    Hi,

    Try adding this at the very end of your theme / child theme functions.php file:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$(this).trigger('resize');
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Regards,
    Josue

    #611504

    Luckily, I didn’t have to do that. The developer was able to move some JavaScript around and got things displaying properly again. Thanks.

    We can close this one out.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Hired Developer – Now I'm Having Several Issues’ is closed to new replies.