How to override the view field in drupal 7 using hook LAKHAN GEHARWAR March 19, 2020 /** * Implements hook_views_pre_render(). */ function Moduelname_views_pre_render(&$view) { global $user; if ($view->n... Continue Reading
Show/Hide Column in Views Table in drupal 7 and drupal 8 LAKHAN GEHARWAR March 19, 2020 // Hide the Name Column when Nick Name is shown $('#edit-dyfield-field-girls-nickname').change(function() { if ($('#e... Continue Reading
Drupal Behaviors And Javascript LAKHAN GEHARWAR March 19, 2020 What is Drupal Behaviors? Definition:- Drupal Behaviors is the object in JavaScript that Drupal initializes after page load, and after... Continue Reading
how to send variable from .php file to .js file?(Drupal Behaviours) LAKHAN GEHARWAR March 19, 2020 You should use drupal_add_js() in your module,there is no need to output the variable in your .tpl.php: Drupal 7 Step:-1 <?php ... Continue Reading