I searched the forums here and found no obvious solution. The images are there on the page, there is just something wrong with the css or js, I have not determined which yet, though I have detected an issue with regard to the use of both single quotes and double quotes within an anchor tag on the all_sort_button… perhaps I will try disabling the sort feature in the page builder and see if that solves this issue?
Has anyone else got a solid solution to this that does not involve disabling all plugins?
Yup, disabling the sort and pagination settings did the trick, so the issue is there.
I suggest refactoring the theme code so that when outputting html via concatenation of strings, to use single quotes on the php strings and double quotes for the outputted html tag attributes. i.e.:
$output .= '<a href="#" target="_blank">' . $some-user-var . '</a>';
(hopefully the code tags here will work and not mess up my example…)
Over my many years in php, I have found this to be the best approach, if you go over your code and do this you will likely solve many irritating and difficult to find issues such as this.