Maxaud
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Insert break in dynamic sidebarYep! Glad I could be of help!
Forum: Developing with WordPress
In reply to: Advice Please – Custom “new blog post” Formtry:
http://wordpress.org/extend/plugins/custom-write-panel/and then hide the other post page with:
http://lorelle.wordpress.com/2007/02/08/wordpress-administration-panel-wordpress-plugins/Or you can get a role manager and set it so users don’t have permission to use the regular post page but they do have the ability to use the new post page.
Hope that helps!
Forum: Developing with WordPress
In reply to: Locking or Hiding Areas of AdminI’ve used the above mentioned plugin and it’s awesome but I found that it would shut itself off at random times thinking that a new plugin was installed.
You could also get a role manager which allows you to change many different aspects of what each role can do.
Forum: Plugins
In reply to: Anyone recommend a good AUTO RESIZE IMAGE plugin?I use:
http://wordpress.org/extend/plugins/flexible-upload/works great and also has a watermark feature
Forum: Plugins
In reply to: Page-specific widget settings?what about different page templates that call different sidebars (ex: sidebar.php, sidebar2.php, sidebar3.php)
and then just apply the seperate page template to whatever pages you want. You adjust what is on the sidebars in the widgets section?just an idea.
Forum: Plugins
In reply to: Leopress theme made widget-ready?Have you tried reading the below page:
http://automattic.com/code/widgets/themes/
?Forum: Fixing WordPress
In reply to: <p></p> and <br /> in posts not working?I had a similiar problem and it turn’d out to be the style sheet for the theme that was preventing those from displaying how I’d like.
Check there, hope that helps!
Forum: Fixing WordPress
In reply to: Permalinks Don’t WorkI would suggest changing hosts but if that isn’t an option, then maybe try the “Netfirms pretty permalink plugin”
http://www.joelika.com/netfirms-pretty-permalinks
Hope that helps!
Forum: Fixing WordPress
In reply to: Insert break in dynamic sidebarGive the following page a read:
http://automattic.com/code/widgets/themes/What you’ll want to do is edit your functions.php file to say something like this:
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '', 'after_widget' => '<br />', 'before_title' => '', 'after_title' => '', )); ?>Forum: Fixing WordPress
In reply to: Multiple LoopsI’m not good at the writing of the code but what if you put in &category=# or something similar when you query the posts, where # is the category of albums?
Forum: Your WordPress
In reply to: I modified Kubrick a bit, feedback?Fix’d my problem in Firefox.
Also should now have the problem of IE6 not showing transperancy(sp) of PNG images correctly fixed.
Feedback? .. anyone?
Forum: Plugins
In reply to: Paid SubscriptionI’d be interested in this also.
Forum: Plugins
In reply to: How can I track visitors to my blog ?I use Statcounter.com
Very happy with their service.The statcounter plugin hasn’t been working all the time for me so I have to insert the code into the footer manually.
Forum: Fixing WordPress
In reply to: How do I get my About page to be my main one?if you are using one of the most recent version of WordPress you, you can go to the options > reading tab and there should be an option to select a page as your “home” page.
As for the category not showing up on the site, it wont show up until you actually post something into it.
Hope that helps.
Forum: Plugins
In reply to: Is there a way to remove Browse Happy button from the footer?whenever there is an update I change over only the files that are in the changelog of the update.
Most of my admin panel is custom branded so this prevents it from being overwritten. when it comes to one I have edited I just cop the code over.