Jump to content

Claudia M

Member
  • Posts

    847
  • Joined

  • Last visited

  • Days Won

    13

Everything posted by Claudia M

  1. I did purchase Droidedit the other day! Glad to know I chose a good one! Thanks!
  2. Hi, I just got a Samsung Android tablet and I was wondering if anyone used a tablet like this to work on their site. Some example: upgrade to latest CC version, list a product, change code. I have never used a table for anything before so please roll your eyes but help me if you can. What app do you use to edit the php html? Any other information I should know? Thanks in Advance, Claudia
  3. I don't think the two are connected. I just tested and this is what it shows when a logged in customer has added an item to their cart. I added the 'view basket" link myself awhile back. Click the words you go to the view your basket page. Click the dollar amount you get the mini basket with go to secure checkout.
  4. I did add some code to the cubecart.class file for a Custom Sort mod from SemperFi (the plugin he has doesn't work for me). That would explain the line change. If you don't think it's worrisome, I'll just ignore this error.
  5. "That particular warning is "ignore-able", but please keep in mind it gets logged because CubeCart is not agreeing with something. Therefore, in this specific regard, CubeCart may not operate exactly as one may expect. Still, /classes/cubecart.class.php, line 1700 is not where the error message is supposed to be coming from." Well, that's going to bug me! Anyway we can find out why this error is happening? Could it be in here? Here is my code for skins/contents/checkout.small: <table class="expand"> {if isset($SHIPPING)} <tr> <td class="bdco-right"colspan="4"> <span class="txt pad-top">Select your shipping method </span><br /> <span class="txt-med" style="font-weight:normal; padding-bottom:0.625rem!important;"> This may change if your delivery address changes during the checkout process</span> <ul class="no-bullet center" style="margin-top: 0rem!important;margin-bottom: 0rem!important;"> {foreach from=$SHIPPING key=group item=methods} {foreach from=$methods item=method} <li> <input name="shipping" type="radio" value="{$method.value}" id="{$method.value}" {$method.selected|replace:'selected':'checked'}><label for="{$method.value}">{$method.display}</label> </li> {/foreach} {/foreach} </ul> </td> </tr> And further down: <tr> <td class="bg-white txt"colspan="6"> {if $ESTIMATE_SHIPPING} <a class="txt-med bold bgw" href="#">Get a Shipping Estimate for your Delivery Address</a> <div> <div class="txt norm">Specify your delivery address below. All information is required to get an accurate quote</div> <div class="thinpad-top"><span class="txt-sm deep-red norm deep-red">For locations outside of the United States and its territories not available below please <a class="uline" href="/contact-us.html"target="_blank" title="Contact Us">contact us.</a> &nbsp;&nbsp; Why we have this <a class="uline" href="/payments-/-shipping.html"target="_blank" title="International Shipping Policy">International Shipping Policy</a> </span></div> <div class="pad-top"for="estimate_country">{$LANG.address.country}</div> <select name="estimate[country]" id="estimate_country" class="nosubmit country-list" rel="estimate_state"> {foreach from=$COUNTRIES item=country}<option value="{$country.numcode}" {$country.selected}>{$country.name}</option>{/foreach} </select> <div for="estimate_state">{$LANG.address.state}</div> <input type="text" name="estimate[state]" id="estimate_state" value="{$ESTIMATES.state}" placeholder="{$LANG.address.state}"> <div for="estimate_postcode">{$LANG.address_en.zipcode}</div> <input type="text" value="{$ESTIMATES.postcode}" id="estimate_postcode" placeholder="{$LANG.address_en.zipcode}" name="estimate[postcode]"> <input type="submit" name="get-estimate" class="button expand" value="{$LANG.basket.fetch_shipping_rates}"> <script type="text/javascript"> var county_list = {$STATE_JSON}; </script> </div> {/if} </td></tr>
  6. No, if you click Fetch Shipping Rates it does update and shows shipping options with th default rate applied. If you select a different shipping rate other than the default it automatically applies that rate without having to update. The customer ony has to manually update the cart if I have "Allow physical orders even if no shipping options are available" enabled - which I don't. Does my code look ok? Can I ignnore that warning in my error log?
  7. I changed the code to radio buttons per a post in this forum. Here is my code for skin/content/checkout-medium-up. And I changed the Estimate code too. Also disabled intial shipping in store admin. For radio buttons: {if isset($SHIPPING)} <tr> <td colspan="4"> <span class="txt pad-top">Select your shipping method </span><br /> <span class="txt-sm deep-red" style="font-weight:normal; padding-bottom:0.625rem!important;"> This may change if your delivery address changes during the checkout process</span> <ul class="no-bullet center" style="margin-top: 0rem!important;margin-bottom: 0rem!important;"> {foreach from=$SHIPPING key=group item=methods} {foreach from=$methods item=method} <li> <input name="shipping" type="radio" value="{$method.value}" id="{$method.value}" {$method.selected|replace:'selected':'checked'}><label for="{$method.value}">{$method.display}</label> </li> {/foreach} {/foreach} </ul> </td> <td class="bg-white">{$LANG.basket.shipping}<br /> </td> <td class="text-right bg-white">{$SHIPPING_VALUE}</td> </tr> Then for the Estimate: <td class="bg-white txt pad-top bd-top"colspan="6"> {if $ESTIMATE_SHIPPING} <a class="bg-white" href="#">Get a Shipping Estimate for your Delivery Address</a> <div> <div class="txt-med norm">Specify your delivery address below. All information is required to get an accurate quote</div> <div class="thinpad-top"><span class="txt-sm norm deep-red">For locations outside of the United States and its territories not available below please <a class="uline" href="/contact-us.html"target="_blank" title="Contact Us">contact us.</a> &nbsp;&nbsp; Why we have this <a class="uline" href="/payments-/-shipping.html"target="_blank" title="International Shipping Policy">International Shipping Policy</a> </span></div> <div class="pad-top"for="estimate_country">{$LANG.address.country}</div> <select name="estimate[country]" id="estimate_country" class="nosubmit country-list" rel="estimate_state"> {foreach from=$COUNTRIES item=country}<option value="{$country.numcode}" {$country.selected}>{$country.name}</option>{/foreach} </select> <div for="estimate_state">{$LANG.address.state}</div> <input type="text" name="estimate[state]" id="estimate_state" value="{$ESTIMATES.state}" placeholder="{$LANG.address.state}"> <div for="estimate_postcode">{$LANG.address.postcode}</div> <input type="text" value="{$ESTIMATES.postcode}" id="estimate_postcode" placeholder="{$LANG.address.postcode}" name="estimate[postcode]"> <input type="submit" name="get-estimate" class="button expand" value="{$LANG.basket.fetch_shipping_rates}"> <script type="text/javascript"> var county_list = {$STATE_JSON}; </script> </div> {/if} </td></tr> Then in skin js/2.cubecart.js I changed line 82 too: $(".autosubmit select, .autosubmit input[type='radio']").not('.nosubmit').change(function() { $(this).parents(".autosubmit").submit(); });
  8. "In the code, I see that "Disable shipping and tax estimates" and "Allow physical orders even if no shipping options are available" do not interact with each other. The error message implies "Allow if no shipping" is not enabled, and that no shipping modules are returning any rates. " So the error is not really a big deal? if you check Allow physical orders even if no shipping options are available then the customer has to click "update cart" to see shipping rates after using the estimator.
  9. Hi, I Disabled initial shipping & tax estimates in admin/store settings/features now I'm getting a lot of warnings in my error log. Anything to be concerned with? Thanks in advanced. [18-Mar-2018 10:03:20 America/Louisville] PHP Warning: Shipping not setup or allow no shipping not enabled in /home/claudias/public_html/classes/cubecart.class.php on line 1700 [18-Mar-2018 10:14:57 America/Louisville] PHP Warning: Shipping not setup or allow no shipping not enabled in /home/claudias/public_html/classes/cubecart.class.php on line 1700 [18-Mar-2018 10:18:15 America/Louisville] PHP Warning: Shipping not setup or allow no shipping not enabled in /home/claudias/public_html/classes/cubecart.class.php on line 1700 Also getting this error but I don't know if it's connected. 18-Mar-2018 05:18:07 UTC] PHP Warning: array_merge() [&lt;a href='http://docs.php.net/manual/en/function.array-merge.php'&gt;function.array-merge.php&lt;/a&gt;]: Argument #1 is not an array in /home/claudias/public_html/classes/seo.class.php on line 357 [18-Mar-2018 05:57:02 UTC] PHP Warning: Invalid Security Token in /home/claudias/public_html/classes/sanitize.class.php on line 152
  10. This is what I did. Disabled "Disable initial shipping & tax estimates". Then changed Checkout page to look like this. After they put in info it looks like this: But now I get these warnings in my error log. Anything to worry about? [17-Mar-2018 09:52:44 America/Louisville] PHP Warning: Shipping not setup or allow no shipping not enabled in /home/claudias/public_html/classes/cubecart.class.php on line 1700 [17-Mar-2018 09:54:12 America/Louisville] PHP Warning: Shipping not setup or allow no shipping not enabled in /home/claudias/public_html/classes/cubecart.class.php on line 1700
  11. "In admin, Languages, edit the language the store is using, select "Contact" from the drop-down, and scroll to 'email_contact'. Precisely on the phrase email_content, click once. This makes the text entry field editable. Make sure there are four %s placeholders. There may be a small clock icon to the right of the text entry field." I had added fields to the contact form for international shipping, but had deleted them in the contact form when I upgraded. That caused the inconsistency. I didn't remember about having to change it in admin. Thanks, Brian. My contact form is working now.
  12. I just upgraded to 6.1.14 and now I get this red error when I send the contact form. The following errors were detected: There was an error sending your message, please try again. i've tested my email in store settings advanced settings and it did send the test email. I'm using recaptcha 2. PHP mail () function I get this error in debug [Warning] /home/claudias/public_html/classes/cubecart.class.php:1435 - sprintf() [function.sprintf.php]: Too few arguments[Notice] /home/claudias/public_html/classes/seo.class.php:506 - Undefined variable: title All help is appreciated
  13. I want to leave the order number blank, empty, so the customer can put in the order number they want to look up - not like it is in their accounts or linked in the order complete menu where the order number is already there. href="{$STORE_URL}/index.php?_a=vieworder&cart_lookup={$cart_order_id} Is this what I should use?
  14. Hi, I added a "Track Your Order" link to the top of my page using the following: <a class="main-top-bar-txt" href="{$STORE_URL}/index.php?_a=vieworder&cart_lookup">Track Your Order</a></div> and it sends you here: In the browser it reads: https://www.claudiasbargains.com/index.php?_a=vieworder&cart_lookup Anyway, every once in awhile I get this error in my log. Any idea what if anything I should do? I don't know where the } is coming from. [01-Mar-2018 13:55:16 UTC] PHP Warning: Security Warning: Illegal array key &quot;cart_lookup}&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113 Thanks in advance, Me
  15. “ In claudiasbargains.css, line 13, I find that you are overruling cubecart.css, line 111 with respect to background color, from green to white.” I removed that line “That is then overruled by claudiasbargains.css, line 213, still keeping it white.” I changed the background color to white on this because I didn’t want the panels to have that gray like color. If I remove the white color code they will. So what I did was create panel.small and gave it the green color from cubecart.css line 111. Then I went into my skin/template/box.basket and added small after panel like this <div class="hide panel small radius small-basket-detail-container js_fadeOut" id="small-basket-detail"> Is this the way I should do it?
  16. Thanks Brian! I'll implement it asap.
  17. I'm talking about on the small screen - my android phone. I thought this would be more pronounced so the customer could actually see something had been added to their cart. Web address is www.claudiasbargains.com
  18. Based off Cubecart's Foundation skin
  19. What changes would you make to add this feature to a custom Foundation skin?
  20. " id didn't post it.. it captured it in an error log. if it was posted it would be all over your store front for all to see " I meant I posted it here in the forum, so it got some notice like they wanted.
  21. That is so rude!! Bad bot!!! I have the latest version of CC installed - 6.1.13. Is 6.1.14 going to be released soon? " seems like a bot looking for a way in to post crap on a forum " Well it worked. I posted it. Is it ok to clear my log and I don't need to check anything?
  22. In admin/manage hooks/ code snippets there are no snippets that are not suppose to be there.
  23. Look what I found in my error log!!!!!! How did it get there and how do I get rid of it!!!!!! <head> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> </head> [14-Feb-2018 17:40:12 UTC] PHP Warning: Invalid Security Token in /home/claudias/public_html/classes/sanitize.class.php on line 152 [14-Feb-2018 18:00:58 UTC] PHP Warning: Security Warning: Illegal array key &quot;cart_lookup}&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113 [14-Feb-2018 18:38:27 UTC] PHP Warning: Stored session data did not match DB record. Session aborted as possible session hijack. Old IP Address: '98.211.49.133' New IP Address: '98.211.49.133' Old User Agent: 'Microsoft Office Protocol Discovery' New User Agent: 'IEX' in /home/claudias/public_html/classes/session.class.php on line 702 [15-Feb-2018 02:16:19 UTC] PHP Warning: Security Warning: Illegal array key &quot;Comcast_on_a_silver_platter_ On_December_14,_2017,_the_FCC_killed_net_neutrality_rules__But_do_you_truly_understand_the_global_implications_of_such_a_disastrous_decision? These_laws_guaranteed_equal_access_to_the_web_without_paid_prioritization_fees,_unregulated_bandwidth_throttling,_and_rampant_censorship_from_ISPs__Now_these_laws_are_GONE_ The_cable_companies_are_a_few_short_months_away_from_doing_whatever_they_damn_well_please_with_the_Internet__That_includes_shutting_down_&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113 [15-Feb-2018 02:16:19 UTC] PHP Warning: Security Warning: Illegal array key &quot;blocking_businesses_and_websites_like_yours_if_they_dislike_your_content_ If_you_cannot_afford_to_pay_cable_companies_more_money_for_customers_to_reach_your_business,_prepare_to_close_your_doors_for_good_ We_can_still_defeat_the_evil_FCC,_but_we_NEED_your_help_ Please_review_our_petition,_and_join_MILLIONS_of_net_neutrality_supporters_by_LINKING_to_our_page_from_your_website:_https://www_longlivethenet_com/_ Creating_a_LINK_is_casting_a_vote_for_freedom_of_speech_and_the_free_exchange_of_ideas_on_the_open_internet__Please_vote! Long_Live_The_Internet! Note:_We_are_a_non-profit_organization__We_will_never_place_an_advertisement_on_our_webpage__This_page_was_created_for_one_reason_and_one_reason_only,_to_save_the_Internet_as_we_know_it__Join_the_fight!&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113 [15-Feb-2018 02:16:19 UTC] PHP Warning: Security Warning: Illegal array key &quot;Comcast_on_a_silver_platter_ On_December_14,_2017,_the_FCC_killed_net_neutrality_rules__But_do_you_truly_understand_the_global_implications_of_such_a_disastrous_decision? These_laws_guaranteed_equal_access_to_the_web_without_paid_prioritization_fees,_unregulated_bandwidth_throttling,_and_rampant_censorship_from_ISPs__Now_these_laws_are_GONE_ The_cable_companies_are_a_few_short_months_away_from_doing_whatever_they_damn_well_please_with_the_Internet__That_includes_shutting_down_&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113 [15-Feb-2018 02:16:19 UTC] PHP Warning: Security Warning: Illegal array key &quot;blocking_businesses_and_websites_like_yours_if_they_dislike_your_content_ If_you_cannot_afford_to_pay_cable_companies_more_money_for_customers_to_reach_your_business,_prepare_to_close_your_doors_for_good_ We_can_still_defeat_the_evil_FCC,_but_we_NEED_your_help_ Please_review_our_petition,_and_join_MILLIONS_of_net_neutrality_supporters_by_LINKING_to_our_page_from_your_website:_https://www_longlivethenet_com/_ Creating_a_LINK_is_casting_a_vote_for_freedom_of_speech_and_the_free_exchange_of_ideas_on_the_open_internet__Please_vote! Long_Live_The_Internet! Note:_We_are_a_non-profit_organization__We_will_never_place_an_advertisement_on_our_webpage__This_page_was_created_for_one_reason_and_one_reason_only,_to_save_the_Internet_as_we_know_it__Join_the_fight!&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113 [15-Feb-2018 02:16:19 UTC] PHP Warning: Stored session data did not match DB record. Session aborted as possible session hijack. Old IP Address: '68.231.26.137' New IP Address: '68.231.26.137' Old User Agent: '' New User Agent: 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0; .NET CLR 2.0.50727)' in /home/claudias/public_html/classes/session.class.php on line 702 [15-Feb-2018 02:16:19 UTC] PHP Warning: Invalid Security Token in /home/claudias/public_html/classes/sanitize.class.php on line 152 [15-Feb-2018 03:02:24 UTC] PHP Warning: Security Warning: Illegal array key &quot;cart_lookup}&quot; was detected and was removed. in /home/claudias/public_html/classes/sanitize.class.php on line 113
×
×
  • Create New...