jimmerd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Minimatica] Minimatica: Thumbnail Gallery and LightboxTry the Auto Thickbox plugin. It works great for me.
http://wordpress.org/extend/plugins/auto-thickbox/
I see there’s one more advanced and higher rated but I haven’t used it.The nice thing is it’s automatic. You upload a bunch of photos to a post and they’re automatically done as thickbox (which is a flavor of lightbox).
First, let’s try to get some terminology clear here.
You’re using “blogs” where WordPress language usually uses “posts.”
The whole site is a blog, composed of posts and pages.You can assign any page as your home page, be it a static page or an archive page.
But “it should be dynamic that can fetch the newest page” isn’t clear to me. The newest “static” page? Not sure how I’d do that.
It could easily show only the 1 most recent POST, if that’s what you want.
We don’t generally talk about the newest page, as they’re static, so publication date shouldn’t be relevant.
Hope this helps.
Forum: Fixing WordPress
In reply to: Create Multiple Posts on Multiple PagesWell, you might want to look into Custom Post Types for that.
http://justintadlock.com/archives/2010/04/29/custom-post-types-in-wordpress
is a good intro.Or you may just want to start with Categories. If you assign a category to a post, it’s easy to make a page that shows all the posts in that category.
http://codex.wordpress.org/Category_TemplatesExactly right. home.php is for the home page.
http://codex.wordpress.org/Template_Hierarchy
is a great explanation of the hierarchy.It would display the content of one post and nothing else.
That sounds like the single.php template file in the theme.
Forum: Fixing WordPress
In reply to: 3.2.1 HAS LOCKED ME OUT….PLEASE HELP!!!That sounds like a file or some files got garbled on install/update. First thing to try is to download a fresh WordPress and FTP in all files all over again.
Since this is happening in the Admin section, I’d start with the wp-admin folder.Forum: Fixing WordPress
In reply to: Cant change PHPWho is the hosting company? Do they promise PHP5 and MySQL?
Have you tried uploading a PHPinfo file?
Just make a file with the following PHP:
<?php phpinfo(); ?>
save as phpinfo.php
upload to your server’s web root
go to yourdomain.com/phpinfo.phpThis will list all PHP info and may help you (and/or us or your host) solve the problem.
Rob and Marcel: both solutions are great. The two together, even better.
How about combining? Add a class to the link and style that in the admin header? (I want that notice to really slap me in the face; I’ve neglected to turn it off a time or two.)add_action('in_admin_header', 'nostromo_sebih'); function nostromo_sebih() { if (!get_option('blog_public')) { $title = apply_filters('privacy_on_link_title', __('Your site is asking search engines not to index its content')); $content = apply_filters('privacy_on_link_text', __('Search Engines Blocked')); echo "<p style='float:left; position: relative; top:-4px;'><a title='$title' href='options-privacy.php' class='sebih'>$content</a></p>"; } } // 'Search Engines Blocked' Highlighter function rbd_search_engines_blocked() { echo '<style type="text/css"> a.sebih { font-weight: bold; color: #FFFFFF; background-color: #CC0000; display: inline-block; padding: 5px 10px; border-radius: 5px; } </style>'; }; add_action('admin_head', 'rbd_search_engines_blocked');Forum: Themes and Templates
In reply to: Links to date archives leading to a 404 page?No idea what fixed that. I know that monhegan.com had some plugin issues.
I also know that there are two things I’ve learned to check on any WP site that has problems:1. Does the database need optimizing/repairing?
2. Are there extra returns at the end of a PHP file? (This most commonly happens on either the wp-config.php or the functions.php in the theme.)
Yes, that worked.
This is the first time I’ve found a plugin that’s AHEAD of the curve. Usually, they’re full of deprecated code, etc.
Thanks,
JimForum: Themes and Templates
In reply to: Links to date archives leading to a 404 page?Forum: Plugins
In reply to: Auto use first image in post as "Featured Image"This plugin worked great for me:
http://wordpress.org/extend/plugins/auto-post-thumbnail/Perfect! Thanks jlarson.
I just did a search and replace and re-uploaded (change wp-stoutgc to myprefix_stoutgc).
Works fine now.Seems like it should be an easy fix for the plugin in next version, yes?
Forum: Fixing WordPress
In reply to: Custom Post Types PermalinkswpAdm’s solution was PERFECT for me.
When I changed the permalink structure, I was fine EXCEPT for custom taxonomies, which led to 404s.
I just put wpAdm’s code in functions.php and all is fine now.Forum: Fixing WordPress
In reply to: .htaccess and permalink problemsResolution: Turns out the mod_rewrite was turned off, which support tells me is the default for their install. They turned it on and all is now fine.
Forum: Fixing WordPress
In reply to: .htaccess and permalink problemsIt appears my host may be running php4. The general settings say “The PHP Date/Time library is not supported by your web host.”
And there are RSS feed widgets on the Dashboard homepage that aren’t working as normal.
BUT: I did a phpinfo file and it indicates PHP 5.1.6
Is that the problem? Codex says at least 5.2 is recommended.
I have found that anything I put in an .htaccess file causes problems.