Warning: Undefined array key "title" in /home/u593943216/domains/wp-experts.in/public_html/secure_content/themes/wp-experts/inc/classes/class-hooks.php on line 151
Hi, If you want define the “Default View Permissions” for particular content type(like page, article) then you have need to edit setting of that content type from admin. Enjoy Code! | Raghunath Blog
Hello My Friends!. Wishing all my friends a very Happy and Prosperous new year 2014 :) :) If you want to remove the the “Body Section” section from am specific content type in drupal then you have just need to leave blank the “Body field label” text box OR removed the “Body” text from the
Hello Everyone! I have a module in Drupal 6 that saves some information in the $_SESSION array. I use this information to customize some content in another page.The problem is that when I’m not logged in Drupal, the information is not saved in the session. When I’m logged in, it works as expected. After a
Posted by WordPress Experts on December 24, 2013 2815 Views Share on
Hello Everyone, If you are facing the problem with audio player in you DRUPAL site then don’t worry, you have need only follow my steps for add the HTML5 Audio Player. I made the following changes to Drupal’s Audio Module: In flash player add a class and title. First of all you have need to
Posted by WordPress Experts on November 15, 2013 5013 Views Share on
Hello Everyone! If you want to display success/error message on any position in your theme template, then you don’t need to do much more. Use my code give below : <?php //success/error message print $messages; ?> Enjoy Code
Posted by WordPress Experts on November 15, 2013 6327 Views Share on
Hello Everyone! Hope you are doing well and enjoying my blog :) I am here going to give you a small idea about region in drupal. Regions in Drupal are defined by the theme layer. This is problematic in instances where you want to add blocks / boxes to a specific region that is theme
Posted by WordPress Experts on November 12, 2013 1087 Views Share on
Hello Everyone! Hope you are doing well. 1.How creating a seprate front page template : Creating a front page template is rather simple. In your theme folder (sites/all/themes/), copy the page.tpl.php file from drupal core or your parent theme. Then rename it accordingly (see below). You probably won’t see the results until you clear your
Posted by WordPress Experts on November 11, 2013 2778 Views Share on
Hello Everyone! Hope you all are doing well. If you want to display the navigation from your custom menu on any page template, then just use my code. <?php $menu = menu_navigation_links('enter-your-menu-title'); print theme('links', $menu, array('class' => 'links primary-links')); ?> Enjoy Code!