How to install Drupal Plugins or Modules ?

Not applicable

Because is there way to change the specs view to three panel view mode.

For example:

https://lord.github.io/slate/

or from where i can get the clients curl or other calling codes.

Solved Solved
0 1 1,253
1 ACCEPTED SOLUTION

jaywanttopno
Participant III

Hi @Shahbaz Ali

old school way: we used to download modules from drupal.org and place in sites/all/modules/*
and enable it from http://hostname.com/admin/modules

smart way: If you have drush enabled in your machine, then you can do it via

Syntax:drush en >module> -y

Sample: drush en views -y

The advantage of using drush is no need to enable your module manually.
No need to download Dependency module. drush, will take care of that.

Yes, we can achieve using panel module. In case you want heavy overwriting, then go for Custom Template and write your own code.

View solution in original post

1 REPLY 1

jaywanttopno
Participant III

Hi @Shahbaz Ali

old school way: we used to download modules from drupal.org and place in sites/all/modules/*
and enable it from http://hostname.com/admin/modules

smart way: If you have drush enabled in your machine, then you can do it via

Syntax:drush en >module> -y

Sample: drush en views -y

The advantage of using drush is no need to enable your module manually.
No need to download Dependency module. drush, will take care of that.

Yes, we can achieve using panel module. In case you want heavy overwriting, then go for Custom Template and write your own code.