Jump to content

Bart_Bart

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • First Name
    Bartek
  • Last Name
    Marmurowicz

Bart_Bart's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, Could any one help me with fetching or getting list of products with its name and product description from prestashop by using web service. so far I am able to get list of products ID . this code is in try block $opt['resource'] = 'products'; if (isset($_GET['id'])) $opt['id'] = $_GET['id']; $xml = $webService->get($opt); $resources = $xml->children()->children() ; and rest of the code. if (!isset($_GET['id'])) { echo '<tr><th>Id</th><th>Product</th></tr>'; foreach($resources as $resource){ echo'<tr><td>'.$resource->attributes() .'</td><td>'.'<a href="?id='.$resource->attributes().'">Opis</a>'.'</td></tr>'; } }
  2. Hej , nie wiem czy to dobry dział,Jestem nowy w tworzeniu modulow do presa a chcial bym sie nauczc czegos nauczc tak wiec czy jest ktos w stanie pomoc mi z stworzeniem modulu do presashop ktory mial by pokazwac informacje o ilosci zakupionych produktow przez danego klienta. z gory bardzo dziekuje za pomoc.
  3. Would anyone can help me with creation of my first simple module to prestashop 1.6 which would display customer details and ordered products in front panel. Appreciate an help thanks !
×
×
  • Create New...