V1.7 Panda v2.4.3 - Responsive Prestashop 1.7 Theme Full

Root

System Boss
Staff member
Big Boss
Joined
Jun 1, 2018
Messages
1,137
Reaction score
18,364
Points
113
NullCash
78,797
98.jpg


Demo: http://panda2.sunnytoo.com/select-demo.html
 

Attachments

  • 1.7-panda-v2.4.3.zip
    11.1 MB · Views: 92
  • 1.7-update-v2.4.3.zip
    5.2 MB · Views: 51
  • assets.zip
    618.3 KB · Views: 62
  • csv_import.rar
    3.8 KB · Views: 57
  • One click demo import.zip
    3.7 MB · Views: 74
  • Suggested Plugins.zip
    430.3 KB · Views: 63

freiserk

Well-known member
Pro
Master
Diamond
Elite
Joined
Jan 24, 2019
Messages
3,454
Reaction score
6,435
Points
113
NullCash
35,354
Thanks, good theme :)
 

folkrox

New member
XNullUser
Joined
Feb 22, 2019
Messages
7
Reaction score
1
Points
3
NullCash
0
Thanks!
 

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,671
Points
93
NullCash
13,943
Last edited:

ninjacupcake83

Member
XNullUser
Joined
Jan 19, 2019
Messages
83
Reaction score
0
Points
6
NullCash
4
This theme is amazing, was using warehouse but this is much more customisable!
 

folkrox

New member
XNullUser
Joined
Feb 22, 2019
Messages
7
Reaction score
1
Points
3
NullCash
0
You got problems to adapt Advanced Pack 5 with your Panda Theme (from SunnyToo) for PS1.6 or PS1.7?

The solution is here, nice & easy:

https://www.sunnytoo.com/14653/integrate-advanced-pack-module-prestashop-theme

... and if you got problems to adapt Advanced Search 4 with your Panda Theme (from SunnyToo) for PS1.6 or PS1.7?

The solution is here, nice & easy:

https://www.sunnytoo.com/13194/integrate-advanced-search-4-module-work-transformer-theme-panda-theme

Thanks for sharing this information
 

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,671
Points
93
NullCash
13,943
Advanced Search 4 is not 100% compatible with Transformer or Panda theme on PS 1.7.x, but it's easy to fix that by adding a simple line of code :cool:

Go to /modules/pm_advancedsearch4/controllers/front/advancedsearch4-17.php and add parent::initContent(); just after parent::init(); (line 53), like this:

Original advancedsearch4-17.php file
Code:
$this->idSearch = (int)Tools::getValue('id_search');
        $this->searchInstance = new AdvancedSearchClass((int)$this->idSearch, (int)$this->context->language->id);
        parent::init();
        $this->setSEOTags();
        $this->setCriterions();


advancedsearch4-17.php after modification
Code:
$this->idSearch = (int)Tools::getValue('id_search');
        $this->searchInstance = new AdvancedSearchClass((int)$this->idSearch, (int)$this->context->language->id);
        parent::init();
/**    Transformer Fix Start   **/
        parent::initContent();
/**    Transformer Fix End     **/
        $this->setSEOTags();
        $this->setCriterions();

That's all!

Note: for those which are afraid to modify some php code (or just don't know how to do it), I have add a zip with the file already modified
(3 files: advancedsearch4-17.php (, advancedsearch4-17_original -a back-up from the original file- & advancedsearch4-17_Transformer-fix.php -a back-up from the fix-, so you can revert at any time just by renaming the file)

Optional: If you think that the look from Advanced Search 4 is somewhat ugly in your front office, go to the module Theme Editor -> Custom Code -> Custom CSS Code, and add this bunch of CSS lines:

Code:
/* ADVANCED SEARCH 4  Cosmetic Fix */   
#PM_ASBlock_1.card {border: 0px;}
.card-header {font-size:12pt;background-color: #ffff;border-bottom: 0px;padding-left:0;padding-right:0;padding-bottom:3px;}
.card-block{padding-left:0;padding-right:0;}
.PM_ASBlockOutputVertical .PM_ASCriterionsGroupTitle.h4{font-size:12pt;font-weight: normal;border-bottom:0px;padding-bottom:3px;
}

Now Advanced Search 4 fit perfectly in your Transformer or Panda theme
 

Attachments

  • Advanced Search Fix.rar
    13.9 KB · Views: 1

ercumentbu1

New member
XNullUser
Joined
May 2, 2019
Messages
20
Reaction score
0
Points
1
NullCash
0
his theme is amazing, was using warehouse but this is much more customisable!
 
Top