Jin
asked 10 years ago

My infinite scroll is on endless repeat (keeps on repeating the list of articles).
When I turn it off, then pagination (page 2, page 3, etc.) doesn’t work.
Any ideas?

5 Answers
DominicStaff
answered 10 years ago

To resolve this issue, You can open the “home-layout-1.php /home-layout-2.php /home-layout-3.php” in the folder path “\wp-content\themes\dw-argo\templates”. Find the following code then Replace this Code:

  $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;

With new code:

  $page_var = 'paged';
if( is_front_page() ) {
      $page_var = 'page';
}
$paged = get_query_var( $page_var ) ? get_query_var( $page_var ) : 1;

If you still face the issue, please send me your FTP. Currently, I can not edit file in the Dashboard. You need to make this file writable before you can save your changes. See the Codex for more information.
Hope this helps !

Gregor
answered 10 years ago

Thanks Dominic. I’ve done this but it still goes on endless repeat. Will send you FTP details privately.

DominicStaff
answered 10 years ago

I have checked your site and when you disable “Use Infinitescroll in postcontent” section to use pagination, I see that the pagination (page 2, page 3, etc.) still works fine.
Right now, you can check your site.
See the screenshot:
Regards,

DominicStaff
answered 10 years ago

I have checked our demo site and the pavigation still works fine. Maybe there is a conflict between plugins. Please help us do as following:
1. Deactivate  all plugins to see if this resolves the problem.
2. If this works, re-activate the plugins one by one and let us know if you find the problematic plugin(s)
Regards,

Dominic Staff
replied 10 years ago

Hi,
Currently, DW Argo conflicting between membership plugin, we will discuss about this issue in the next version.
Regards,

James Gentes
replied 10 years ago

I found it was caused by the ‘Authorsure’ plugin and a permalink plugin was causing strange behavior as well.

Dominic Staff
replied 10 years ago

We will discuss about this issue.

DominicStaff
answered 10 years ago

Thanks for reporting about the bugs 🙂 Much appreciated. At the moment we still don’t yet plan to update the theme. However, make sure that we will update the theme as soon as possible. Please stay tuned, will let you know once released.  

Powered by DW Question & Answer Pro