Joe Hall
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating new permalink structureYes they will still work, but they will be 302 redirected. Its better to use a plugin like this one to ensure that you get a 301 redirect. Search engines like 301 not 302.
Forum: Themes and Templates
In reply to: A wordpress website. new user need helpMost won’t advise this, but why not just steal the javascript from that page?
Forum: Fixing WordPress
In reply to: How to link many pages automatically?I think you should make the Cities pages first and then make the stadium pages as children of their corresponding city page then you can get a list of pages parent and child by using something like:
<ul> <?php global $id; wp_list_pages("title_li=&child_of=$id&show_date=modified &date_format=$date_format"); ?> </ul>Forum: Plugins
In reply to: Plugin for security your imageHeres a good post:
http://www.davidairey.com/stop-image-theft-hotlinking-htaccess/And
Heres a great plugin that does this for you:
http://wordpress.org/extend/plugins/hotlink-2-link/Forum: Fixing WordPress
In reply to: Posts show up in pages??Can you provide a link for us to look at?
Forum: Fixing WordPress
In reply to: Formatting toolbar is goneVerify that you have javascript enabled on your web browser.
Forum: Fixing WordPress
In reply to: Why is my main page the only page that wants to load?I am able to load the “media” page.
Forum: Themes and Templates
In reply to: Different page design for postsTo make your side bar disappear on a single post edit your sidebar code like so:
At the very top of your sidebar file paste:
<?php if(is_single()){}else{ ?>At the very end of your sidebar file paste:
<?php } ?>That should make your sidebar disappear when viewing a single post.
Forum: Fixing WordPress
In reply to: CMS-centric usageTake a look at Andy Beal’s site: andybeal.com
At that site Andy is using a theme called Notepad. I use the same theme at my site: joehall.info
This theme is designed so that the main focus is the pages of the site and the post are listed at the bottom. When I said that you should set up a theme to access post where you want. I meant that you should have the theme organized in a way that emphasizes the pages, and then the post second. This allows for the CMS centric application. Its all in the way that you design your site or “information architecture”. Google this topic further and you are sure to find many others that speak much more eloquently than I.
Forum: Fixing WordPress
In reply to: CMS-centric usagethis is a great idea, one that I use for many of my clients, you can easily do this with the most recent versions. Just make the front page one of the pages that you create with WP. this can be done very easily, in the settings page. And then set up the theme in a way that allows for access to post where ever you like.
Forum: Fixing WordPress
In reply to: can’t see the rich visual editorI would say, either try re-installing wordpress, or verify that your browser has javascript enabled.
Forum: Themes and Templates
In reply to: Different page design for postsMotti,
The short answer is yes, all of this can be done. However, in order to make these changes you will have to makes some changes to your theme. To start learning how to do this read up on theme development. And to do exactly what you want to do above read up on this conditional tag.
Forum: Plugins
In reply to: New Plugin Screws Up Header – Please Help.Issue resolved! Apparently there was a line break some where in the code!
Forum: Plugins
In reply to: Writing a Plugin: How Do I Add HTML After The Content?Never mind, I found my fix to my latest problem here>> http://wordpress.org/support/topic/185618?replies=4
Forum: Plugins
In reply to: Writing a Plugin: How Do I Add HTML After The Content?addmarx,
you are correct! Often times I do make things overly complicated. Although, the tutorial i read said that you should set up a class system to verify that there aren’t any duplicate naming issues with other plugins. But anyways, after taking your advice I have fixed the code….well, kinda. The problem I am facing now is that I am having a hard time processing the “bloginfo(‘url’)” function in my content filter. Is this not possible? The reason that I need to get the blog URL is because I need to create global URLs that point back to the plugin directory. Have any ideas?