Skip to Content

Blogs

Drupal 7.0 Alpha 5 released

Drupal 7.0 Alpha 5 released - Our fourth Drupal 7 alpha version was released just over a month ago. Today, we're proud to announce the release of the fifth alpha version of Drupal 7.x for your further testing and feedback.

Drupal 7.0 Alpha 4 released

Drupal 7.0 Alpha 4 released - Our third Drupal 7 alpha version was released just over a month ago. Today, we're proud to announce the release of the fourth alpha version of Drupal 7.x for your further testing and feedback.

Showing Different Drupal Themes on Different Pages

* Step 1: Click here to download the latest version of "Sections".
* Step 2: Extract the files into a folder on your desktop. The folder will be called "sections".
* Step 3: Login to your site's files via FTP and navigate to /sites/all/. If there isn't a folder called /modules/ here, create one.
* Step 4: Upload the "sections" folder to /sites/all/modules/
* Step 5: Go to Administer >> Site building >> Modules. Check the box next to "Sections" and click Save Configuration.

Showing Different Drupal Themes on Different Pages

7 Drupal Modules to improve SEO of your Drupal website

Drupal out of the box has good SEO features that makes it Search Engine Friendly (SEF) instantly, just converting a website to Drupal has positive effects on the SEO side. With good themes that have SEF markups and things like javascript (JS) and CSS aggregation in Drupal core it helps to speed up a website and attract search engine bots. Core modules like path helps to define SEF URL for the content of your website with clean URL without the ?q=. If you have path on, I guess the obvious next step is to get pathauto, so I will not include pathauto in my list below.

Drupal 6 Custom Login Block

Drupal Login Block Sometimes the login block that is created from a Drupal theme isn’t as pretty as we might like. The ability to create custom login block really can be useful. Of course, you can take the time to edit the template files, but that can be complicated.

Why Drupal?

The reason behind the success of Drupal is because of its many benefits. First, it is search engine friendly. It provides better control to you URL structure. It gives your website better ranking in the search engines because it can customize your content with clean URL. Besides that, it has something called CCK (Content Construction Kit) that acts as a tool that let you creates different types of content with ease. You can create new stories, blog post, tutorials and these are just to name a few. This is something that other CMS cannot provide you.

The Google Summer of Code 2010 is a go!

The Google Summer of Code 2010 is a go! - I'm excited to announce that the Google Summer of Code is happening again in 2010! Last year Drupal went a perfect 18-for-18, meaning that all of our students passed the SoC, and we even got a "bonus student" who worked on Drupal module for the Creative Commons.

New Drupal Book - Drupal E-commerce with Ubercart 2.x

New Drupal Book - Drupal E-commerce with Ubercart 2.x - Drupal E-commerce with Ubercart 2.x, by George Papadongonas and Yiannis Doxaras, is a new title from Packt Publishing. It is aimed at business owners and ordinary Drupal users without development expertise who want to create, administer and design their own online shop.

Drupal Vs Joomla and other CMS

Anyone trying to evaluate open source content management systems is aware that there aren't a lot of recent, useful comparative reviews. What's surprising is that this issue is true even for such popular solutions as Drupal and Joomla.

Stating in January that, "most comparisons of Drupal (news, site) and Joomla (news, site) conclude that you should select the one that best suits your needs. However, they give too little guidance about how to do that," Webology eBusiness Solutions set out to quantify the pros and cons of each by releasing a survey.
The Survey

How can I hide an input form and insert a default value?

In this example, we are going to hide the "title" field and populate it with the first and last name. We use CCK to add the firstname and lastname.

In this case we catch the "profile_node_form" but you catch any form you like.

<?php
/**************************************************************************
* Implementation of hook_nodeapi();
*/
function sns_form_alter(&$form, $form_state, $form_id){

if ($form_id = 'profile_node_form'){
$form['title']['#required'] = false;
$form['title']['#access'] = false;
};
}

Syndicate content