Jump to content

Adria Laxson

Members
  • Posts

    80
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Adria Laxson's Achievements

Rookie

Rookie (2/14)

  • Conversation Starter Rare
  • Week One Done Rare
  • One Month Later Rare
  • One Year In Rare

Recent Badges

6

Reputation

  1. Completely locked out of my server & email accounts. I can log into someone else's it's not my computer. This morning all my emails accounts actually say wrong password so thats new. It's been 6 days! Cicciabella.com hosting westhost / cpanel. I used a link yesterday that no longer works today to try & actually reroute my mail.
  2. Yes, I am having a permissions problem. So essentially I just need to change chmod permissions or does it have something to do with my server? It does look like my chmod are right but I'm still looking.
  3. Is it possible that you are having a server/internet provider timeout? If not, first thing to try is another ISP. That may be difficult to do from your phone but has cured any image upload problem I've ever had.
  4. There are so many places to look for this answer. Customer- groups make sure module is enabled in customer group, Carriers – group access, Localization (zones, states, etc)
  5. Ok so I have this perfect code below (for my store) to export orders on a status basis. I've been trying to output to a txt file & always get some sort of error message about my Maria DB server. I feel I'm so close to the answer but can't seem to do it! I know I can convert the csv export to txt. I was just wanting to skip extra steps. An added bonus would be for it to export with the name "Orders.txt" *I include first name only because I import customers with first & last name together. SELECT d.id_order, os.name AS STATUS, g.id_customer, g.firstname AS customer, ad.company, ad.address1, ad.address2, ad.postcode, ad.city, ste.name AS state, cl.name AS country, ad.other, ad.phone, ad.phone_mobile, d.product_name, d.product_upc, d.product_reference, d.product_price, d.product_quantity, d.product_weight, carrier.name AS carrier, gl.name AS ship_code, o.payment, o.date_upd FROM cicciabe_order_detail d LEFT JOIN cicciabe_orders o ON (d.id_order = o.id_order) LEFT JOIN cicciabe_customer g ON (o.id_customer = g.id_customer) LEFT JOIN cicciabe_address ad ON ( o.id_address_delivery = ad.id_address ) LEFT JOIN cicciabe_state ste ON (ste.id_state = ad.id_state) LEFT JOIN cicciabe_country_lang cl ON (cl.id_country = ad.id_country) LEFT JOIN cicciabe_carrier carrier ON ( carrier.id_carrier = o.id_carrier ) LEFT JOIN cicciabe_group_lang gl ON ( g.id_default_group = gl.id_group ) LEFT JOIN cicciabe_order_state_lang os ON ( o.current_state = os.id_order_state ) WHERE o.current_state = 10 ORDER BY o.date_add DESC
  6. I'm working in 1.6 now and realize what your missing in your code is the category name/names that you want your product going into. Adding that line will put it in the proper place. Sorry so late but maybe it helps someone else.
  7. Once a customer has registered & doesn't place an order they cannot return to the site and enter the email credentials on the registered customer login while in the order screen. It shows blank & so they attempt to register again & get the error "already registered email." I'd like to take out the auto fill just for the already registered customers so they can place an order. I tried adding the blue below to the my themes order-opc-newaccount.tpl. I entered it in the Already Registered script but it didn't work. <form action="{$link->getPageLink('authentication', true, NULL, "back=order-opc")}" method="post" id="login_form" class="form_style" autocomplete="off" autofill="off"> How can I keep the email from autofilling on the order screen? Is it smarty code I need to remove? Thank you in advance. Notes: PS 1.5.6.1 1 step order enabled http://www.cicciabella.com/presta/en/
  8. Well thank you. Yes I agree there's some sort of js issue with when I put in the no conflict. I will just keep working in my spare time to figure it out.
  9. I feel like I've tried for awhile & can't seem to find the js error so for now I've just disabled clicking on the full size image (onclick="return false") until I can come up with another option/idea.
  10. Update: it was not the widget. I got rid of that (& put in a new social module that doesn't drive me crazy). Now am just trying to fix the thickbox. Currently checking other people's posts.
  11. In your backoffice did you turn off smarty cache (& clear the cache) before you tried to delete?
  12. I appreciate that so much. I tried it but it didn't work. I really am starting to think its the widget "addthis" script (facebook, twitter counter). I found the error below. I don't have a module called add this & I don't remember hard coding it but I can't seem to get rid of that thing. I tried just deleting it from my product.tpl file & got a fatal error (all kinds of smarty compile errors). I deleted the cache but still can't get rid of the fatal error if I pull the code directly out. I've never not been able to delete something like that. This is the product page error I just found in the console that make me think that it's the cause Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://m.addthis.com/live/red_lojson/100eng.json?sh=2283&ph=2283&ivh=732&dt=14693&pdt=256&ict=&pct=1&perf=widget%7C257%7C125%2Clojson%7C1457%7C864%2Csh%7C1475%7C217&rndr=render_toolbox%7C1478%2Cpreferred_available%7C1866&cmenu=%7B%22sh%22%3A%22share%22%2C%22spc%22%3A%22tbx-300%2Cmen-300%22%7D&ppd=0&ppl=0&fbe=&xmv=0&xms=0&xmlc=0&jsfw=jquery&jsfwv=jquery-1.7.2&al=men&scr=0&scv=0&ba=3&sid=582695a068a6944d&rev=v7.7.2-wp&pub=xa-506085301209b251&dp=www.cicciabella.com&fp=presta%2Fen%2Fdown-comfortoes%2F259-cotton-candy-comfortoes-ppk.html&pfm=0&icns=addthis%2Cfacebook%2Ctwitter%2Cprint%2Cemail%2Cpinterest_share%2Cgmail%2Cgoogle_plusone_share%2Clinkedin%2Cmailto%2Ctumblr. (Reason: CORS header ‘Access-Control-Allow-Origin’ does not match ‘*’).
  13. I was able to get rid of the conflict for all the js by adding below code to jquery.fancybox.js in my theme folder. Now the only one left is the fancybox image is still popping up full screen. I'm going to take a look at just finding code for that. Let me know if you have ideas just for the fancybox image itself when clicked. $.noConflict(); jQuery(document).ready(function($){
×
×
  • Create New...