Jump to content

Claudia

Member
  • Posts

    242
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Claudia

  1. Go Chiefs for the Super Bowl!!!
  2. I didn't have the sort_order column so I added it - still won't save the sort change. I have a word document with all the AIOS changes we made long ago. I'm goin to check it out. By the By --- Yeah Bengals!!!!!!
  3. I'm using Version 1.0.24 of the AIOS. Brian has made design changes for me and I'm not sure what has been implemented into the core code. Anyway, I'm updating my USPS rates and all goes fine. But when I try to rearrange the lines it lets me rearrange them but when I hit save it goes back to the original order and doesn't save my new order. Oh, and the clicking the checkbox across frm add new shipping rates doesn't do anything Any ideas? Thanks in advance as always! One more question -- I would like for Cubecart to show the rates from my zip code zone before the state zone. I can't remember what goes first in ordering the zone. I know at one time it was the smallest first but not sure if that is the way now
  4. I think it may be this line. When I deleted it, it seems to work. Very early testing. I'm going to try your way with full code <tr> <td>{$product.cost_price / $product.quantity} x {$product.quantity} = {($product.quantity * $product.cost_price / $product.quantity)|string_format:"%01.2f"} </td> </tr> I got this error: [<strong>Exception</strong>] /home/xxxxxx/public_html/cache/skin/c026dd1e5327da79bb92cc396f86efc387fc62ea_0.file.orders.index.php.php:1223 - Division by zero https://www.cambargainstore.com/admin_xxxxxx_g=orders&node=index&action=add
  5. I don't understand what is going on here. If I put the above block of code in my "More Info" tab it looks fine for orders already created. But, if I click on Create an Order the screen looks like this (Same as beginning of post). Any ideas as to why? I thought it might have to do with "input" but not sure
  6. This works fine if I don't use the More Info Tab you created with the code snippet. Sorry, I didn't give you the whole code for that one table. There are more tables similair to this. <table width="97%" style="float:left;margin-bottom:30px;"> <tr> <td> <table width="29%" style="margin-right: 4px;float:left;"> <thead> <tr> <th width="37%">Cost and Fees</th> </tr> </thead> <tbody> <tr> <td><strong>Removed from Box List</strong> </td> </tr> <tr> <td><strong>Item Cost</strong> </td> </tr> <tr> <td><strong>Items Cost</strong> </td> </tr> <tr> <td><strong>Box Cost</strong> </td> </tr> <tr> <td><strong>Total Box and Handling</strong> </td> </tr> <tr> <td><strong>eBay FVF</strong> </td> </tr> <tr> <td><strong>Etsy Insertion Fee</strong> </td> </tr> <tr> <td><strong>Etsy Transaction Fee</strong> </td> </tr> <tr> <td><strong>Etsy Processing Fee</strong> </td> </tr> <tr> <td><strong>PayPal Fee</strong> </td> </tr> <tr> <td><strong>Actual Shipping</strong> </td> </tr> </tbody> </table> <table width="34%" style="margin-right: 4px;float:left;"> <thead> <tr> <th width="26%">Cost and Fees Value</th> </tr> </thead> <tbody> <tr> <td>{$SUMMARY.box_list} </td> </tr> <tr> <td>{$product.cost_price / $product.quantity} x {$product.quantity} = {($product.quantity * $product.cost_price / $product.quantity)|string_format:"%01.2f"} </td> </tr> <tr> <td>{$SUMMARY.multi_cost} </td> </tr> <tr> <td>{$SUMMARY.cost_box} </td> </tr> <tr> <td>{$SUMMARY.cost_handling} </td> </tr> <tr> <td>{$SUMMARY.fee_ebay_fvf} </td> </tr> <tr> <td>{$SUMMARY.fee_etsy_insert} </td> </tr> <tr> <td>{$SUMMARY.fee_etsy_fvf} </td> </tr> <tr> <td>{$SUMMARY.fee_etsy_sales} </td> </tr> <tr> <td>{$SUMMARY.fee_pp} </td> </tr> <tr> <td>{$SUMMARY.actual_shipping} </td> </tr> </tbody> </table> <table width="34%" style="margin-right: 4px;float:left;"> <thead> <tr> <th width="37%">Cost and Fees Input</th> </tr> </thead> <tbody> <tr> <td><input type="text" id="box_list" name="summary[box_list]" value="{$SUMMARY.box_list}" class="textbox" style="width:175px"> </td> </tr> <tr> <td>{$product.cost_price / $product.quantity} x {$product.quantity} = {($product.quantity * $product.cost_price / $product.quantity)|string_format:"%01.2f"} </td> </tr> <tr> <td><input type="text" id="multi_cost" name="summary[multi_cost]" value="{$SUMMARY.multi_cost}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="cost_box" name="summary[cost_box]" value="{$SUMMARY.cost_box}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="cost_handling" name="summary[cost_handling]" value="{$SUMMARY.cost_handling}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_ebay_fvf" name="summary[fee_ebay_fvf]" value="{$SUMMARY.fee_ebay_fvf}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_etsy_insert" name="summary[fee_etsy_insert]" value="{$SUMMARY.fee_etsy_insert}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_etsy_fvf" name="summary[fee_etsy_fvf]" value="{$SUMMARY.fee_etsy_fvf}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_etsy_sales" name="summary[fee_etsy_sales]" value="{$SUMMARY.fee_etsy_sales}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_pp" name="summary[fee_pp]" value="{$SUMMARY.fee_pp}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="actual_shipping" name="summary[actual_shipping]" value="{$SUMMARY.actual_shipping}" class="textbox" style="width:175px"> </td> </tr> </tbody> </table> </td> </tr> </table>
  7. For some reason the More Info tab you helped me with for my admin orders is still showing as way above in the first post if I use it. If I comment it out all works as it should. I know this sounds weird but it seems to be the input code. Here's a sample. Any ideas what's causing it not to work? <table width="34%" style="margin-right: 4px;float:left;"> <thead> <tr> <th width="26%">Cost and Fees Value</th> </tr> </thead> <tbody> <tr> <td>{$SUMMARY.box_list} </td> </tr> <tr> <td>{$product.cost_price / $product.quantity} x {$product.quantity} = {($product.quantity * $product.cost_price / $product.quantity)|string_format:"%01.2f"} </td> </tr> <tr> <td>{$SUMMARY.multi_cost} </td> </tr> <tr> <td>{$SUMMARY.cost_box} </td> </tr> <tr> <td>{$SUMMARY.cost_handling} </td> </tr> <tr> <td>{$SUMMARY.fee_ebay_fvf} </td> </tr> <tr> <td>{$SUMMARY.fee_etsy_insert} </td> </tr> <tr> <td>{$SUMMARY.fee_etsy_fvf} </td> </tr> <tr> <td>{$SUMMARY.fee_etsy_sales} </td> </tr> <tr> <td>{$SUMMARY.fee_pp} </td> </tr> <tr> <td>{$SUMMARY.actual_shipping} </td> </tr> </tbody> </table> <table width="34%" style="margin-right: 4px;float:left;"> <thead> <tr> <th width="37%">Cost and Fees Input</th> </tr> </thead> <tbody> <tr> <td><input type="text" id="box_list" name="summary[box_list]" value="{$SUMMARY.box_list}" class="textbox" style="width:175px"> </td> </tr> <tr> <td>{$product.cost_price / $product.quantity} x {$product.quantity} = {($product.quantity * $product.cost_price / $product.quantity)|string_format:"%01.2f"} </td> </tr> <tr> <td><input type="text" id="multi_cost" name="summary[multi_cost]" value="{$SUMMARY.multi_cost}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="cost_box" name="summary[cost_box]" value="{$SUMMARY.cost_box}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="cost_handling" name="summary[cost_handling]" value="{$SUMMARY.cost_handling}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_ebay_fvf" name="summary[fee_ebay_fvf]" value="{$SUMMARY.fee_ebay_fvf}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_etsy_insert" name="summary[fee_etsy_insert]" value="{$SUMMARY.fee_etsy_insert}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_etsy_fvf" name="summary[fee_etsy_fvf]" value="{$SUMMARY.fee_etsy_fvf}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_etsy_sales" name="summary[fee_etsy_sales]" value="{$SUMMARY.fee_etsy_sales}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="fee_pp" name="summary[fee_pp]" value="{$SUMMARY.fee_pp}" class="textbox" style="width:175px"> </td> </tr> <tr> <td><input type="text" id="actual_shipping" name="summary[actual_shipping]" value="{$SUMMARY.actual_shipping}" class="textbox" style="width:175px"> </td> </tr> </tbody> </table> </td> </tr> </table>
  8. This worked! Yeah!! Do you think it's ok to use my custom admin now?
  9. My error log in cPanel is 70.31 MB. It won't let me edit it to clear it. I can view it. Here's the last few entries [19-Jan-2023 13:47:42 America/Louisville] PHP Warning: Undefined array key "/images/cache/lunchbox-disney-magic-kingdom-wonderful-world/09-lunchbox-disney-magic-kingdom-wonderful-world-back-side.600.jpg" in /home/cambarga/public_html/classes/catalogue.class.php on line 2154 [19-Jan-2023 13:47:42 America/Louisville] PHP Warning: Undefined array key "/images/source/lunchbox-disney-magic-kingdom-wonderful-world/09-lunchbox-disney-magic-kingdom-wonderful-world-back-side.jpg" in /home/cambarga/public_html/classes/catalogue.class.php on line 2154 [19-Jan-2023 13:47:42 America/Louisville] PHP Warning: Undefined variable $random_product in /home/xxxx/public_html/classes/gui.class.php on line 1348 [19-Jan-2023 13:47:42 America/Louisville] PHP Warning: Undefined variable $cache_id in /home/xxxx/public_html/classes/gui.class.php on line 1305 [19-Jan-2023 13:47:42 America/Louisville] PHP Deprecated: preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /home/xxxx/public_html/classes/cache/file.class.php on line 224 That luncbox has nothing to do with the order I was trying to create. In the deBug when trying to create the order I get this: PHP: [Warning] /home/xxxxxx/public_html/classes/order.class.php:194 - Undefined global variable $cart[Exception] /home/xxxxx/public_html/classes/order.class.php:194 - method_exists(): Argument #1 ($object_or_class) must be of type object|string, null given https://github.com/cubecart/v6/issues/3116 I fixed code from above This is what I get in developer tools thru Firefox. Please remember you are really getting out of my depth here and I don't have a clue what any of this means.
  10. I have been working on this for days!!!!!!! I have uploaded ALL stock files for 6.4.9 and I still cannot create an order. It lets me input the info but when I click save I get a white screen. I turned on debug in admin and this is the only warning I get [Warning] /home/xxxxxxx/public_html/classes/language.class.php:94 - Undefined variable $cache[Deprecated] I have cleared the cache thru admin and manually thru cPanel This is driving me nuts! At this point I don't even care if it was something stupid I did. I just want to create an order! LOL
  11. Could this have anything to do with the code snippet your made for me to add a new tab in the orders? Maybe it doesn't work with PHP 8? <?php if($_GET['_g'] == 'orders' && (!isset($_GET['node']) || $_GET['node'] == 'index') && isset($_GET['action']) && in_array($_GET['action'], array('add','edit'))) { $tab['name'] = 'More Order Info'; $tab['tab_id'] = 'tab_moreorderinfo'; $tab['target'] = '#moreorderinfo'; $tabs[] = $tab; } Unique ID: specialorderdata@cubecart6 trigger: admin.tabs
  12. I think I will upload just the stock files and go one by one to change for my customizations. It's really not that much. It's saying it can't load https://www.cambargainstore.com/xxxxxxx.php?_g=orders&action=add
  13. Well, you get one thing working right and something else pops up. I cannot create an order. I have a custom admin skin and when I click create order this is what I get. When I look in the web developer tools I get this error message. I tested this in Firefox and Microsoft Edge. I don't have other browsers installed. This page is in Quirks Mode. Page layout may be impacted. For Standards Mode use “<!DOCTYPE html>”. FYI: the main template in admin / skins has the <!DOCTYPE html> at the top. When I switch to the default admin skin it will let me input the order information, saves it, but then it doesn't show and it is gone. When I sell something on ebay or etsy I create an order for that in CC. I move the main image to a folder I call aaa and delete the original folder the images were in. There is no way to move the photos. It just says "Please select …" I went to the GitHub and saw the fix for this and applied it.
  14. Thank you Brian, Al and whoever else was involved for gettting this fixed so quickly. Really appreciated
  15. That looks alot better - Thanks again!
  16. Found it! I keep copies of my changed files on my computer. Those are the ones I checked. I decided to check thru cPanel and found it in element.google_analytics.php Thanks for all your help!
  17. I have looked thru those files and more many times and I can't find a rogue }. Probably looking right at it and don't see it knowing me. I changed to the dropdown box for the pagination but I hope this gets resolved sooner than later - that box is ugly LOL
  18. It's based off Foundation. When I upgraded to 6.4.9 I went thru each file to see what changes were made. I just noticed that my other store that is running 6.4.7 has this same issue. "The "bug", so to speak, is that CC6 can no longer deal with 'page=all', but did not provide code to catch that should it happen." What can I do to remedy this?
  19. I did as you said Line 19: {$params[$var_name] = $page - 1} Line 13: {if ($page >= $show - 1)} It still doesn't work - same issues. Here's what I got in the error log [<strong>Exception</strong>] /home/cambarga/public_html/cache/skin/918a8a00811b40113065ec26a12d2bc080540e8b_0.file.element.paginate.php.php:43 - Unsupported operand types: string - int https://www.cambargainstore.com/aromatherapy?page=all [<strong>Exception</strong>] /home/cambarga/public_html/cache/skin/918a8a00811b40113065ec26a12d2bc080540e8b_0.file.element.paginate.php.php:43 - Unsupported operand types: string - int https://www.cambargainstore.com/aromatherapy?page=all
  20. Thanks Brian What about my pagination code stuff?
  21. Did something change with the pagination with CC6.4.9 or is it my custom code? 1. On all pages of my store, even checkout, there is a } on the top left corner - see image 2. On the category page my pagination is messed up. If I have multiple pages and click on the individual number it's ok. But if I click on view all it gives me a blank screen except for this in the top left corner - See image 3. Here's the code of my top pagination on the category page: {if $PAGINATION} <div class="row text-right right"> <div class="small-6 medium-12 large-12 columns show-for-medium-up thinpad-top"> {include file='templates/element.paginate.php'} </div> </div> {/if} 4. Here’s the code for the bottom pagination on the category page that I've always used: {if $PAGINATION} <div class="row"> <div class="small-12 large-9 columns"> {$PAGINATION} </div> </div> {/if} <div class="hide" id="ccScrollCat">{$category.cat_id}</div> {if $page!=='all' && ($page < $total)} {$params[$var_name] = $page + 1} {* Add "hide-for-medium-up" to the class attribute to not display the more button *} <a href="{$current}{http_build_query($params)}{$anchor}" data-next-page="{$params[$var_name]}" data-cat="{$category.cat_id}" class="button tiny expand ccScroll-next hide-for-medium-up">{$LANG.common.more} <svg class="icon"><use xlink:href="#icon-angle-down"></use></svg></a> {/if} <div class="text-center hide" id="loading"><svg class="icon-x3"><use xlink:href="#icon-spinner"></use></svg></div> </div> 5. When I noticed the above I looked at my error log and I still had over 800 errors even though I had changed my ini.inc.php file as Brian suggested. Is it always going to be like this? 6. Here's what was in the error log pertaining to the pagination. Today, 10:58 [<strong>Exception</strong>] [<strong>Deprecated</strong>] /home/xxxxx/public_html/classes/cache/file.class.php:224 - preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated https://www.cambargainstore.com/ashtrays?page=1 Today, 10:58 [<strong>Exception</strong>] /home/xxxxxx/public_html/cache/skin/918a8a00811b40113065ec26a12d2bc080540e8b_0.file.element.paginate.php.php:43 - Unsupported operand types: string - int https://www.cambargainstore.com/ashtrays?page=all Today, 10:58 [<strong>Deprecated</strong>] /home/xxxxxxx/public_html/classes/cache/file.class.php:224 - preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated https://www.cambargainstore.com/ashtrays?page=3 Today, 10:58 [<strong>Deprecated</strong>] /home/xxxxxxx/public_html/classes/cache/file.class.php:224 - preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated https://www.cambargainstore.com/ashtrays?page=2 As always I truly appreciate any and all help Claudia
  22. If that's the same as debug disabled in admin / Store Settings / Advanced then yes. If the debug mode you're talking about is something else I don't know what it is
×
×
  • Create New...