Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

X-Cart 4.7.6 released: Improved Performance, Bugfixes

 
Reply
   X-Cart forums > News and Announcements
 
Thread Tools
  #61  
Old 07-11-2016, 06:48 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by aim

It seems this a bug related to the 'Enable save credit card feature' option and XPayments_Connector

Thank you.
We don't accept credit cards & we don't use XPayments_Connector (disabled).
__________________
X-Cart 4.7.12
Reply With Quote

The following user thanks herber@wirehub.nl for this useful post:
cherie (07-11-2016)
  #62  
Old 07-11-2016, 09:55 PM
 
mixon mixon is offline
Michael Bugrov
 

X-Cart team
  
Join Date: Jul 2005
Posts: 91
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by herber@wirehub.nl
With 4.7.6, I am missing the option to disable VAT in a customer account, there used to be checkbox to remove VAT manually as an administrator from user accounts.

Am I missing something or can I no longer disable this per account?

If I understand you correctly you want to disable the Tax Number field for customer account. In order to do that you should alter the profile fields.
Also, you can change the "How to operate with Taxes if customer provides a Tax Number" option, on tax settings page.
__________________
--
Sincerely yours,
Michael Bugrov,
X-Cart Software Architector

founder of: X-Monitoring service
founder of: Infinite scroll

Facebook
Linked-in
Reply With Quote
  #63  
Old 07-11-2016, 11:54 PM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by mixon
If I understand you correctly you want to disable the Tax Number field for customer account. In order to do that you should alter the profile fields.
Also, you can change the "How to operate with Taxes if customer provides a Tax Number" option, on tax settings page.
Sorry I was a bit unclear.

I mean that I want the "Tax Exemption" field back that was still visible in 4.7.5, see screenshot.

That field is no longer visible after the update to 4.7.6, the screenshot if from our other X-Cart shop that has not yet been updated.
Attached Images
File Type: jpg tax_exemption.jpg (70.2 KB, 10 views)
__________________
X-Cart 4.7.12
Reply With Quote
  #64  
Old 07-12-2016, 04:06 AM
 
mixon mixon is offline
Michael Bugrov
 

X-Cart team
  
Join Date: Jul 2005
Posts: 91
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by herber@wirehub.nl
Sorry I was a bit unclear.

I mean that I want the "Tax Exemption" field back that was still visible in 4.7.5, see screenshot.

That field is no longer visible after the update to 4.7.6, the screenshot if from our other X-Cart shop that has not yet been updated.

Ok, I see. It should be visible in 4.7.6 as well, if taxes are calculated in general way.
__________________
--
Sincerely yours,
Michael Bugrov,
X-Cart Software Architector

founder of: X-Monitoring service
founder of: Infinite scroll

Facebook
Linked-in
Reply With Quote

The following user thanks mixon for this useful post:
herber@wirehub.nl (07-14-2016)
  #65  
Old 07-14-2016, 04:33 AM
 
herber@wirehub.nl herber@wirehub.nl is offline
 

eXpert
  
Join Date: Nov 2002
Posts: 305
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by mixon
Ok, I see. It should be visible in 4.7.6 as well, if taxes are calculated in general way.
Alright then that must be it, it is not set to Calculate in a general way, but to Do not add taxes if customer supplies a valid VAT number, so that must be the reason the checkbox disappears.
__________________
X-Cart 4.7.12
Reply With Quote
  #66  
Old 07-16-2016, 12:10 AM
 
zebu zebu is offline
 

eXpert
  
Join Date: Oct 2006
Posts: 310
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Hi All - has anyone switched to php 7 after this upgrade? Any major issues encountered, did 3rd party mods require patches for php 7? Keen to here peoples experiences. Thanks
__________________
Version 4.7.7
Reply With Quote
  #67  
Old 07-16-2016, 03:11 AM
 
cheap eyeglasses cheap eyeglasses is offline
 

Senior Member
  
Join Date: Oct 2010
Posts: 143
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

