Hi,
my working site http://www.bristolphotofestival.org/wordpress/ loads very slowly and the navigation is not very smooth. Do you know why is this? Have you got any tips that could improve it?
Thanks
A
Hi,
my working site http://www.bristolphotofestival.org/wordpress/ loads very slowly and the navigation is not very smooth. Do you know why is this? Have you got any tips that could improve it?
Thanks
A
Hello Alejandro,
I have check your homepage and there are several JS error on the page. I can see that you have added this:
$('.sbi_item').each(function(){
if( $(this).find('.sbi_photo img').attr('alt').toLowerCase().indexOf("#bpfallotment") < 1 ) $(this).remove();
});
Please have it updated and use this code instead:
(function($){
$('.sbi_item').each(function(){
if( $(this).find('.sbi_photo img').attr('alt').toLowerCase().indexOf("#bpfallotment") < 1 ) $(this).remove();
});
})(jQuery);
And then to improve your site’s performance, please check out this detailed documentation on how you can speed up your site:
Hope this helps. Please let us know how it goes.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.