Jump to content

eduardj

Member
  • Posts

    10
  • Joined

  • Last visited

Recent Profile Visitors

2,026 profile views

eduardj's Achievements

Newbie

Newbie (1/14)

  • Collaborator Rare
  • First Post
  • Week One Done
  • One Month Later Rare
  • One Year In Rare

Recent Badges

0

Reputation

  1. Thanks a lot, I've just run those changes and it works as a charm !
  2. I've updated to latest cc 6.4.7 and to PHP8.xx, it wont update captured payments in cube cart admin, have to update manually : modules/gateway/SagePay/gateway.class.php:119 - Attempt to assign property "start" on null
  3. Hi, Problem is that cubecart is using gtag to send info for ecommerce data and only info are sent from order complete page : {if isset($smarty.cookies.accept_cookies) && $smarty.cookies.accept_cookies=='true' && $ANALYTICS && $GA_SUM} <script> {literal}(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '{/literal}{$ANALYTICS}{literal}', 'auto'); ga('require', 'ecommerce'); ga('ecommerce:addTransaction', { 'id': '{/literal}{$GA_SUM.cart_order_id}{literal}', 'affiliation': '{/literal}{$GA_SUM.store_name}{literal}', 'revenue': '{/literal}{$GA_SUM.total}{literal}', 'shipping': '{/literal}{$GA_SUM.shipping}{literal}', 'tax': '{/literal}{$GA_SUM.total_tax}{literal}' }); {/literal}{foreach from=$GA_ITEMS item=item}{literal}ga('ecommerce:addItem', { 'id': '{/literal}{$GA_SUM.cart_order_id}{literal}', 'name': '{/literal}{$item.name}{literal}', 'sku': '{/literal}{$item.product_code}{literal}', 'price': '{/literal}{$item.price}{literal}', 'quantity': '{/literal}{$item.quantity}{literal}', 'category': '{/literal}{$ITEM_CATS.{$item.product_id}}{literal}' });{/literal}{/foreach}{literal} ga('ecommerce:send');{/literal} </script> , universal analytics will be discontinued by end of the year and new GA4 will take place, now in order to capture any data for it, is to set up datalayers which need to be coded to website by dev and set up via GTM. I have asked if anyone had done this already. For user flow etc. : item view, add to cart, checkout started, purchased. it would be great if someone has already implemented this or if cubecart devs are planning to add this into code in a future. add red highlighted to your code, replace all within the file in templates/element.google_analytics.php {if isset($smarty.cookies.accept_cookies) && $smarty.cookies.accept_cookies=='true'} <!-- Global site tag (gtag.js) - Google Analytics --> {literal} <script async src="https://www.googletagmanager.com/gtag/js?id=UA-11031594-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-11031594-1'); </script> {/literal} {/if}
  4. Hi, I've updated to 6.1.12, have made all changes to the files above to disable county. it was working fine with 6.1.10 with those changes. I'm using paypal express checkout and I'm based in UK there are many customers having account set without county now ( this issue has been raised many times here on forums), before I start, called up paypal to make sure that the billing address is set on my paypal account as advised in braintree mod and it is. Tested the express checkout ( via braintree or paypal pro) and I'm always getting an error message asking for a state when transfered back to website from paypal confirmation page.
  5. Yes, in log entry for emails sent I have that confirmed, I have cleared cashe and made some changes now I need to wait if I get any more complains from customers not receiving email confirmations. Thanks for trying to help out.
  6. yes, all in email log are ticked and tried resend no email getting through
  7. i as admin get an email that there is pending order set in "CC settings", also paymet confirmation, as customer I didn't get email your order is processing + when changed status in admin site as "complete" no email sent as confirmation.
  8. Hi, I'm having same issue here, i've done email test where i get response from server, tried to place an order as customer and no email confirmation came through. I'm still getting admin (pending) email but not as cutomer. Has above been resolved ?
  9. Hi, I had exactly same issue upgrading from older versions with error log same as in 1st post, so I've done following : Changed admin_XXX folder and admin_XXX.php in root to admin and admin.php, than changed includes/inc.global.php file to match both. Basically removed the seciruty on both file and admin folder. Upgrade via admin page went through smouthly without any issue and have new admin folder and admin file secured after upgrade. Hope this might help.
×
×
  • Create New...