Submitted by kabarca on Wed, 02/22/2012 - 10:02
This term has become more and more present all over the Web, among Drupal freelancers and different companies offering the service. While those in the Drupal development industry know what Drupal is, there is a greater need for Drupal services users to understand what Drupal consulting is. Basically, 'consulting' refers to the support given to your website's CMS.
Submitted by kabarca on Mon, 01/02/2012 - 17:43
DrupalCon is coming to Denver and if you are interested in knowing more about what to do, where to stay and how to move around during this event here is some useful information.
Submitted by kabarca on Tue, 12/27/2011 - 12:16
Being able to use stylish fonts in Drupal is easier than you might think. It is also important to point out that the following method is compatible with the latest versions of all major browsers.
STEPS
1. Copy the different font formats in the theme folder.
2. Use the following code to import the font into the Stylesheet:
Submitted by kabarca on Fri, 12/17/2010 - 10:12
What is Features?
Features is a Drupal module that allows a technical admin of the website to manage versions of the changes being performed to a Drupal installation, such as views settings, cck, webforms, permissions, blocks, etc.
How it works?
Submitted by kabarca on Mon, 11/22/2010 - 10:57
THE DRUPAL PROBLEM
Turns out that setting up a view to sincronize with the Taxonomy TermID from URL works great, the problems begin if the Term ID in the URL is a synonym, then you get then nothing out of it.
THE DRUPAL SOLUTION
Select PHP Code instead of the Term ID from URL and copy the following code. Basically what it does is get the term from the url, which is a synonym. View image for more details
$request_uri = urldecode($_SERVER['REQUEST_URI']);
$term = end(split("/",$request_uri));
return $term;