Viewing 1 reply thread
You must be logged in to reply to this topic.
Greetings,
I have a client using the Tower WordPress theme and we’re experiencing an odd bug. We have the blog page setup as shown below, with the full blog in the “Normal” style. The blog looks fine, the call-to-action appears, and pagination is present.
However, when we change the blog style to “second style” the pagination disappears.
Changing the setting: https://imgur.com/a/OVx66
Result: https://imgur.com/a/L1nvr
You can see the ‘second style’ not working on our development site: https://dev.amitechsolutions.com/blog/
The normal blog is working on our production site:
https://www.amitechsolutions.com/blog/
Assistance in understanding what is causing this would be appreciated.
—-
Also, the link in this forum in the sidebar titled “New Support topic” has the wrong link for “Ask for Support”. It points to the “Specular – Multi-Purpose WordPress Theme” forum instead of the Tower forum.
Hello,
That’s not a issue, it’s the blog style. The Normal, Timeline and Creative style uses pagination, the other styles for “Full Blog” element, will show exactly as many items as you assign in “Post Numbers” option of it. If you set it to -1, it will show all blog items in the same page, without pagination.
However, if you must have it, then make these changes:
-go to file \includes\view\blog\loop-second-style.php and find these lines:
<?php if(!is_single() && (!isset($for_element) || !$for_element)): ?>
<?php codeless_pagination_display(); ?>
<?php endif; ?>
And replace with this:
<?php if(!is_single()): ?>
<?php codeless_pagination_display(); ?>
<?php endif; ?>
Let us know.
Best regards!
You must be logged in to reply to this topic.