Views and Ubercart
Step 1
Enable Views module
Step 2
Step 1
Enable Views module
Step 2
These are the modules that we find very useful:
$(document).ready(function(){
$(".jcarousel-skin-tango .jcarousel-item").hover(function() {
$(this).animate({backgroundColor: "#bbccff"}, "slow");
}, function () {
$(this).animate({backgroundColor: "#ffffff"}, "slow");
});
});
// Opacity instead of colour. However, transition not too good in IE?
$(document).ready(function(){
$(".jcarousel-skin-tango .jcarousel-item").hover(function() {
$(this).animate({opacity: '1'}, "slow");
}, function () {
$(this).animate({opacity: '0.75'}, "slow");
});
});
An example is shown below:
<!--[if IE]><style type="text/css"> #splash { z-index: -10;}</style><![endif]-->
Under your theme directory create a file named:
page-node-nodeID.tpl.php
For example a node with node ID of 78 would have a page style named:
page-node-78.tpl.php
This describes the process to update Drupal modules.
1. Goto the modules directory.
cd /var/www/html/drupal/shop/sites/all/modules/contrib
2. Download the required module.
wget http://ftp.drupal.org/files/projects/webform-6.x-2.9.tar.gz
3. Extract the tar file.
tar -xvf
This will overwrite the previous version.
4. Run Drupal Update.
In order to copy / duplicate a content type you can use:
<? function spammy_user ($op, &$edit, &$account, $category = NULL) { if($op=="login") { $to = "webmaster@zerotouch.com"; $subject = "User Login!" . $op; ob_start(); print_r($account); $mike = ob_get_clean(); $body = "Hi,\n\nYou've logged in!"; $body .= $mike; mail($to, $subject, $body); } elseif ($op=="logout") { $to = "webmaster@zerotouch.com"; $subject = "User Logout!" .