Jump to content

gifr

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • First Name
    Gilles
  • Last Name
    Françon

gifr's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Bonjour, j'ai résolu un problème identique, si cela peut vous aider : https://www.prestashop.com/forums/topic/486945-probleme-commande-clients-code-postal-refus%C3%A9-croix-rouge/page-2
  2. Bonjour, pour ma part j'ai corrigé le problème en remplaçant la ligne : var id_country = $(selector + ' option:selected').val(); par var id_country = $(selector).val(); dans le fichier /js/validate.js
  3. Thanks for answering. I would not agree with this as the prestashop demo site doesn't display well in internet explorer 8, it's a very bad user experience. So I will consider it's Boostrap 3.0 compatibility minus ie8.
  4. Hello, I wondering if there is an official list of browser compatibility for the default theme of the current version of Prestashop (1.6.14) ?
  5. Hello, I'm trying to add product through webservice in multistore configuration. It works doing nothing special : by default product are added in default store. Problem is I would like the product to be added in all store. As I've understand, to have the product created in all store I have ton send the parameter "id_shop=all". So when I use this url http://test.xyz.com/api/products?id_shop=all, I get an error telling me the page has moved : [Debug] This page has moved<br />Please use the following URL instead: <a href="http://test.xyz.com/fr/?url=products">http://test.xyz.com/fr/?url=products</a> So I guess it's an url rewriting problem but I don't know how to fix it. I've the default generated .htaccess as follows : RewriteEngine on RewriteCond %{HTTP:Authorization} ^(.*) RewriteRule . - [E=HTTP_AUTHORIZATION:%1] #Domain: test.xyz.com RewriteCond %{HTTP_HOST} ^test.xyz.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api$ api/ [L] RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] Any idea on how to solve this ?
×
×
  • Create New...