Jump to content

bigpedro

Member
  • Posts

    84
  • Joined

  • Last visited

Posts posted by bigpedro

  1. Having difficulty deleting orders in bulk from the order area.  If you check a few boxes and select the drop down to say "dont change order status" and then "delete" you get kicked back to the order screen with this message shown:

     

    Orders have been found that match your search

     

    The orders deleted havn't been deleted and they are still in the system.

     

    anyone else seen this?

     

    Regards

    Peter

  2. Hi All

     

    On our site we have really indepth product options on our products.  In some cases there can be up to 8 different options that effect the product.

     

    We use the print packing note to pick and pack the order in our stores.  At the moment this sheet displays the options but they are all laid out in one text block.

     

    This is not easy to read as in effect you end up with something like this:

     

    size: medium colour: pink  : strapsize: 126cm design: track

     

    As you can see it is easy for the packer to misread etc.

     

    Does anyone know how we could make these options display on a seperate line for each?

     

    Any help would be appreciated as always!

     

    Pete Ward

  3. We do not need to have the site logo on our printed invoice as it is used for internal purposes only.  However we would like both the delivery and billing address to be shown.

     

    On admin/skins/default/templates/orders.print.php I have deleted the store logo and it is my intention to display the billing address in it's place.  

     

    However this is where my problem is!!  I guess I have to call this info on admin/sources/orders.in.php ?

     

    I'm sure it's an easy answer.  I just can't find it!

     

    Any Ideas?

  4. Thanks Brian.

     

    If I look at the email as plain text it still doesn't show.

     

    I have looked in the database and found the cubecart_order_inventory and then product_options.  Each one just says something like [bLOB - 244 B] for example.  If I click the link it opens up the entry as a .bin file.  Below is an example of the content

     

    a:4:{i:0;s:40:"Add HD rear support brg: Yes (+£160.00)";i:1;s:37:"Serial Number of Existing Unit: 12345";i:2;s:66:"Return Carriage Option for Mainland UK Only: Yes Please (+£30.00)";i:3;s:50:"Core Deposit: Required On This Product (+£350.00)";}

     

    Thank you for your assistance with this by the way.  It is appreciated!

  5. Thanks for your reply.  I can indeed see the selected options in the admin order screen, they just don't show on the email.

     

    The code you have given is perfect and yet the options are still not displayed!  The only edit to the email so far is the addition of this:  

     

     
    <p>
    Customer Comments:&nbsp;{$DATA.customer_comments}</p>
     
    But if I remove that it still doesn't work!!!
  6. Hi All

     

    We are using CC 5.2.4 and we need to display product options selected on the admin order email and also the customer confirmation email.  

     

    Looking at the admin:orderreceived email template I can see that there is an entry there for {$product.product_options} which I am assuming is what I am looking for.  However the selected product options are not shown.

     

    Is this code incorrect?  Or am I missing something.

     

    any help would be appreciated.

     

    Regards

     

    Peter Ward

  7. Don't upgrade to 5.1.4, IMHO. You'll do better to go to 5.2.2. Lot of fixes since 5.1.4. The biggest issue with 5.2.2 is the Option Matrix, but 5.1.4 doesn't have that at all. As for your strange character, hopefully Bsmither will be along to help with that soon. Good luck!

    Thanks for the reply Dirty Butter - just realised my signature was old - I am working on a new CC project and I have indeed updated to 5.2.2

  8. "I get this strange url using Chrome."

     

    From where?

    Basically.  From the main menu if you clicked a category the address in the top bar would read 

     

    www.worthaglance.comnworthaglance.comnww.worthaglance.com/watches.html]/www.worthaglance.comnworthaglance.comnww.worthaglance.com/watches.html

     

    However, today I've checked and it's back to normal and how it should be?  This is weirding me out a bit now.  I can't be going mad as Dirty Butter saw it too!!

  9. This is a strange one that I can't get my head around.  Am running CC 5.15 and it was all cool at the beginning.  HOwever orders have dried up.  Looking at google search results and some of URL's are listed as

     

    ww.worthaglance.com/etc

     

    wwww.worthaglance.com/etc

     

    That is odd enough.  However if you visit the site and click a shop category it gets even more strange.  For example:

     

    This is the URL in my browser for the watches category:  

     

    http://www.worthaglance.comnworthaglance.comnww.worthaglance.com/watches.html

     

    Any ideas on what the problem is and why it has happened?!?!?

     

    Any advice appreciated!!

     

    P

  10. Thanks for your reply bsmither.  It appears that indeed it was a bug and the code in content.receipt.php was not correct.  I beleive that this will be addressed in the next release.  I have just implemented the code as instructed by cubecart support, hopefully this will work - but we can't see for 24 hours while we wait for google to show conversionns!

     

    If anybody else has this problem.  Basically at the bottom of content.receipt.php replace the existing Analytics code with this:

     

    <!-- Google Analytics for e-commerce -->
    <script type="text/javascript">
    {literal}
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', '{/literal}{$GA_SUM.google_id}{literal}']);
    _gaq.push(['_trackPageview']);
    _gaq.push(['_addTrans',
    '{/literal}{$GA_SUM.cart_order_id}{literal}', // order ID - required
    '{/literal}{$GA_SUM.store_name}{literal}', // affiliation or store name
    '{/literal}{$GA_SUM.total}{literal}', // total - required
    '{/literal}{$GA_SUM.total_tax}{literal}', // tax
    '{/literal}{$GA_SUM.shipping}{literal}', // shipping
    '{/literal}{$GA_SUM.town}{literal}', // city
    '{/literal}{$GA_SUM.state}{literal}', // state or province
    '{/literal}{$GA_SUM.country_iso}{literal}' // country
    ]);
    {/literal}

    // add item might be called for every item in the shopping cart
    // where your ecommerce engine loops through each item in the cart and
    // prints out _addItem for each
    {foreach from=$GA_ITEMS item=item}
    {literal}
    _gaq.push(['_addItem',
    '{/literal}{$GA_SUM.cart_order_id}{literal}', // order ID - required
    '{/literal}{$item.product_code}{literal}', // SKU/code - required
    '{/literal}{$item.name}{literal}', // product name
    '', // category or variation
    '{/literal}{$item.price}{literal}', // unit price - required
    '{/literal}{$item.quantity}{literal}' // quantity - required
    ]);
    {/literal}
    {/foreach}
    {literal}
    _gaq.push(['_trackTrans']); //submits transaction to the Analytics servers

    (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();
    {/literal}
    </script>
     

    In addition in classes/cubecart.class.php at around line 1119 make sure you have this:

     

    // Analytics
    $vars['ga_sum'] = $order;
    $vars['ga_sum']['country_iso'] = getCountryFormat($order['country'], 'numcode', 'iso');
    $vars['ga_sum']['google_id'] = $GLOBALS['config']->get('config', 'google_analytics');
    $vars['ga_sum']['store_name'] = $GLOBALS['config']->get('config', 'store_name');
    $GLOBALS['smarty']->assign('GA_SUM', $vars['ga_sum']);
     

  11. Hi All

     

    I wonder if anybody has ever managed to track conversions of Adwords Clicks through Cube Cart V5 and Google Analytics?

     

    Obviously when you enter your UA google analytics code in general settings Cubecart adds the google analytics code to every page and you can track all visitors etc.

     

    However there is another side to this.  To track conversions of google adwords customers there is another piece of code required.  This should (I think) sit on the skins/templates/content.receipt.php file.

     

    If you look at this file at the very bottom there is already some code here:  See Below

     

     

    {if isset($ANALYTICS)}
      <!-- Google Analytics for e-commerce -->
      <script type="text/javascript">
      {literal}
      pageTracker._addTrans('{$GA_SUM.cart_order_id}','','{$GA_SUM.total}','{$GA_SUM.total_tax}','{$GA_SUM.shipping}',"{$GA_SUM.town}","{$GA_SUM.state}","{$GA_SUM.country_iso}");
      {/literal}
    {foreach from=$GA_ITEMS item=item}
      {literal}
      pageTracker._addItem('{$GA_SUM.cart_order_id}','{$item.product_code}',"{$item.name}",'','{$item.price}','{$item.quantity}');
      {/literal}
    {/foreach}
      {literal}
      pageTracker._trackTrans();
      {/literal}
      </script>
      {/if}
     
    However - this piece of code is not tracking our conversions at all.  I have spoken with Google and they have confirmed that this code is incorrect.  

    Has anybody got this working?  I have looked through the forums and nobody seems to be discussing it.  This either means that you all have it working or nobody is bothered!!

    Any help would be greatly appreciated.

     
  12. Hi All

     

    I am sure this is a crazy easy answer as I cannot find anybody else asking!!!

     

    I want to track conversions on sales from my Adwords account.  I have some code that on my old V4 site it went on the skins/content/confirmed.tpl file.

     

    However on V5 which file should it go on.  I cannot seem to find the file which relates to the order success page.......

×
×
  • Create New...