v1.6-v1.7 Advanced Search 4 Module

Root

System Boss
Staff member
Big Boss
Joined
Jun 1, 2018
Messages
1,137
Reaction score
18,377
Points
113
NullCash
78,558
advanced-search-4.jpg



Demo : https://addons.prestashop.com/en/sea...-search-4.html


 

Attachments

  • v1.6-v1.7 Advanced Search 4 Module.zip
    648.2 KB · Views: 35
  • v4.12.4-pm_advancedsearch4.zip
    793 KB · Views: 31
Last edited:

alluc

New member
XNullUser
Joined
Nov 20, 2018
Messages
8
Reaction score
0
Points
1
NullCash
0
Link download don't work, can you update? Thanks
 

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,672
Points
93
NullCash
13,950
Great!
Thank you

---- Automatically Merged Double Post ----

Great!
Thank you
 
Last edited:

xeta

Well-known member
Master
Diamond
Elite
Joined
Feb 20, 2019
Messages
286
Reaction score
594
Points
93
NullCash
1,450
What is the version? Works with presta 1.7.5?
 

neozick

Member
XNullUser
Joined
Feb 10, 2019
Messages
72
Reaction score
0
Points
6
NullCash
19
Hey,

It's version 4.12.0

i don't know if it works with presta 1.7.5 ( i'm in 1.6 ) but there is no reason according to the description.

and Thanks for all (y)
 

lex

Active member
Elite
Joined
Feb 6, 2019
Messages
12
Reaction score
187
Points
28
Age
42
NullCash
154
PM_advanced_search version 4.12.4

---- Automatically Merged Double Post ----

PM_advanced_search version 4.12.5
 

Attachments

  • v4.12.4-pm_advancedsearch4.zip
    3.3 MB · Views: 16
Last edited:

Takio

Well-known member
Master
Diamond
Elite
Joined
Feb 13, 2019
Messages
494
Reaction score
1,672
Points
93
NullCash
13,950
@lex

Thank you for the Advanced Search v4.12.4 update (y)

---- Automatically Merged Double Post ----

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!

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
 
Last edited:

manu69

Active member
XNullUser
Joined
Jan 13, 2019
Messages
698
Reaction score
71
Points
28
NullCash
6
@ freiserk thank you for files update
 
Top