-
19 Jul
Drupal 6 theme structure
A theme is a collection of files that define the presentation layer. You can also create one or more “sub-themes” or variations on a theme. Only the .info file is required, but most themes and sub-themes will use other files as well. The following diagram illustrates the files that are found in a typical theme and sub-theme.
- Category :
- Drupal
-
19 Jul
How to Configure Custom path in Drupal
If you want to need custom path in drupal that time configure the Pathauto modules Pathauto The Pathauto module automatically generates URL/path aliases for various kinds of content (nodes, taxonomy terms, users) without requiring the user to manually specify the path alias. This allows you to have URL aliases like /category/my-node-title instead of/node/123.
- Category :
- Drupal
-
19 Jul
How to make Clean Url in Drupal
If you want to make your drupal site url is clean , so use this following Configuration from admin side . If your drupal url is like this :- www.xyz.com/?q=admin Now , you need clean URL . Go on your Admin panel -> site Configuration ->Clean Url’s
Enable your clean URL- Category :
- Drupal
-
13 Jul
How to display form in custom url in Drupal
If you want to make a custom url in drupal for that use below code. function Module-Name_menu() { $items['custom path '] = array( ‘title’ => ‘ title name ‘, ‘page callback’ => ‘ function name what are you display ‘, ‘access arguments’ => array(‘access content’), );
return $items;
}- Category :
- Drupal
-
13 Jul
How to configure the administration menu in Drupal
If you want to configure the Administration Menu in drupal for that use below steps. Steps For configure the Administration Menu :- Steps 1 : – Download the Administration Menu in Below URL. https://drupal.org/project/admin_menu Steps 2 :- Put the Download Modules in Below Directory
Directory: – Sites -> All -> Modules- Category :
- Drupal
-
12 Jul
How to implement XHTML to Drupal Theme
If you want to make a Xhtml page is your drupal Home page for that use below steps. Steps For Implement XHTML to Drupal Theme. Create Custom Themes Require Two Files :- – Custom-Themes-Name.info File – page.tpl File Path :- \drupal\themes\Custom-Themes-Name
- Custom-Themes-Name.info File
name = Custom-Themes-Name.
description = Custom-Themes Description
version = VERSION- Category :
- Drupal
-
12 Jul
Drupal 6 to Drupal 7 Migration Steps
If you want to Migrate you drupal site in higher version follow the steps that helps you in easy migration. Step 1: Backup your site’s database. Step 2: Backup all your folders and files. Step 3: Double check to make sure you can complete the upgrade.
Step 4: Check for the latest version of Drupal 6.x.
-Go to Administer (or Administration) >> Reports >> Status report.- Category :
- Drupal
-
05 Jul
How to Display a Twitter tweet in Drupal as a Block
Use twitter_pull_render Functions:- twitter_pull_render ($twitkey, $title = NULL, $num_items = NULL, $themekey = NULL) ARGUMENTS: I.@param $twitkey II.@param $title III.@param $num_items IV.@param $themekey Drupal theme key-name to use for theming the output of the Twitter response.
- Category :
- Drupal
-
05 Jul
Drupal 6.0 to Drupal 6 any higher version Migratation Steps
Download source and Database Backup – Current Sites. Set Admin Passwords in database Disable to All Modules without Core-optional and Core-Required. Set Site offline Mode.
- Category :
- Drupal
-
05 Jul
Display dynamic slide show in Drupal
Some times you need to be make a dynamic slideshow. So, for that use this below code to helpful you for making a attractive dynamic slideshow. Step:-1) Download view slideshow module. URL:-https://drupal.org/project/views_slideshow Step:-2) put this module in site/modules/ Directory. Step:-3) Now Go in Admin side and make View for Slideshow.
Step:-4) Add new View.- Category :
- Drupal