Jump to content

Claudia M

Member
  • Posts

    847
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by Claudia M

  1. No they are not in the same category LOL That would be some weird category. What I'm asking, would there be a problem if: Product number 1 of a category had ID say 120 the second item 135 .... Product number of a DIFFERENT category has ID 122, or any number between 120 and 135 Claudia
  2. I was looking at the instructions for this and I think I remembered why I couldn't use it for my cc5 store. I can't go by product IDs. Mine are in no set order as I do not list items in a set order. EX: one incense burner could have a product ID of 5. Then I list a vintage telephone giving it a product ID of 6. Then I list another incense burner, giving it a product ID of 7. See where I'm going? My incense burners will stop having a product ID in order pretty quick. There's no way I can list items so each catepory will have consecutive product IDs. Is there anyway this could go by Product Codes? I do have them in order. Example of my vintage advertising ashtrays: VATA010M, VATA015M, VATA020M, VATA025M. Note they are spaced by 5 in case I want to add a product between them. 10 - 15- 20 - 25. Or, better yet, can I use the custom sort number generated from my Custom Product Sort mod by SemperFi - I love that mod! It just goes by the above numbers without the letters. Thanks, Claudia
  3. Thanks Brian, I'll try it out and let you know! Claudia
  4. Hi, I would like to place a previous button on each product page at the top left under the title line and a next button on each product page at the top right under the title line. This way a shopper can continue browsing items in a category without having to go back to the category page. Here's an example of what one of my product pages looks like: https://www.claudiasbargains.com/set-of-vintage-treadle-sewing-machine-drawers-in-case-2.html I'd want it under the line under the title. Thanks in advance for any and all help! Claudia
  5. Hi Lemontree, It's based on foundation but I changed alot of the coding to make it look the way I wanted. Thanks for your comment!
  6. All the times I've read that and never noticed ... Thank you Claudia
  7. Well ... I'm done unless your comments or my brain cells think of something else. https://www.claudiasbargains.com/ I couldn't have done this without the following people. So thank you so very much to: Brian Smithers - forum help Daren Clarke SemperFiWebServices: Add to Social Media Custom Product Sort Related Products Ask about a Product Verical Navigation Menu Alec Broughton Noodleman: Products Addon Cart Designs: Sitemap If I forgot anybody I'm sorry. This post sounds like I just won an Academy Award. LOL Claudia
  8. Hi, I was editing some products today and all was fine. Suddenly I go to edit a product (clicked the edit box in admin) and the page won't load. Totally blank. The page address is in the browser address bar - just won't load.I tried clearly the cache and hard clearing the browser CTL + F5 - nothing Thanks in advance, Claudia Well, it suddenly started working again. Sorry for the bother. Anyone know what might have caused this?
  9. Hi, How can I remove the ( ) around the shipping product, ex. ($7.51) USPS: First Class, in the dropdown menu on the checkout page for the shipping price options. I'd also like to put another space between the price and shipping product. And how can I change the blue color of the hover when looking at the dropdown shipping price options. Thanks for any and all help, Claudia
  10. Hi, What does this error mean? Is it something to worry about? I'm running 6.0.11 [21-Mar-2016 14:36:08 UTC] PHP Warning: Stored session data did not match DB record. Session aborted as possible session hijack. Old IP Address: '66.249.75.219' New IP Address: '66.249.74.73' Old User Agent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 8_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12F70 Safari/600.1.4 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)' New User Agent: 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)' in /home1/willow39/public_html/classes/session.class.php on line 651 Thanks, Claudia
  11. Thanks so much! I changed the code a little so the URL would be on its own line. Do you think this is okay and won't cause any problems? <div class="row"> <div class="small-6 medium-3 columns receipt">Shipping Method:</div> <div class="small-6 medium-9 columns receipt"><a href="{$DELIVERY.url}" target="_blank">{$DELIVERY.product}</a></div> </div> <div class="row"> <div class="small-6 medium-3 columns receipt">Tracking Information:</div> <div class="small-6 medium-9 columns receipttrack"><a href="{$DELIVERY.url}" target="_blank">{$DELIVERY.url}</a></div> </div> Thanks Brian, Claudia
  12. That shows USPS: First Class but still no tracking number. Did remove the All In One Shipping wording. Claudia
  13. Hi, I just updated to 6.0.11 and I am having this issue: 1. I place a test order using print order form as payment method 2. I go into admin and add a tracking number - full URL - in the delivery section of the order 3. As customer I look at my order history. This is what I find Delivery Shipment Tracking Number: All_In_One_Shipping (USPS: First Class) (USPS: First Class) is my Method Name/Description in the All in One Shipping Module No tracking number. Click on All_In_One_Shipping (USPS: First Class) and it does takes you to the USPS tracking site. I must mention, I hate, hate, hate, the wording All_In_One_Shipping showing up anywhere. To me it seems very unprofessional. To that end I have removed {shipping_method} (or wording to that effect) in admin, emails, anywhere I find it. I'm just having trouble with this portion on the content.receipt.php skin file. I did change it in the order summary section. How do I get the tracking number to show instead of the All_In_One_Shipping (USPS: First Class)? Here's my code: {if $DELIVERY} <hr> <h4 class="page-section-title">{$LANG.common.delivery}</h4> {if !empty($DELIVERY.date) && $DELIVERY.date!=='0000-00-00'} <div class="row"> <div class="small-6 medium-3 columns receipt">{$LANG.orders.shipping_date}:</div> <div class="small-6 medium-9 columns receipt">{$DELIVERY.date}</div> </div> {/if} {if !empty($DELIVERY.url)} <div class="row"> <div class="small-6 medium-3 columns receipt">{$LANG.orders.shipping_tracking}:</div> <div class="small-6 medium-9 columns receipt"><a href="{$DELIVERY.url}" target="_blank">{$DELIVERY.method}{if !empty($DELIVERY.product)} ({$DELIVERY.product}){/if}</a></div> </div> {elseif !empty($DELIVERY.tracking)} <div class="row"> <div class="small-6 medium-3 columns">{$LANG.catalogue.delivery_method}:</div> <div class="small-6 medium-9 columns">{$DELIVERY.method}{if !empty($DELIVERY.product)} ({$DELIVERY.product}){/if}</div> </div> <div class="row"> <div class="small-6 medium-3 columns receipt">{$LANG.orders.shipping_tracking}:</div> <div class="small-6 medium-9 columns receipttrack">{$DELIVERY.tracking}</div> Thanks in advance for any and all help, Claudia
  14. In cc6 there is an option in admin/filemanager/documents to create a 404 Page Not found Error document. Are you saying that was brought over when I upgraded from CC5 and it serves no purpose in CC6?
  15. So you are saying change the template file - don't change the file in admin documents. Then why is that option in admin/documents? By the way I changed the template file and it works now. Thanks, Claudia
  16. That is what shows when I remove a character from a working webpage and resend the page. This is not my custom page.
  17. Hi, I accept credit cards thru PayPal. I want to change the styling of the page where the customer inserts their credit card information. The text boxes go the length of the page and I want to make them shorter. Thanks, Claudia
  18. Hi, When I upgraded to CC6 from CC5 I created a document for 404 errors and uploaded thru admin - documents and it worked fine. Now the file has disappeard and the standard is showing not my custom page.How can I get it back? Thanks Claudia 404 - Page Not FoundSorry but the page you are looking for could not be found. (This is what is showing now)
  19. Ok I think i found what you were talking about. The error is [14-Aug-2015 06:11:42 UTC] PHP Warning: Security Warning: Illegal array key "sort%5Bdate_added%5D" was detected and was removed. in /home1/willow39/public_html/classes/sanitize.class.php on line 72 There were a lot of these errors I got it to fix. Copied and pasted the classes/language.class.php from the original 607 into control panel. Eerything works now
  20. found the error log. This is what was in it. [Tue Oct 06 17:18:20 2015] [error] [client 68.180.228.243] File does not exist: /home1/willow39/public_html/images/source/vbso [Tue Oct 06 17:13:01 2015] [error] [client 66.249.67.228] File does not exist: /home1/willow39/public_html/images/cache/vhmp/120 [Tue Oct 06 17:09:00 2015] [error] [client 66.249.67.144] File does not exist: /home1/willow39/public_html/images/cache/vbso
  21. there are no errors in the admin error log in phpMyAdmin. There is no just error_log The following was in the system_error_log : includes/functions.inc.php:148 - Error checking CHMOD with the time 1444081954 Claudia the permissions are set at 755 on the classes/cubecart.class.php and the classes/lanuage.class.php - the files that needed patching in 608
  22. All I did was apply the patches for issues 795, 845 and 846. manually instead of doing a complete upload and now I can't login in to admin and my store won't load. Just blank white pages. I took out the patches and put the files back as they were and still have the same problem. Any help is appreciated. Thanks, Claudia
  23. Thanks, Dodgebill - It was a lot of fun!
  24. Not all the way done. Still need to redo some images on the product pages - but getting there. Thanks to Brian Smithers and Daren Clarke at SenperFi for all your help. Any comments and suggestions, good and bad, are very welcome https://www.claudiasbargains.com
×
×
  • Create New...