Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WordPress or Joomla!So WordPress was designed for a single user only, you cannot create users without a plug-in?
noooooo, that’s not what I said. You have different levels of access rights (subscriber, author, editor, manager). But IIRC authors can edit each others posts and comments to those posts. If that’s not a problem for you, then there’s no problem using WordPress as CMS.
About the themes: Joomla’s learning curve is a bit less steep, I guess (the actual coding), but the look and feel is for both the same (css, the colors and fonts and stuff).
The artistic freedom in WordPress however is so much better. And of course the millions of free themes that you can download and customize. Joomla’s templates are almost never for free.
Peter
Forum: Themes and Templates
In reply to: Create a new page with a different sidebarThe key word is Page Template.
Peter
Forum: Themes and Templates
In reply to: Query posts and custom fieldsDid you read this?
Peter
That piece belongs in your header between
<head>and</head>.Peter
Forum: Themes and Templates
In reply to: WordPress or Joomla!Have a look at this
Peter
Forum: Themes and Templates
In reply to: WordPress or Joomla!That depends on user management: if you’re the only one writing, you don’t need any plugin, if you however have multiple authors who should not be able to interfere with each others work, then yes, you’ll need to find a solution.
Peter
Forum: Themes and Templates
In reply to: WordPress or Joomla!1- How easy it is to create a template in WordPress, easer then Joomla?
In my experience it’s equal in effort, but if you want extra granularity (different looks on different parts), then you’re better of using WordPress
2- Are themes different then templates?
Two words, unfortunately used in a mixed way, describing the same.
Theme is the name used in the theme directory ( 🙂 ), however in the database the theme directory is called a template. I would go for theme 🙂3- Is there any limitations in the design part or you can prety much convert any design into a WordPress template even if the web site is not intented to be used as a blog?
I’ve seen WordPress used as a CMS (for the looks, by default WordPress lacks some backend CMS functionality, which however can be mitigated by plugins, which I never used, btw).
Peter
Forum: Themes and Templates
In reply to: Query posts and custom fieldsah, oke. What exactly is the problem you’re facing?
Peter
Forum: Themes and Templates
In reply to: Query posts and custom fieldsHow do you know these thumbnails are inserted through Custom Fields?
Custom fields are part of a post/page, why not create 4 thumbnails in your xhtml?
Peter
Forum: Themes and Templates
In reply to: WordPress or Joomla!The most depressing thingemie about Joomla was the inability to upgrade plugins (components or whatever they’re called), without deinstalling them first.
Deinstalling meant losing all settings.
Peter
Forum: Themes and Templates
In reply to: How can I change the font color of my tagline?In your style.css file, search for this:
#header span { color:#111111; font-size:11pt; padding:0; }Change the value after color to something different (I suggest #fff).
#header span { color:#fff; font-size:11pt; padding:0; }Peter
Forum: Themes and Templates
In reply to: lost blog when tried to change themeThis one:
UPDATE wp_options SET option_value=’default’ WHERE option_name=’template’ OR option_name=’stylesheet’;
Peter
Forum: Themes and Templates
In reply to: lost blog when tried to change themeI’m a bit in a time squeeze now (since I have to leave for work, but will be back online in 45 minutes), but I’ll describe the procedure
If you start phpMyAdmin, you’ll be presented the databases on the left hand side (probably just one, otherwise choose your database). Then the left sidebar will show your tables. If left default, all start with wp_.
At that point the main view will have several tabs, choose SQL and enter the command I gave above (still assuming wp_ is your table prefix).
Another option is to click the wp_options table (left side), and then ‘Browse’ in the main pane.
Browse for ‘template’ and ‘stylesheet’, and edit the option_value to show ‘default’.
Peter
Forum: Themes and Templates
In reply to: lost blog when tried to change themephpMyAdmin is the one you need!
That’ll give you the option to change entries in your tables.
Peter
Forum: Themes and Templates
In reply to: lost blog when tried to change themeThere is something about MySQL on my control panel
What are your options here?
Peter