Jump to content

Search the Community

Showing results for tags 'Handling'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Community Help and Support
    • PrestaShop Download
    • PrestaShop Marketplace
  • News and Announcements
    • PrestaShop news and releases
    • PrestaShop Beta
    • PrestaShop Blogs
    • PrestaShop Meetups
  • International community (English)
    • General topics
    • PrestaShop Merchants
    • PrestaShop Developers
    • Taxes, Translations & Laws
    • Community Modules and Themes
  • Forum francophone
    • Discussion générale
    • Aide et support communautaire
    • PrestaShop pour les marchands
    • PrestaShop pour les développeurs
    • Adaptation aux lois Québécoises
    • Modules et thèmes gratuits
    • Modules et thèmes payants
  • Foro en Español
    • Discusión general
    • Soporte de la comunidad y ayuda
    • Comerciantes PrestaShop
    • Desarrolladores PrestaShop
    • Módulos y plantillas gratuitas
  • Forum italiano
    • Forum generale
    • Aiuto e supporto della Community
    • Commercianti PrestaShop
    • Sviluppatori PrestaShop
    • Aspetti legali sull'eCommerce
    • Moduli e template gratuiti
  • Deutsches Forum
    • Generelle Fragen
    • Support und Hilfe aus der Community
    • e-Commerce/Versand-Handel mit Prestashop
    • Prestashop-Entwickler
    • Anpassung an deutsches Recht
    • Kostenlose Module und Templates
    • Generelle Fragen Copy
  • Nederlandstalig forum
    • Algemeen
    • Hulp en ondersteuning, van en voor de community
    • PrestaShop-winkeliers
    • PrestaShop-ontwikkelaars
    • Het aanpassen van PrestaShop
    • Gratis modules en templates
  • Fórum em Português
    • Fórum Geral
    • Ajuda e Suporte da Comunidade
    • Lojistas que utilizam o PrestaShop
    • Desenvolvedores PrestaShop
    • Legislação específica
    • Módulos e temas gratuitos
  • Polskie forum
    • Forum ogólne
    • Wsparcie i pomoc użytkowników
    • Oferty twórców PrestaShop
    • Deweloperzy PrestaShop
    • Darmowe Moduły i Szablony
  • Dansk forum
    • Generelt forum
    • Hjælp og support fra fællesskabet
    • PrestaShop for købmænd
    • PrestaShop for udviklere
    • Love og regler
    • Gratis moduler og temaer
  • České fórum
    • Instalasi, Konfigurasi dan upgrade
    • Obecná diskuze
    • Bezplatné moduly a šablony
    • PrestaShop vývojáři
    • PrestaShop obchodníci
  • Bahasa Indonesia
    • Diskusi Umum
    • Podpora a pomoc komunity
    • Laporan Bug
    • Jasa, Promosi & Lowongan Kerja
  • Svenskt forum
    • Allmän diskussion
    • Installation, konfigurering och uppdatering
  • Forumul românesc
    • Discuţii generale
    • Instalare, configurare şi upgrade
  • Pусский язык
    • Обсуждение скрипта
    • Установка, Настройка, Обновление
    • Прием багов
  • Slovenské fórum
    • Všeobecná diskusia
    • Podpora a pomoc komunity
    • PrestaShop obchodníci
    • PrestaShop vývojári
    • Bezplatné moduly a šablóny
  • Türkçe Topluluğu
    • Genel Konular
    • Topluluk desteği ve yardım
    • PrestaShop Tüccarları
    • Prestashop Geliştiricileri
    • Ücretsiz Modül ve Temalar
  • Diễn đàn tiếng Việt
    • Thảo luận chung
    • Hỗ trợ từ cộng đồng
    • Dành cho chủ doanh nghiệp / cửa hàng
    • Dành cho lập trình viên
  • PrestaShop Communities
    • اللغه العربيه [Arabic]
    • Ελληνικά [Greek]
    • עִבְרִית [Hebrew]
    • 中文
    • Magyar [Hungarian]
    • 日本語 [Japanese]
    • Lietuviškai [Lithuanian]
    • انجمن فارسی [Persian]
    • ไทย [Thai]
    • Malaysia [Malaysian]
    • Eesti [Estonian]
    • Slovenščina [Slovenian]
    • Српски [Serbian]
  • IP. Board Forum
    • IP. Board Forum Questions and Issues
  • Archive
    • Zapłać Moduły i Szablony [ARCHIVE]
    • Moduly, upravy a dizajn [ARCHIVE]
    • Phát triển và các mô-đun [ARCHIVE]
    • Yazılım, Modül ve Tema [ARCHIVE]
    • Модули, Шаблоны [ARCHIVE]
    • Module şi teme [ARCHIVE]
    • Pengembangan dan Modul [ARCHIVE]
    • Moduler och teman [ARCHIVE]
    • Ecommerce x PrestaShop [ARCHIVE BOARD]
    • Vývoj a moduly [ARCHIVE]
    • Kostenpflichtige Module, Templates [ARCHIVE]
    • Módulos y temas pagos [ARCHIVE]
    • Módulos e temas pagos [ARCHIVE]
    • Servizi commerciali [ARCHIVE]
    • Forum - Feedback Contributor
    • PrestaShop Cloud

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Found 8 results

  1. Dear All, some one know how to make workflow for order handling in PS 1.5.2? for example: after order received, in the BO, the workflow is : payment received->order preparation->shipment->delivered how to make it one way ? so after status order preparation it only can change to shipment and cannot change to payment received or delivered. currently as far i know you can change the status of order for anything status. like after waiting payment, you can change to delivered then after that change to order preparation. some times it is not logically when see by customers in their login in FO. like how come after status delivered then becomes order preparation. any suggestion will appreciate.
  2. Anyone . . . . Plz help me accomplish doing this in Prestashop 1.6.1.4 There are two conditions: ($order_contains_product_category_veg == true and $rest_of_product_category_value < '500' and $order_contains_veg_value < '120') or ($order_contains_product_category_veg == false and $rest_of_product_category_value < '500') if any of the above true, there is delivery charges, else delivery charges is zero. if (($order_contains_product_category_veg == true and $rest_of_product_category_value < '500' and $order_contains_veg_value < '120') or ($order_contains_product_category_veg == false and $rest_of_product_category_value < '500')) { $delivery_charges = '20'; $displayItInCart('A message.'); } else { $delivery_charges = Free; $displayItInCart('A message.Your eligible for Free Delivery'); } Which files to modify or any other method?
  3. Configuration information This information must be provided when you report an issue on our bug tracker or forum. Server informationServer information: Linux #1 SMP Fri Apr 18 09:06:31 EDT 2014 x86_64 Server software version: Apache PHP version: 5.3.28 Memory limit: 168M Max execution time: 60 Database informationMySQL version: 5.5.32-cll-lve MySQL engine: InnoDB Tables prefix: ps_ Store informationPrestaShop version: 1.6.0.6 Shop URL: http://plussizeappeal.ca Current theme in use: default-bootstrap Mail configurationMail method: You are using the PHP mail function. Your informationYour web browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0 Check your configurationRequired parameters: OK Optional parameters: OK Ok so I have been trying to figure out what is going on with the Shipping price for a while now. I have tested this in my working shop as well as on a fresh install on another domain which had no modification at all done to it. It seems that the cart is not taking into consideration the shipping rate that is assigned via carrier. As you can see from my screenshot the only thing that actually shows up in the shipping section is the handling price that is assigned but no actual shipping charge. I am really not sure of what I am doing wrong. I did the prestashop install from within my hosting providers (Namecheap) control panel for both domain. I am in process of uploading a prestashop install via ftp to further test on but in the meantime if someone could help me with this I would be very grateful.
  4. I want to add a different "handling" fee to each item in the store. I see under "Shipping", and I think also under each carriers' shipping options, a place to add such a fee but these should be zero. I want to add a different fee to each item but didn't see such a field in my item edit screen. Am I missing something? Thx RG
  5. Hi guys, hopefully someone can help, i have three questions: 1) When i import a CSV how does prestashop handle missing fields? eg. if i choose to fill in only name on a CSV import? Are any of the missing fields automatically generated? A less silly example, if i leave the visibility field blank, what does it default too? In this regard, what are all the defaults when left blank? 2) After a CSV file is uploaded does it just directly insert the values into the database, or does it trigger any other kinds of post-processing ie. does it alter any other fields than the specific values/fields in the csv? 3) In 1.6 the csv export shows the description fields as showing "<p>New design.</p>", where have these fields moved too?
  6. I have finally gotten shipping options to show at checkout but all they show is the handling fee. I have: configured carriers per info found on forum (USPS, FC, media, Priority) installed, activated and configured usps module checked zones checked "put everything in one package" issue checked "use defined ranges" when pkg wt is over amt shown checked use weight ranges checked products to make sure weight is included went thru user manual to see if I've missed something Obviously, I am overlooking some critical part of the process. At one point, I managed to get rid of free shipping but options only showed 1 carrier - customer couldn't choose. Started over and now I can't even get one carrier to give me a price. I had no problem with this in previous versions of prestashop. Now its making me crazy. Suggestions regarding what to check now are very welcome.
  7. Dear Prestashop users, I am looking for a way to have both my invoices and shopping cart show to customers the following: final prices incl of taxes, Total tax (both shipping and product taxes), shipping cost incl tax and products incl taxes. I enter all my costs and prices incl taxes, since this is how I state the prices to my retail customers. For product prices this is no problem, but when it comes to shipping and handling costs one can not set prices inclusive of taxes. Can this be changed in a PHP template? If so which one and what code would i need to change? I am looking for an indepth answer, because simply deducting the taxes from the total shipping cost and inputing those will not cut it. Reason being I am selling to other countries with different currencies and tax rates. Thank you,
  8. Hi guys! I'm looking for a module that can import CUSTOM products and attributes from another site. Selected fields by the user(me) Like we handle a lot of distributors and they constantly add new products. So it would be great to import them faster. The module I seek is so that you can take out custom fields from the other site and import that category to your own category. Price can be fixed afterwards. Perhaps even a custom price calulation in the process. Like we have Norwegian currency and the shops have USD. So it would be nice to have an input field to price where you can choose to multiply by so and so etc=) Does such a module excist? The custom import fileds from other website?=) Very much like the pixmania import module just able to custom select WHAT to import=) Thanks for reading!=)
×
×
  • Create New...