Drupal 6.x
Delete Orphaned terms from vocabulary (Drupal)
Submitted by vinayras on Tue, 04/02/2013 - 18:59We have been managing several websites powered by Drupal. Over the years we have found that we have several terms that do not have any nodes associated with them, thus rendering empty pages for those keyword.
Here is a small piece code to delete those terms. This can be added to cron to make sure terms are cleaned regularly.
$vid = 3; // Vocabulary ID
$terms = taxonomy_get_children($tid = 0, $vid);
foreach ($terms as $term) {
if (taxonomy_term_count_nodes($term->tid) == 0) {
// See if any nodes use the terms. If none, delete the terms.
- vinayras's blog
- Read more
- 17558 reads
RaipurLive.com - Updates & New look
Submitted by vinayras on Sun, 04/04/2010 - 18:08We have been busy renovating our portal for Raipur - the capital of Chhattisgarh - RaipurLive.com
The website was upgraded to latest version of Drupal 6 (ie Drupal 6.16) along with main modules used in the system.
Second most important update is its theme. We tried to keep the theme look simple and elegant
Event module has been replaced by date module. And also we are now automatically importing events from http://www.ebharat.in using iCal formats.
Please check the website at http://www.raipurlive.com/
We are open to suggestions and comments.
- vinayras's blog
- 2936 reads
UniSaraswati Devnagari Transliterator - Drupal 6.x Version
Submitted by vinayras on Thu, 03/25/2010 - 09:19UniSaraswati Devnagari Transliterator is a Drupal module to allow typing in Devanagri. Right now the module is only available for Drupal 5.x
We have update the module for Drupal 6.x, you can checkout the latest module at http://drupal.org/node/254129
Download the file at http://drupal.org/files/issues/unisaraswati.tar_.gz
- vinayras's blog
- 2942 reads
Google Transliteration - New Drupal module
Submitted by vinayras on Thu, 03/18/2010 - 18:19VinayRas Infotech is proud to announce a module for Drupal 6.x ( a leading Open Source CMS)
http://drupal.org/project/googleLanguageApi
googleLanguageApi is a simple module that implements Google AJAX Language API for Transliteration of Indian languages
Supported Languages
Arabic
Bengali
Gujarati
Hindi
Kannada
Malayalam
Marathi,
Nepali
Punjabi
Tamil
Telugu
Urdu
For more details about Google Transliteration service, please visit http://www.google.com/transliterate/
If you find any bugs, please file them at
- vinayras's blog
- Read more
- 3543 reads