WordPress Flash Uploader – HTTP Error

Came across a temporary solution for this error. Simple, but tedious and I hope to find a more efficient solution soon:

Create another user account on your computer

After it’s done loading up, open up your Firefox Browser and login to your WordPress Dashboard >> Posts > Edit > Upload/Insert,  and attempt to upload your images again. Should work.

-OR- just use the Browser Upload tool.

Be Back Soon (hopefully) with a better solution.

NextGEN Flash Uploader ERROR: You do not have permission to upload files.

Came across a temporary solution for this error. Simple, but tedious and I hope to find a more efficient solution soon:

Create another user account on your computer

After it’s done loading up, open up your Firefox Browser and login to your WordPress Dashboard >> Gallery >> Add Gallery / Images > and attempt to upload your images again. Should work.

Be Back Soon (hopefully) with a better solution.

How to Remove Drop-down Menus

If your drop-down menu is being generated with a version of the wp_list_categories function, you can add into the parameters (or change them) to read with … &depth=1. For example:

<?php wp_list_categories('title_li=&depth=1); ?>

This will only display top level, or parent, categories.

Show Only Children of Page in Sidebar

Wow, so that’s quite the mouthful right?

When I first attacked this, I thought it would be quite tricky… was both right and wrong. ;)

Find your sidebar.php, then place the following php edit code within the ‘ul’:

<div id="sidebar">
<ul class="xoxo">
	<li id="pages">
<ul>
		<?php
		 if($post->post_parent)
		$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
		else
		$children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
		if ($children) { ?>
<ul>
		<?php echo $children; ?></ul>
<?php } ?></ul>
</li>
</ul>
</div>
<!-- #sidebar -->

Explanation of the above code can be found here at WordPress Codex. They’re better than I am at the ‘techy talk ‘ of the ‘why’s’ ;)

After all that is put in place, should look like this:

SubPagesOnSidebar