bill127300
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image links working but images not showing in gallerysorry, site is http://www.freedomtodine.com
Forum: Plugins
In reply to: WP Events Calendar by Luke Howell events not linking to pagesFigured it out myself.
Forum: Fixing WordPress
In reply to: Calendar Plugin Cutting off titles when hoveredhttp://www.doverma.org/town-government/meeting-calendar/ is where it is. Thanks.
Forum: Everything else WordPress
In reply to: Is WordPress Appropriate for a Small Town Website?I use it for http://www.doverma.org so yes!
Forum: Fixing WordPress
In reply to: Cannot link directly to PDF file in media library, only to postWhat post? I thought we were talking about static home pages in this thread?
Forum: Fixing WordPress
In reply to: Problems with my navbar. How to unlink a certain category?This plugin will do what you want:
http://wordpress.org/extend/plugins/page-lists-plus/
Just put a # in the links to field and that page will no longer link to anywhere.
Forum: Fixing WordPress
In reply to: Visual Editor is no longer workingAfter 2.7 the image uploader didnt work. After 2.8 the visual editor didnt work. Both times just reuploading the wordpress files via ftp got it working. It was just a missing file that didnt get installed correctly I guess.
Forum: Fixing WordPress
In reply to: help please – page redirect?Use this plugin:
Forum: Fixing WordPress
In reply to: show widgets only on pages of special typeslayers has a major flaw for me. I use a ton of widgets over my site and the menu for slayers just lists the widget as “text” instead of by the title you gave it. Kind of a pain when I have 40 text widgets.
Forum: Fixing WordPress
In reply to: show widgets only on pages of special typeI second the widget-logic. I use it on all my sites for this.
Forum: Fixing WordPress
In reply to: Borders on Pictures are added automatically, help!Thanks!
Forum: Fixing WordPress
In reply to: PHP Fatal error: Only variables can be passed by referenceJust in case anyone else runs into this problem I found the solution by posting on another forum.
OK simple answer
Replace the single line that says$this->queried_object = & get_page(get_option(‘page_for_posts’));
with the two lines
$tmpPageVariable = get_option(‘page_for_posts’);
$this->queried_object = & get_page($tmpPageVariable);Forum: Fixing WordPress
In reply to: How do I remove the ‘WordPress.org’ link from my ‘Meta’ list?Look for the widget.php file in wp-includes. You will need to change it again possibly when wordpress is updated to new version though.
For a quicker easier solution try installing widget called quick-admin-links. This gives you the ability to have a link to create a new post or page right from meta widget which I find is extremely useful.
Forum: Fixing WordPress
In reply to: Using static homepage in 2.7 – How do you display your blog?!You are making this much too hard on yourself.
Go to Settings > Reading.
You will see the option for making your homepage a static page and blog page another page. Just Click the button and use the dropdown to set which page shows what.
Forum: Fixing WordPress
In reply to: Two different installs being referencedHave you gone into settings > general and changed the address of your wordpress address and blog address? You need to do that to drop the folder from the address if you haven’t.