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
How to customize the comments form in drupal 8 LAKHAN GEHARWAR February 26, 2020Step 1:- I would do it: 1) Create new file: testmodule.info.yml. name: testmodule description: Testmodule type: module core: 8.x 2) Create n... Continue Reading
What is something you learned very late in life, but wish you knew much earlier? LAKHAN GEHARWAR December 09, 2019 Good Looks matter You can earn money in lots of ways The gym is the only way to get a good looking and toned body if you fe... Continue Reading
Application LAKHAN GEHARWAR December 09, 2019 Respected Sir, I am writing this email to let you know that I will require a half-day leave on 05-11-2019 as I need to go to m... Continue Reading
How can I get confidence during communication? LAKHAN GEHARWAR December 09, 2019 Practice: The better you get at it, the more confident you will feel. Start talking to people or stay stuck in your comfort zone. Stop wi... Continue Reading
My Jquery KATA LAKHAN GEHARWAR December 09, 2019 jQuery(document).ready(function(){ jQuery(".we-mega-menu-submenu ul.subul").filter(function () { return jQuery... Continue Reading
how to remove w3 validation Bad value revision for attribute rel on element link in drupal 8 LAKHAN GEHARWAR December 09, 2019 Demo.module /** * Implements hook_entity_view_alter(). * @param array $build * @param EntityInterface $entity * @par... Continue Reading
How to Resize text using jQuery LAKHAN GEHARWAR December 07, 2019 If you are working on a blog where people come and read your article then you must add a resize text option on your website, becaus... Continue Reading
HOW TO USE LOAD MORE BUTTON IN JQUERY ?? LAKHAN GEHARWAR December 07, 2019 STEP 1 (WAY 1):- <!DOCTYPE html> <html> <head> <title>AUTO LOAD CONTENT USING JQUERY</title> ... Continue Reading
Accodian with images LAKHAN GEHARWAR December 04, 2019 <!DOCTYPE html> <html> <head> <style type="text/css"> html,body{ padding: 0; margin: 0; width: 1... Continue Reading