Archive for the 'Templates' Category

Only Show Certain Themes

May 30, 2008

I was looking for a way to only show certain themes on admin/build/themes page. I ended up adding some jquery to handle this. I created this script in a js file called theme_list.js.

var themes =new Array();

//Enter themes here into the array.
themes[0] = ‘theme_1′;
themes[1] = ‘theme_2′;
themes[2] = ‘theme_3′;

if(Drupal.jsEnabled) {
$(document).ready(
[...]

Preview Your Theme Styles

May 13, 2008

I was working on creating a preview window in the theme settings page for a theme I was implementing. See Garlands preview for an idea of what I’m talking about. It was a simple idea that the user would choose the style they wanted of that theme and it would update an image [...]

Converting Plugins, Extensions, etc. in Joomla

June 28, 2007

I’m mainly working on Joomla 1.5 at the moment and there are very, VERY, little extensions and plugins for it. So I’m learning how to create them, but the best way so far is trying to convert already created 1.0 versions to 1.5. This forum topic is invaluable in doing that.http://forum.joomla.org/index.php/topic,177581.0.html
By the way [...]