kabarca's blog

How to define Drupal Consulting

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.

Things to Do While At DrupalCon Denver

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.

Use Custom Fonts in Drupal CSS (TTF/ODT/WOFF/ SVG)

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:

Drupal Features module

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?

Drupal Views Argument base on Taxonomy Term ID from URL Synonym

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;
Subscribe to RSS - kabarca's blog