Currently this theme has a breadcrumb bug from its upstream breadcrumb library. When a category or tag page with non-ascii title is accessed, the whole page would be blank. For example, https://test.lan/archives/category/???????
.
A temporary workaround is to not use the breadcrumb at all. Edit the file inc/template-tags.php
and modify the code like this:
/**
* Masonry Grid Breadcrumb
*/
function masonry_grid_breadcrumb($comment = null){
// breadcrumb has a bug dealing with non-ascii categories
return;
echo '<div class="entry-breadcrumb">';
breadcrumb_trail();
echo '</div>';
}
]]>
Hi there,
When I try to load more than 1 page using the pagination feature of the theme I get the no more posts button but I definitely have more posts.
When I look at the network tab I can see its appending ‘=’ to the call for example its:
Request URL: /page/=3/
Instead of: /page/3/
Which then gets a 404 error.
Every subsequent request it makes it will append another ‘=’ to the request. Like this:
=3/
==4/
===5/
and so on.
How do I fix this issue?
]]>