Michael Bishop
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: avatar photo?There’s built in support for http://en.gravatar.com/, otherwise there are several plugins that allow a custom image to be uploaded to the user profile. I wouldn’t have a recommendation however.
Forum: Fixing WordPress
In reply to: still cannot see pdf after it's uploaded – only the linkFirst, if you are using version 2.7.1 of WordPress, you should seriously consider upgrading. That is very old and certainly a security risk.
Second, there’s no fool proof way to display the actual pdf “in the page”. That is browser dependent. One option would be to make a .jpg of the .pdf, and upload that as well. Then make the .jpg *link* to the .pdf.
Forum: Fixing WordPress
In reply to: Cant size photos correctly. How do you do it?If you tried changing the default sizes *after* uploading the image, WordPress will not resize the image again. Only when it’s initially uplaoded. You can crop and edit the image from the visual editor manually, or you can delete the item and re-upload it with the new dimensions set and re-generate the thumbnail.
Forum: Developing with WordPress
In reply to: Images on category pagesYour template is probably using the_excerpt, which strips any html, including images.
Two options off the top of my head. Modify the_excerpt in your functions.php file to include the img tag, or better, would be to utilize the featured image option and modify the category template to use a thumbnail of the featured image.
http://codex.wordpress.org/Post_Thumbnails
To modify the excerpt function to include img tags (which still would only show if at the beginning of the post)
// allow certain tags in excerpt function excerpt_nostrip($text) { return strip_tags($text, '<img>'); } add_filter('get_the_excerpt','excerpt_nostrip');Forum: Themes and Templates
In reply to: any way to make pages without adding them to menu?It depends on your theme and how it’s set up. If you are using the new nav menu system, there’s a checkbox for menu to automatically add new pages. You’d uncheck that and manually add the pages you want.
If your theme uses the older, wp_list_pages, you would need to edit your template to include/exclude the pages you want.
Forum: Plugins
In reply to: Forum for wp ?I heard good things about the Vanilla session at WordCamp Miami and it’s integration with WordPress. BBPress is what runs this forum and integrates with WordPress (obviously) but is going through some changes as to whether it will be a plugin or stand alone install. Worth investigating both I’d say.
Forum: Fixing WordPress
In reply to: How do I link to other pages on menu?Hello World is the default post created by WordPress on installation. Most themes are configured to display posts on the home page out of the box.
Forum: Fixing WordPress
In reply to: How do I link to other pages on menu?That is set via Settings->Permalinks. Any of the non-default permalink structures will give you pages with the page name instead of the ID.
If you don’t want your blog posts to show on the home page, you need to create a page that you do want to display there, then under Settings->Reading-Front Page Displays: a static page, and then select the page you created that you want to display there from the dropdown.
Forum: Fixing WordPress
In reply to: Some category links work and some give page not found error message@sharon – usually a link URL would be example.com/category/foo. When I hover over a category link on your site, I see /Daily Drivel/faqs/. WordPress does not support the space, it’s simply trying to strip it out, hence a 404 on /DailyDrivel/faqs/
Under Settings->Permalinks Category Base, is there anything in that field? I assumed that’s where Daily Drivel was. If so, try, Daily-Drivel, Daily_Drivel, and let us know if that fixed your link issue.
Forum: Fixing WordPress
In reply to: WordPress pages with titlesCheck your theme’s header file, or possibly in functions.php. Somewhere there’s a conditional is_page for the meta title tag being set to only show the page title.
Conversely, you can use one of the “SEO” plugins that gives you more granular control over your meta title from the admin, without having to edit any theme files.
Forum: Fixing WordPress
In reply to: Some category links work and some give page not found error messageIt looks like you changed your category base to ‘Daily Drivel’? Is that correct?
When I hover over a link in your sidebar, it looks like it’s showing /Daily Drivel/category (Note the space between Daily and Drivel). However generally speaking WordPress doesn’t allow spaces in permalinks. That’s probably the source of your problem. Try using an underscore _ or a dash – between Daily and Drivel.
Forum: Fixing WordPress
In reply to: How do I link to other pages on menu?If they are not published, you won’t be able to link to them.
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache and RSS feed problemCheck the read-me file and the dynamic cached content section.
I wasn’t able to replicate the problem. Do you have any plugins running that have added additional meta boxes to your write post screen? Any plugins that are category related?
Also, what browser did you experience this with?
Forum: Networking WordPress
In reply to: Sitewide Tags Blog SEO ConsiderationsAlso, cannonical URLs *can* be cross domain http://googlewebmastercentral.blogspot.com/2009/12/handling-legitimate-cross-domain.html