Matt McInvale
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Categories not workingYour permalinks are borked. Change them to the default option then contact your hosting company to find out why mod-rewrite isn’t working.
Forum: Fixing WordPress
In reply to: I Need Help…Fatal Error: cannot redeclare…Try uploading the core files again. Sounds like something didn’t upload completely.
Forum: Fixing WordPress
In reply to: Recent Comments widget – displays properly, but links don't workThe links are all anchors and don’t include a full URL as expected. Where did you get the code for that widget?
Forum: Fixing WordPress
In reply to: making post title an active link – permalinkIf your theme includes home.php, edit that. If not, edit index.php.
Forum: Fixing WordPress
In reply to: How To Stop Advertising Posters?Install Akismet.
Forum: Fixing WordPress
In reply to: Created a page and now its broke my homepage..In my experience, yes that will fix the problem completely. I didn’t write the plugin though, so I can’t guarantee anything.
Forum: Fixing WordPress
In reply to: Created a page and now its broke my homepage..I’ve noticed this quirk on some of my installations as well. You need to disable the “automatically detect changed posts” feature and remove the redirect it added.
Forum: Fixing WordPress
In reply to: Import database table into wordpress posts tablePersonally, I would write a little plugin to parse your file and then use wp_insert_post() to push it into your database.
Forum: Fixing WordPress
In reply to: Changing Permissions at localhostWhat operating system are you running?
Forum: Fixing WordPress
In reply to: Created a page and now its broke my homepage..Do you have the Redirection plugin installed?
Forum: Fixing WordPress
In reply to: Page Error and Unable to Edit Widget SidebarPossible JavaScript bug within a plugin or theme.
Forum: Fixing WordPress
In reply to: Google Analytics InstallThere are several plugins you can install to do this. Or, you can just manually add the code to your theme’s header.php file.
Forum: Fixing WordPress
In reply to: One Child to Two Parents… Seems Like a Divorce, With Custody IssuesI would probably do something with a shortcode to duplicate the page content onto the secondary page.
Baseball > Baseballs would hold your content, then on Balls > Baseballs you’d add something like [mypageshortcode page=XX]
I’m not aware of a shortcode that does that but it would be pretty easy to code up.
Forum: Fixing WordPress
In reply to: is_page –> includeIf you want it to show up on your homepage, I like using is_front_page().
Forum: Fixing WordPress
In reply to: Displaying blog on different pageUsing get_posts() will allow you to override whatever settings are in the backend. You can put a collection of posts anywhere on your site. 🙂