• Hello,

    I am noticing this error in the woocommerce>abandoned cart settings page:

    Warning: count(): Parameter must be an array or an object that implements Countable in /home/bohubrih/public_html/wp-content/plugins/woocommerce-abandoned-cart/includes/classes/class-wcal-abandoned-orders-table.php on line 297

    https://imgur.com/a/EB6Bt

    I am not sure from when is this error being shown or what triggered this warning. It is not showing in any other page.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi,

    Thank you for sharing error message with us.

    Can you please let me know you are using PHP version 7.2 for your store?

    You would need to change the below code in line number 297 & 310 of “class-wcal-abandoned-orders-table.php” file of our plugin. The file will be located at your /< your site URL >/wp-content/plugins/woocommerce-abandoned-cart/includes/classes folder.

    The code is:

    if( count( $cart_details ) > 0 ) {

    Replace it with the below code:

    if( count( get_object_vars( $cart_details ) ) > 0 ) {

    Can you please change the code and let me know whether the issue still persists or not on your site?

    Please let me know if you have any further queries.

    Regards,
    Chetna Bhutka

    Thread Starter Yanur Islam Piash

    (@yipiash)

    Hello,

    Thank you for your nice reply.

    Yes I am using PHP version 7.2.2

    And, after replacing those two lines, there is no error in the “Abandoned Orders” tab. But there is still 1 error in “Recovered Orders” tab and 1 in “Product Report” tab.
    Screenshot here.

    Also, will not these files be reset when I update the plugin later?

    Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi,

    Thank you for providing the screenshot of the error message here.

    The issue is coming due to PHP version 7.2. So, you would need to make the same changes in the “class-wcal-recover-orders-table.php” file & “class-wcal-product-report-table.php” file.

    1) For Recovered Orders tab,

    You need to change the code in line number 219 in the “class-wcal-recover-orders-table.php” file. The file is present at the /< your site URL >/wp-content/plugins/woocommerce-abandoned-cart/includes/classes folder.

    The code is:

    if ( isset( $product_details ) && count( $product_details ) > 0 && $product_details != false ) {

    Replace it with the below code:

    if ( isset( $product_details ) && count( get_object_vars( $product_details ) ) > 0 && $product_details != false ) {

    2) For Product Reports tab,

    You apply the same fix on line number 144 in the “class-wcal-product-report-table.php” file. The file exists in the same folder.

    The code is:

    if( count( $cart_details ) > 0 ) {

    Replace it with the below patch:

    if( count( get_object_vars( $cart_details ) ) > 0 ) {

    We will include the same fix in our next plugin update. So, you can update the plugin to the latest version. I will let you know once we will release our plugin with the same fix.

    Kindly let me know if you have any further queries.

    Regards,
    Chetna Bhutka

    Thread Starter Yanur Islam Piash

    (@yipiash)

    Hello,

    I am really glad you took this effort to fix the problem. I am waiting for your next plugin update.

    Thanks a lot ??

    And I love your plugin.

    Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi,

    You are welcome. ??

    I am glad to know that you love our plugin.

    It would be great if you can write a review for us or our plugin on the plugin’s review page. That would help us immensely.

    If you have any further queries regarding our plugin then let me know.

    Regards,
    Chetna Bhutka

    hi sorry i have the same problem(php 7.2.2), i already check files, and are with the patch… but i have the following errors:

    https://prntscr.com/inzcny

    and row 297 of class-wcal-abandoned-orders-table.php i have
    if( count( get_object_vars( $cart_details ) ) > 0 ) {

    thank you

    Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi,

    Can you please try below solution and let me know whether error message is resolved or not?

    You can change the code in line number 291 of “class-wcal-abandoned-orders-table.php” file of our plugin. The file will exist in the same folder.

    The code is:

    $cart_details = array();

    You need to change it with below code:

    $cart_details = new stdClass();

    Please let me know if you have any further queries.

    Regards,
    Chetna Bhutka

    Hi i have fixed the problem
    class-wcal-abandoned-orders-table.php as suggested chetnapatel (@chetnapatel), I have fix in the same way class-wcal-recover-orders-table row 213
    changing $product_details = array(); in to
    $product_details = new stdClass();
    but i have to resolve the problem with class-wcal-product-report-table
    here i have a lot of /woocommerce-abandoned-cart/includes/classes/class-wcal-product-report-table.php on line 144
    regards

    Devis

    Plugin Contributor chetnapatel

    (@chetnapatel)

    Hi Devis,

    Thank you for your response. That’s great that the error message has been solved. ??

    We are releasing the plugin with the same fix in our next plugin update. Probably, we will be releasing it in the next week. I will let you know once we release the plugin.

    Regards,
    Chetna Bhutka

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Warning: count(): Parameter must be an array or an object that implements…….’ is closed to new replies.