- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2016
08:16 AM
01-19-2016
08:16 AM
Re: Abandoned Cart Report not updating
Thanks a lot
save my lots of time
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2016
08:14 AM
08-03-2016
08:14 AM
Re: Abandoned Cart Report not updating
Same here, after a few days the issue came back.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-03-2016
08:15 AM
08-03-2016
08:15 AM
Re: Abandoned Cart Report not updating
Where exactyl I insert the NULL ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2017
04:47 PM
07-04-2017
04:47 PM
Re: Abandoned Cart Report not updating
HOW MUCH MUST MODIFY LINE 209?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2017
04:51 PM
07-04-2017
04:51 PM
Re: Abandoned Cart Report not updating
I also have the same problem with version 1.9.3 how can i fix ??? What should I change?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2017
07:02 AM
10-25-2017
07:02 AM
Re: Abandoned Cart Report not updating
Hi,
Like stated previously, you need to override: app/code/core/Mage/Reports/Model/Resource/Quote/Collection.php
and edit line 209 or 217 depends on your Magento version, find a line that reads like:
->joinInner( array('cust_mname' => $attrMiddlenameTableName), implode(' AND ', array( 'cust_mname.entity_id = main_table.customer_id', $adapter->quoteInto('cust_mname.attribute_id = ?', (int) $attrMiddlenameId), )), array('middlename' => 'cust_mname.value') )
And change it to look like:
->joinLeft( array('cust_mname' => $attrMiddlenameTableName), implode(' AND ', array( 'cust_mname.entity_id = main_table.customer_id', $adapter->quoteInto('cust_mname.attribute_id = ?', (int) $attrMiddlenameId), )), array('middlename' => 'cust_mname.value') )
Resuming changing the joinInner to joinLeft
Cheers,
- « Previous
-
- 1
- 2
- Next »