Jump to content

thezey

Members
  • Posts

    218
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

Recent Profile Visitors

6,097,786 profile views

thezey's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. Is this something to difficult to do for nobody replying to my question?
  2. Hello, I was looking for adding variables in messages on PS 1.7, and I would like to know how I can product name and delivery timeframe (from xx to xy) variables in the predefined messages section. Thanks in advance.
  3. Hello, I am under PS 1.7.6 and am looking for a way to customize messages and send to customers from the back office. In those messages, I'd like to add "First Name", "delivery timeframe" (from "DATE" to "Date". Those would be based on the "shipped date status" and I would give like +3 to +5 business days from shipped date) and "Tracking Number". I would like to give a Subject Line as well. All those data in one single message. Right now, I am doing those manually from my email client as reinsurance emails, but it is not efficient. Thus, I would like to how I can add saved customized messages so that I could send them in 2 clicks and save a lot of time. Please let me know. Thank you
  4. Can somebody help me with this issue please?
  5. Hello, I am under PS 1.7.6 and am looking for a way to customize messages and send to customers from the back office. In those messages, I'd like to add "First Name", "delivery timeframe" (from "DATE" to "Date". Those would be based on the "shipped date status" and I would give like +3 to +5 business days from shipped date) and "Tracking Number". I would like to give a Subject Line as well. All those data in one single message. Right now, I am doing those manually from my email client as reinsurance emails, but it is not efficient. Thus, I would like to how I can add saved customized messages so that I could send them in 2 clicks and save a lot of time. Please let me know. Thank you
  6. Hello, Under Prestashop 1.5.4, I have three carriers and FREE SHIPPING over $99. I need to disable two carriers and just enable one carrier, as I can't ship for free in express. So, I just edited the Cart.php with the following code (note that this only reflects one carrier): // Free fees $disable_freeshipping = array('7'); $free_fees_price = 0; if (isset($configuration['PS_SHIPPING_FREE_PRICE'])) $free_fees_price = Tools::convertPrice((float)$configuration['PS_SHIPPING_FREE_PRICE'], Currency::getCurrencyInstance((int)$this->id_currency)); $orderTotalwithDiscounts = $this->getOrderTotal(true, Cart::BOTH_WITHOUT_SHIPPING, null, null, false); if ($orderTotalwithDiscounts >= (float)($free_fees_price) && (float)($free_fees_price) > 0 && !in_array($id_carrier, $disable_freeshipping)) { Cache::store($cache_id, $shipping_cost); return $shipping_cost; } if (isset($configuration['PS_SHIPPING_FREE_WEIGHT']) && $this->getTotalWeight() >= (float)$configuration['PS_SHIPPING_FREE_WEIGHT'] && (float)$configuration['PS_SHIPPING_FREE_WEIGHT'] > 0 && !in_array($id_carrier, $disable_freeshipping)) { Cache::store($cache_id, $shipping_cost); return $shipping_cost; } However, it is messing everything up and now I got either a blank page or can't add any product to cart. Could you help me figure out the right code under Prestashop 1.5.4 so that I can disable two carriers for free shipping? Thank you in advance!
  7. No, I didn't find any solution to this problem, but I'd love to hear from any expert who could help fix the issue!
  8. I'm sure there's someone in the forum who could help me with the email variable. Please let me know. Thank you
  9. Does anybody have any idea about missing alt text on product pages?
  10. Hello, I'm running under Prestashop 1.5.4.0 and my SEO software detected that there are empty image ALT attributes (please see product page). I have a theme and would like to know how to insert image ALT attributes, where and what code I should add so that Google can read my product pages properly. Thank you
  11. Hello, I'd like to let my customers know the delivery timeframe in the email they automatically receive when I change the status to Shipped under Orders>Orders with Prestashop 1.5.4.0. For example, I need the emails to say: "The expected delivery timeframe is FROM JULY 25 to JULY 30…". Having said that the delivery timeframe is mentioned on the checkout page, as I use the Date of Delivery module. So far, I have added two variables to the AdminOrdersController.php file as followed: ); I was actually wondering if the added variable is correct. Also, am I editing the right php file? Could you please tell me if I'm heading to the right direction? Thank you
×
×
  • Create New...