php 7 will let your site run 200% fast.
Reply With Quote
  #68  
Old 07-20-2016, 09:02 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

I just found the stock XC code for GA does not report ecommerce.

The template file has this condition to report ecommerce

Code:
{if $config.Google_Analytics.ganalytics_e_commerce_analysis eq "Y" and $ga_track_commerce eq "Y" and $main eq "order_message" and $orders }

but the $ga_track_commerce is always N on order confirmation page. It looks like this bug affects versions down to 4.4.x as far as I can tell. I have verified this to happen on 4.6.x and 4.7.x versions (live stores) and code is the same for 4.4.x and 4.5.x so it must be present there too.

There are 2 ways to fix it - one modifying cart.php and the other modifying the template used for the tracking.
Easiest is to delete the
Code:
and $ga_track_commerce eq "Y"
line from the template. This variable is useless anyway with the way code is written and it does nothing but to repeat what is already there. And of course to mess things up.

reported https://bt.x-cart.com/view.php?id=46300
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote

The following user thanks cflsystems for this useful post:
Dougrun (07-20-2016)
  #69  
Old 07-20-2016, 09:45 AM
 
aim aim is offline
Advanced Staff Users
 

X-Cart team
  
Join Date: Dec 2008
Posts: 928
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Quote:
Originally Posted by cflsystems
I just found the stock XC code for GA does not report ecommerce.

The template file has this condition to report ecommerce

Code:
{if $config.Google_Analytics.ganalytics_e_commerce_analysis eq "Y" and $ga_track_commerce eq "Y" and $main eq "order_message" and $orders }

but the $ga_track_commerce is always N on order confirmation page. It looks like this bug affects versions down to 4.4.x as far as I can tell. I have verified this to happen on 4.6.x and 4.7.x versions (live stores) and code is the same for 4.4.x and 4.5.x so it must be present there too.

There are 2 ways to fix it - one modifying cart.php and the other modifying the template used for the tracking.
Easiest is to delete the
Code:
and $ga_track_commerce eq "Y"
line from the template. This variable is useless anyway with the way code is written and it does nothing but to repeat what is already there. And of course to mess things up.

reported https://bt.x-cart.com/view.php?id=46300


The variable is assigned here
Code:
include/checkout.php-123-if ( include/checkout.php-124- !empty($active_modules['Google_Analytics']) include/checkout.php-125- && $config['Google_Analytics']['ganalytics_e_commerce_analysis'] == 'Y' include/checkout.php-126-) { include/checkout.php:127: $ga_track_commerce = 'Y';


The aim of the variable is to run this code one time per order on the 'thank for the order' page.


Code:
ga('ecommerce:addTransaction', {ldelim} 'id' : "{$order.order.orderid}", // order ID - required 'affiliation' : "{$partner|default:'Main stock'}", // affiliation or store name 'revenue' : "{$order.order.total}", // total - required 'shipping' : "{$order.order.shipping_cost}", // shipping 'tax' : "{$order.order.tax}" // tax {rdelim});



Thank you.
__________________
Sincerely yours,
Ildar Amankulov
Head of Maintenance group
Reply With Quote
  #70  
Old 07-20-2016, 09:55 AM
  cflsystems's Avatar 
cflsystems cflsystems is offline
 

Veteran
  
Join Date: Apr 2007
Posts: 14,191
 

Default Re: X-Cart 4.7.6 released: Improved Performance, Bugfixes

Yes I saw all of that. But it doesn't work this way. The variable is always N on order confirmation page. It is not being picked up from x_session_register

I have tested this on few stores and it gives the same result. This was triggered by a client who spent a week with Google trying to find out why there is no ecommerce reporting from the site. Google insist it is the integration of their docs with XC but I am finding the integration being good. It just won't show on order confirm page because of this variable.
__________________
Steve Stoyanov
CFLSystems.com
Web Development
Reply With Quote
Reply
   X-Cart forums > News and Announcements



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 09:34 AM.

   

 
X-Cart forums © 2001-2020