Jump to content

Claudia M

Member
  • Posts

    847
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by Claudia M

  1. It shows "> in the customer name and company name and customer address. Same places that "> shows up in admin order summary. What is the wen page?
  2. I'm beginning to think the customer must have added the "> My test order and the order I just received did not show the "> and all info was correct. Quite concerning about my admin info in their account though. I noticed if you go to my login page in the store front my admin user name and the dotted out password showed in the boxes instead of email (required) password (required). I removed my stored password in Firefox and it quit showing my info so maybe it was just like that on my computer. Would like to know how my admin info got in their customer account.
  3. Sorry, I forgot to add the conversation I had with Brian. You may not need this, but here it is. I was able to do this in other versions of CC6 but not in 6.15. I want ALL wording of All in One Shipping removed from every part of my website including emails. For the most part I have done this - except for the Order History page .. Pending, etc.. It shows like this now: (I want the USPS: priority to show as that is my name in AIOS. I want the All in One Shipping removed). I have disabled shipping groups. Thanks in advance for any help. The database table CubeCart_order_summary collects two pieces of data about the shipping: the 'ship_method' and the 'ship_product'. The 'ship_method' contains the name of the folder of the shipping module, or the name of the 'class' in the module's shipping.class.php file. In my database table, I see variances of these names having underscores, and some having spaces instead of underscores. The 'ship_product' has the value entered in the module's Name field, if present. The All in One Shipping module has on its Zone tabs, a Method name, which is what I see as being used as 'ship_product'. The "Order History" page? This would be in admin, having clicked the Edit icon of an order, giving the Order Summary screens? Then, on the History tab, there is no mention of the shipping module used. However, on the Overview and Delivery tabs, there is a Shipping Information block of data. The Shipping Method is listed here as is the Shipping Product. From the Customer's perspective, their Account pages have an Order History list. Clicking View Details of an order shows the shipping that was used. The skin templates content.receipt.php and print.receipt.php have the following: <td>{if !empty($order.ship_method)}{$order.ship_method|replace:'_':' '}{if !empty($order.ship_product)} ({$order.ship_product}){/if}{else}{$LANG.basket.shipping}{/if}</td> Change to: print.receipt <td>{if !empty($order.ship_product)}{$order.ship_product}{else}{$LANG.basket.shipping}{/if}</td> That worked for the print.receipt but for the content.receipt it needs to be this: <td>{if !empty($SUM.ship_product)}{$SUM.ship_product}{else}{$LANG.basket.shipping}{/if}</td>
  4. Yes it was the varchar 128 character password. I don't know what long hash means. The salt is not the same. I'm not sure what you are looking for in the Cubecart_order-summary. Are you talking about my admin order screen. If so that is where I first found the "> in the address. In looking at the page source in the Delivery address tab in admin / orders for this person this is what I see. The ... is me removing their personal info. the info shown in company name is as is. <div><label for="ajax_title">Title</label><span><input type="text" id="ajax_title" name="customer[title]" value="L......" class="textbox billing"></span></div> <div><label for="ajax_first_name">First Name</label><span><input type="text" id="ajax_first_name" name="customer[first_name]" value="L..." class="textbox billing required"></span></div> <div><label for="ajax_last_name">Last Name</label><span><input type="text" id="ajax_last_name" name="customer[last_name]" value="...&#34;>" class="textbox billing required"></span></div> <div><label for="sum_company_name">Company Name</label><span><input type="text" id="sum_company_name" name="customer[company_name]" value="&#34;>" class="textbox billing"></span></div> <div><label for="sum_line1">Address</label><span><input type="text" id="sum_line1" name="customer[line1]" value="... RD&#34;>" class="textbox billing required"></span></div> <div><label for="sum_line2"> </label><span><input type="text" id="sum_line2" name="customer[line2]" value="" class="textbox billing"></span></div> <div><label for="sum_town">Town/City</label><span><input type="text" id="sum_town" name="customer[town]" value="...." class="textbox billing required"></span></div> <div>
  5. In looking in myphphadmin database customers I found that this person plus another customer had the password that is the same as my admin password! I used Firefox Web Tool to examine the code and didn't see anything wrong with it. I also created a "new customer" and placed an order it the "> didn't show
  6. I received an order today and this showed in admin order summary. Under Order Summary the customers name looked like this. I wouldn’t think they would type it in like that. Of course they used their real name I just changed it for security. Note the "> Customer Name"> Company (this was blank)"> Street address"> Hiram, Ohio 44234 I’ve checked files but don’t see any bad code. Any specific ideas where to look? Also turns out their email does not exist and was returned. The payment with PayPal went thru without a hitch. Should I worry – not a large order.
  7. This is what I did: REMOVE ALL IN ON SHIPPING FROM DROPDOWN SHIPPING ON CHECKOUT PAGE In Admin - Store Settings - Features Check "Disable Shipping Groups" in admin/skins/default/templates/orders.index.php Line 207-209 and 305-307: Comment out shipping method (it would have shown All in One Shipping) <!-- <div><label for="sum_ship_method">{$LANG.orders.shipping_method}</label><span><input type="text" id="sum_ship_method" name="summary[ship_method]" placeholder="{$LANG.orders.shipping_method_eg}" value="{$SUMMARY.ship_method}" class="textbox"></span></div> --> admin/skins/default/templates/orders.print.php Line 87 - 89 Comment out Shipping Method Removes the Shipping Method from packing slip - would have shown All in One Shipping And Brian gave me this: REMOVE AIOS FROM PAYPAL EMAILS Hi, When a customer pays with PayPal Express Checkout it shows Postage: All in One Shipping. Anyway to show shipping_product instead of shipping_method (if that is what it is using)? Thanks for all help, Claudia In the code for the PayPal_Pro-1.0.8 Plugin, please find in the file website_payments_pro.class.php, near lines 269 and 442: html/modules/plugins/PayPal_Pro/website_payments_pro.class.php CODE From: 'L_PAYMENTREQUEST_0_NAME'.$i => 'Postage: '.$this->_basket['shipping']['name'], To: 'L_PAYMENTREQUEST_0_NAME'.$i => 'Postage: '. ((!empty($this->_basket['shipping']['product'])) ? $this->_basket['shipping']['product'] : $this->_basket['shipping']['name']), There is no way I can test this, so be careful.
  8. I am setting up new zones in the All in One Shipping module so I can use zip codes. Example: Zone 2 (This is the name I gave in AIOS) is for the states kentucky and indiana. I just now created a Zone 2 Zips to show the zip codes for Zone 2 based on the UPS zone chart (for zip codes). I have the “Use first matching zone only” set in the AIOS module, but it is still giving me rates for both zones. I need it to show the rates for the zip code. If zip code is not available then go to the state zone. Here is the AIOS debug info: - Postcode range search: 42100 - 42799 (MATCHED!) >>> Shipping zone [ID 46] matches the delivery address! Use this zone for shipping calculations. Looking for first matching zone of best match (instead of searching for all matching zones - see AIOS module settings) Zone 2 [Zone ID 1] --- Country matched and state/province matched! [IN, KY] >>> Shipping zone [ID 1] matches the delivery address! Use this zone for shipping calculations. Looking for first matching zone of best match (instead of searching for all matching zones - see AIOS module settings) and at the bottom: FINAL SHIPPING OPTIONS FOR THIS ADDRESS AND BASKET USPS: First Class: 3.18 USPS: Priority: 6.55 USPS: Parcel Select Ground: 6.55 UPS Standard Ground: 13.04 USPS First Class: 3.18 Thanks, Claudia
  9. I use this plugin. Works great! https://www.semperfiwebservices.com/automatic-social-media-posts-cc6-plugin.html
  10. Well, now that you say it that makes sense Brian. Thank you, it worked. By the by, the S wasn't capitalzied.
  11. The main folder is "modules". In that are the 2 folders "plugins" and "Shipping". I'm referring to Noodleman's UPS Advanced Module
  12. I don't use UPS that much so I don't know if I want to go to the expense. Just wanted to give customers the option. The only problem I'm having is I can't figure out how to initially upload the plugin in my store. Claudia
  13. Hi jka ... I actually downloaded that yesterday and was going to install it but couldn't figure out how. There are 2 folders. Plus no instructions came with the download. Glad to know it works good.
  14. I have that installed too. I really wish someone would upgrade this USPS plugin to use commerical rates and dimensional weight. The UPS plugin needs some work too.
  15. Thank you some much for looking into this. I'm sure other people would be interested in this too.
  16. Hi, I just intstalled the USPS shipping module and noticed it is only offering retail rates. Is there anyway to change this so it will only offer the commercial based rates. Also where is the rate option for Parcel Select? Also how do you get it to give the correct rates on an oversized package? Thanks in advance! Claudia
  17. I just tried to search for " cat figurine " in my store and it brought up 5 pages of items, most of which have nothing to do with cat figurines. No new error though. And never had a error in the error log I created. Except for styling, my content.search is the same as Foundations. Don't know if it makes a difference, but I don't use any of the stock Manufacturer stuff in CubeCart or Foundation.
  18. What does this mean? Should I worry? Thanks in advance, Claudia File: [catalogue.class.php] Line: [1017] "SELECT SQL_CALC_FOUND_ROWS * FROM `CubeCart_inventory` WHERE `product_id` IN (1510,1556,1557,1543,759,760,593,594,595,599,600,601,604,612,626,629,635,918) AND CubeCart_inventory.status = '1' ORDER BY `custom_sort` ASC LIMIT 24 OFFSET 7.70906906909E+14;" - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '7.70906906909E+14' at line 1
  19. I use SemperFi's Vertical Navigation, too. I've modified it with Darren's help. You can see it here. https://www.claudiasbargains.com/
  20. That did it Brian. Thank you. Now I think I'll style it a little better. Well, in the morning. By the way, you said to edit line 150 in cubecart.css. I was under the impression that it wasn't a good idea to change any of the .css files that come with Foundation. I've been putting all my changes to these files in a new (for now working.css) .css file. Is this the correct way?
  21. I've tried that and more. my web address is https://www.claudiasbargains.com. You'll have to add something to the basket to see it.
  22. This is driving me nuts!! I am redoing the layout of my checkout pages and on content/medium-up I want the word Quantity and the box with the qty in it all on one line. I can't get it to do it!! Here is my code. The last line I want on a line by itself under the product code: <tr> <td class="text-center"><a href="{$STORE_URL}/index.php?_a=basket&remove-item={$hash}"><svg class="icon icon-trash-o"><use xlink:href="#icon-trash-o"></use></svg></a></td> <td width="90"> <a href="{$item.link}" class="th" title="{$item.name}"><img src="{$item.image}" alt="{$item.name}"></a></td> <td colspan="2"> <div><a class="txt" href="{$item.link}">{$item.name}</a> {if !empty($item.product_code)} - {$item.product_code}{/if}</div> <div class="txt"> Quantity: <input name="quan[{$hash}]" type="quantity" value="{$item.quantity}" maxlength="6" class="quantity checkout" {$QUAN_READ_ONLY}></div> Thanks in advance for any and all help, Claudia
  23. Hi, I got this error (warning) in my cPanel error log: [10-Oct-2017 14:04:27 America/Louisville] PHP Warning: Invalid argument supplied for foreach() in /home/claudias/public_html/modules/shipping/All_In_One_Shipping/shipping.class.php on line 46. Here is the code referenced: $this->_item_count = 0; (LINE 46) foreach ($this->_basket['contents'] as $item) { // XXX May want to exclude digital products from the item count, i.e. // if ($item['digital']) continue; $this->_item_count += $item['quantity']; } Anything to worry about? If so how do I fix it? Thanks in advance, Claudia
×
×
  • Create New...