wordpress template

Linux Command,
WordPress Version and location

For web hosts out there that need to know where all wordpress installs are located on their server use the following command from root access:
Read More

01/03/12 by Miles

Endless WordPress Loop…

When migrating from our server to our clients server we ran into a strange problem.  Basically whenever the user tried to login at /wp-admin.  They would be sent into an endless loop.  This loop would send the user back to the login page as though nothing happened.  After hours of work we finally fixed this error… a long the way I found out that there are any many different issues that may be causing this loop.  So here is the way we troubleshooted the problem.

1.  Try deleting your browsers cache and cookies.  Once this is done restart your computer.  If this doesn’t fix the problem then I am sorry.. continue to number 2.  If it does work… your welcome and your lucky. Read More

10/27/11 by Miles

Mike’s Sound Solutions

While working at Allied Computer Solutions I was in charge of the Mike’s Sound Solutions web project.  For Mike’s Sound Solutions I helped design and code an easy to use wordpress template.  This custom template utilizes many great plugins and features of wordpress.  Giving the owners a easy way to update content on their website as well as providing the users with a great experience.

Here is a link to their web site:  http://www.mikessoundsolutions.com

10/21/11 by Miles

Creating a Dynamic JQuery
Accordion for WordPress

Setting up the backend

The goal of this tutorial is to create a fancy dynamic jquery accordion that you can access from your wordpress theme.  This is great for FAQ pages or any page with lots of content.

Step 1.  Download wpalchemy from http://www.farinspace.com/wpalchemy-metabox/#download

Wpalchemy will help us create our custom metabox quickly.  Once you have the latest files place the two wpalchemy files into your theme’s folder.

Next navigate to the theme’s folder. For this demo I will be using the twentyeleven theme as an example… We will start creating the metabox by first going to the theme’s functions.php

Here, at the end of the function.php we will need to add a few lines of code to initiate the wonderful code provided by wpalchemy. Here is what we need to add:

// include the class in your theme or plugin
include_once 'MetaBox.php';
include_once 'MediaAccess.php';

// include css to help style our custom meta boxes
if (is_admin()) { wp_enqueue_style('custom_meta_css',
get_bloginfo('stylesheet_directory') . '/metabox/meta.css'); }
$wpalchemy_media_access = new WPALchemy_MediaAccess();
$custom_metabox = new WPAlchemy_MetaBox(array
(
	'id' => '_custom_meta',
	'title' => 'Add Accordion',
	'template' => STYLESHEETPATH . '/metabox/accordion.php',
)
);

The first line two lines call the MetaBox.php and MediaAccess.php which are needed to run the metabox…  Read More

10/18/11 by Miles