Jump to content

chrisranjana.com

Members
  • Posts

    23
  • Joined

  • Last visited

Profile Information

  • Location
    Chennai, India
  • Interests
    Ecommerce development, Prestashop and Opencart programming. Can integrate prestashop with payment gateways, shipping API etc. Can customize prestashop and can create prestashop modules and prestashop addons.
  • Activity
    Developer

chrisranjana.com's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. classes/Cart.php around line 1882 Change $out_stock_part = $product['cart_quantity'] - $product_quantity_in_stock; to $out_stock_part = $product['cart_quantity'];
  2. It splits into 2 orders only when "Send available items first" checkbox is checked. Am I right ?
  3. In file /themes/default-bootstrap/product-list.tpl you can html comment out wherever the price is displayed Like e.g <span class="old-price product-price"> {displayWtPrice p=$product.price_without_reduction} </span> and so on Be sure to take a backup of the original file first.
  4. in file /install/data/db_structure.sql change all instances of CREATE TABLE to CREATE TABLE IF NOT EXISTS and try the installation once again
  5. Check the permission of the "upload" directory and all its contents, it must be 777
  6. Have you tried setting permission 777 to this folder /home3/thecrai7/public_html/cache/ and to ALL its sub directories and files recursively ?
  7. So instead of going to home page (http://demo.prestashop.com/en/?view=front) you want the user to go directly to a particular category like (http://fo.demo.prestashop.com/en/9-casual-dresses) ? This can be done using .htaccess Can you let me know exactly which category page should open ?
  8. Do you have access to phpMyadmin ? If so 1) Take a backup of the present database or Create a copy of the present database including all data- important 2) Drop all tables from the present database. Try to install once again.
  9. Try {foreach from=$contacts|@sortby:"#id_contact" item=contact}
  10. In mailalerts/mailalerts.php public function hookNewOrder($params) { Need to check whether $params contains the new custom registration fields. If so you can use them. If not, need to find a way for retrieving the custom registration fields based on userid or username or email etc.
  11. if ($result['module_name']) { $module = Module::getInstanceByName($result['module_name']); if (Validate::isLoadedObject($module) && isset($module->extra_mail_vars) && is_array($module->extra_mail_vars)) { $data = array_merge($data, $module->extra_mail_vars); } } Can you find for which $result['module_name'] extra_mail_vars are empty ?
  12. Do you want to hide prices of products when they are shown 1) In front page 2) In a category list 3) In search results ? Also are you using any special template or the default template ?
×
×
  • Create New...