ellisar
Forum Replies Created
-
Hey David, thanks for getting back to me! Sorry for not replying back sooner, have been away for work the past few days. Here’s the pastebin link. Please let me know what you think the issue is! Appreciate your help.
Forum: Plugins
In reply to: Woocommerce Subscriptions List Table PHP ErrorThanks!
Forum: Plugins
In reply to: Woocommerce Subscriptions List Table PHP ErrorSo I’m having the same issue as well. I figured out a temporary fix to at least see all of your subscriptions. Basically it’s just hiding the pagination. If you go to your subscriptions and add “&paged=2” to the end of the url (i.e. https://www.example.com/wp-admin/admin.php?page=subscriptions&paged=2), you’ll see your next 10 subscriptions, and so on.
Also, you can change the number of subscriptions displayed per page by changing the “10” on line 670 in class-wc-subscriptions-list-table.php
$per_page = $this->get_items_per_page( $screen->get_option( 'per_page', 'option' ), 10 );to however many you want to be displayed on the main subscription page. So to have the subscriptions displaying 35 per page change line 670 to
$per_page = $this->get_items_per_page( $screen->get_option( 'per_page', 'option' ), 35 );Hope that helps you until it’s fixed.