How To Import Large Sql File In XAMPP ? LAKHAN GEHARWAR June 13, 2020 We will use Command-Line Tools (Shell) to import large database SQL file. #1. Open the XAMPP Control Panel Where: usernam... Continue Reading
How to chage the page title in drupal 7 LAKHAN GEHARWAR June 11, 2020 /** * Implements hook_page_alter(). */ function MODULENAME_page_alter(&$page) { if(arg(0) == 'checkout') { $test =... Continue Reading
How to add css inline in drupal 7 LAKHAN GEHARWAR June 10, 2020 1. if you're calling drupal_add_css() from your own module (in my case, named custom.module) :- drupal_add_css(drupal_get_path(... Continue Reading
how to can i change the view labels LAKHAN GEHARWAR June 01, 2020 function modulename_views_pre_render(&$view) { if ($view->name == 'user_conversations') { //field title $vi... Continue Reading