Jump to content

farouk38

Ambassadors
  • Content Count

    32
  • Joined

  • Last visited

Community Reputation

2 Neutral

About farouk38

  • Rank
    PrestaShop Apprentice

Profile Information

  • Location
    algeria
  • First Name
    farouk
  • Last Name
    kouar

Recent Profile Visitors

584 profile views
  1. Replace this in theme/address.tpl {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="required form-group"> <label for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control" name="id_country">{$countries_list}</select> </div> {/if} By this {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="form-group"> <label class="hidden" for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control hidden" name="id_country">{$countries_list}</select> </div> {/if}
  2. For exemple for removing country Replace this in theme/address.tpl {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="required form-group"> <label for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control" name="id_country">{$countries_list}</select> </div> {/if} By this {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="form-group"> <label class="hidden" for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control hidden" name="id_country">{$countries_list}</select> </div> {/if}
  3. Replace this in theme/address.tpl {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="required form-group"> <label for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control" name="id_country">{$countries_list}</select> </div> {/if} By this {if $field_name eq 'Country:name' || $field_name eq 'country' || $field_name eq 'Country:iso_code'} <div class="form-group"> <label class="hidden" for="id_country">{l s='Country'} <sup>*</sup></label> <select id="id_country" class="form-control hidden" name="id_country">{$countries_list}</select> </div> {/if}
  4. You can get the new orders in Backoffice toolbars, From the shopping cart symbol.
  5. Check if the template exist in mail folder. Do you override order class or install new modules that hooks to order?
  6. The mails sent to the customer who make order not to the admin.
  7. When a new order comes or globaly when an order status change prestashop check in order->status if you active email sending for this status, if yes prestashop get the template name and search in mails folder for this name, when getting the template, prestashop execute the function addwithmail in order class to send the appropriate mail to customer.
  8. Hello, Salamo 3likom This problem due to the $values['tax_incl'] contain also shipping value, so we must decrease the shipping value Prestashop => classes => PaymentModule.php => in if statement ligne 533 : change && $values['tax_incl'] > ($order->total_products_wt - $total_reduction_value_ti) && to && ($values['tax_incl']-$order->total_shipping_tax_incl) > ($order->total_products_wt - $total_reduction_value_ti) && Enjoy 😄
  9. مرحبا هل تم حل المشكل؟ أنا ايضا تظهر لي الكتابة العربية على شل علامات إستفهام
  10. Salut, Je voudrai savoir comment vous avez fait pour l'appliquer sur la facture, et quelles sont les modifications coté TPL que vous avez fait . Est-ce-que les modifications que vous avez fait sont compatibles avec la version 1.6 de prestashop.
  11. Bonjour, Je veux afficher le code à barres et le numéro de commande dans la facture générer par prestashop. Merci d'avance.
×
×
  • Create New...

Important Information

Cookies ensure the smooth running of our services. Using these, you accept the use of cookies. Learn More