Jump to content
thirty bees forum

colorful-ant

Members
  • Posts

    577
  • Joined

  • Last visited

  • Days Won

    10

Posts posted by colorful-ant

  1. 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

    • Like 1
  2. 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

    genzo.png

    AdminGenzoKronaPlayersController.php

    • Like 2
  3. 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

  4. On 2/16/2019 at 10:34 PM, Leandroo said:

    hi, I've uploaded a .zip warehouse, (size = 1.8mb), so in backoffice i got 'Bad or missing configuration file.'  

    config.xml is this:

    
    <?xml version="1.0" encoding="UTF-8"?>
    
    -<theme>
    
    -<version value="1.4">
    
    <ccc available="true"/>
    
    <guest_checkout available="true"/>
    
    <one_page_checkout available="true"/>
    
    <store_locator available="true"/>
    
    </version>
    
    </theme>

     

     

    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

    image.png.b04cf149671eafd5fa3ecfb34f2525f7.png

     

    image.png

    image.png

×
×
  • Create New...