Jump to content
thirty bees forum

colorful-ant

Members
  • Posts

    577
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by colorful-ant

  1. In this point, I'm still looking. I know there are modules at Prestashop, but the costs are a lot and I have not found the right one for me yet. google search prestshop addons
  2. ok better to ask @Jonny how to
  3. I'm not sure, but I think you can find a better solution with one of the panda modules. For example: - Custom links - Custom Content Block - .....
  4. you can set somethings example price rules -> catalog price rules or direct product prices
  5. you can try this or this for more informations
  6. for example try this or take a look here and try it
  7. i hope the image helps. i also had a small problem with mails through a module, because it was not translated, no emails were sent.
  8. Copy the mail files into the correct folder and translate it. example from ... / themes / yourtheme / mails / en or ... / mails / en to ... / themes / yourtheme / mails / es
  9. I know it works for me. is it possibly the shopcache and browser cache - have you emptied and / or disabled? is the shipping option not available/active in the article/product (backoffice)?
  10. or other settings at this options example "Carrier restrictions"
  11. ok, i think you forgot an edit in your store go to "modules and service" -> "payments" and edit "Carrier restrictions"
  12. im not sure for you - my best experience is an extra delivery service free shipping
  13. eine preisreduzierung mit varianten habe ich bisher nie probiert - bei mir sind varianten eher mit einem höheren preis versehen und es funktioniert bislang ohne probleme. hast du evtl separate einstellungen im shop bei denen der preis durch anpassung versand oder anderes den preis im fo erhöht anzeigen oder ein kombi-artikel?
  14. I have not tested all variants default theme - block top menu ..... add the following code in the backoffice custom code css #block_top_menu ul li ul {display:none!important;} #block_top_menu ul li ul {display:none!important;} alternatively you can add it in the module in the file themes / community-theme-default / css / modules / blocktopmenu / css / blocktopmenu.css clear shop and browser cache and you can see only first menu - without subcategories
  15. i changed the module a little bit for me - now i can search with customer-email at the backoffice module - genzo krona - players list modules / genzo_krona / controllers / admin / AdminGenzoKronaPlayersController.php my changes $this->_select = 'c.`firstname`, c.`lastname`'; to $this->_select = 'c.`firstname`, c.`lastname`, c.`email` '; this (public function __construct..... ) $fields_list['lastname'] = array( 'title' => $this->l('Lastname'), 'align' => 'left', 'filter_type' => 'string', 'filter_key' => 'c!lastname' ); $fields_list['pseudonym'] = array( 'title' => $this->l('Pseudonym'), 'align' => 'left', ); to $fields_list['lastname'] = array( 'title' => $this->l('Lastname'), 'align' => 'left', 'filter_type' => 'string', 'filter_key' => 'c!lastname' ); $fields_list['email'] = array( 'title' => $this->l('Email'), 'align' => 'left', 'filter_type' => 'string', 'filter_key' => 'c!email' ); $fields_list['pseudonym'] = array( 'title' => $this->l('Pseudonym'), 'align' => 'left', ); and this (public function renderList) $fields_list['lastname'] = array( 'title' => $this->l('Lastname'), 'align' => 'left', 'filter_type' => 'string', 'filter_key' => 'c!lastname' ); if ($this->is_gamification && Configuration::get('krona_pseudonym', null, $this->id_shop_group, $this->id_shop)) { $fields_list['pseudonym'] = array( 'title' => $this->l('Pseudonym'), 'align' => 'left', ); } to $fields_list['lastname'] = array( 'title' => $this->l('Lastname'), 'align' => 'left', 'filter_type' => 'string', 'filter_key' => 'c!lastname' ); $fields_list['email'] = array( 'title' => $this->l('Email'), 'align' => 'left', 'filter_type' => 'string', 'filter_key' => 'c!email' ); if ($this->is_gamification && Configuration::get('krona_pseudonym', null, $this->id_shop_group, $this->id_shop)) { $fields_list['pseudonym'] = array( 'title' => $this->l('Pseudonym'), 'align' => 'left', ); } my image result and complete .php-file AdminGenzoKronaPlayersController.php
  16. i use this module https://buy-addons.com/store/prestashop/module/bamenu-prestashop-responsive-menu.html its not free, but good for some changes and it works with tb for me
  17. wenn bestellung ablehnen aktiv ist, sollte es so sein der kunde kann dann zwar nicht bestellen, aber eine verfügbarkeitsbenachrichtung erstellen (email eintragen) und wenn der artikel wieder verfügbar ist, bekommt dieser die email am besten in verbindung mit dem modul mailalerts weshalb ich bin insgesamt begeistert bin und ein weiteres statistik-modul von ps nutze (costumer out of stock) - hier kann ich rein schauen und sehen, was sich ein kunde evtl kaufen möchte, wenn der artikel oder die variante eines artikels wieder verfügbar ist ich habe das modul angehängt, für das datum in der statistik bedarf es eine anpassung, dazu habe ich für tb diese lösung gesehen statsoos.zip
  18. is see now, it is the standard config.xml httpdocs / themes / your_theme / Config.xml see at the theme config.xml in your theme *****.zip
  19. im not sure version value 1.4 if i look/search warehouse theme ps 1.7 = version 4.x ps 1.6 = version 3.x
  20. are you really sure, that you use the correct theme.zip ? i dont use warehouse-theme. theme for ps 1.6 if no theme for tb exists - not ps 1.7 !!!
  21. Please always inform the current TB version and possibly server configuration. Are you using the right zip file? For Warehouse, I do not know it now, but for example in Panda and Transformer, the subfile for the template in the main zip file is theme.zip or something, so in some cases first extract the main file and then install theme.zip ,
×
×
  • Create New...