ToolBox

ToolBox is comprised of multiple categories including: Tutorials; Graphic, Audio & Video Resources; Code Snippets; etc. With this information, your work-flow will increase, reduce confusion from unknown error and warning messages, as well as help you with spicing up project with new techniques.




Disable the New WordPress 3.1 User Admin Bar

Wednesday, February 23rd, 20112011-02-23T19:44:31Zl, F jS, Y

As the WordPress community slowly upgrades to the new 3.1 version of WordPress they will immediately notice the WordPress.com style user bar known as the “Admin Bar”. The Admin Bar contains quick links such as Profile (“Edit My Profile”, “Dashboard”, & “Log Out”), My Sites (if the WordPress is set up for Network or Multi-sites), Add New (“Post” & “Page”), Comments (depending on level), Appearance (depending on level; Contains: “Menus”, “Widgets”).

Continue Reading »




Limit Characters in a PHP String: Revisited

Sunday, March 28th, 20102010-03-29T04:31:48Zl, F jS, Y

Requested by Commenter: dawoodzai

Original Post: Limit Characters in a PHP String

So I just got a comment from dawoodzai asking if I could turn the Limit Characters in a PHP String article into a php function, well it was more like “I want to convert this to a function, … Thanks”, anyway… I made it into a function and added 2 new features, Preserve Tags and Auto Close Open Tags. Preserve Tags is my function/logic but I have to give credit to Jamie Wilkinson and the Code Snippet from CodeSnippets.Joyent.com for his auto detect and close tags function [ JamieW's Code Snippets Profile ].

Other resources

Continue Reading »




Full Guide to Internal WordPress Blogs – Configuration

Friday, October 2nd, 20092009-10-02T15:25:23Zl, F jS, Y

You’re in your new WordPress.com blog and ready to just start blogging away… WELL DON’T! If you want content to mean anything you’ll post only one introductory post then start to configure the blog so people a can consume the content with ease. First head down the sidebar of the admin panel to Settings. What loads will be the Settings > General page. This page, for the most part, will be pre-filled in by WP.com’s blog application process and all you’ll have to do is confirm it is all correct. One area of interest however is the Blog Picture / Icon (click for preview), which allows you to upload a “Blavatar” (that’s what WordPress calls it) and the blavatar will represent your blog in all of the WordPress.com searches and displays.

Continue Reading »




Full guide to WordPress Extenal Blogs – Setup

Wednesday, September 2nd, 20092009-09-02T06:40:40Zl, F jS, Y

Before downloading the external files go to your server host’s backend and check if there is a way to automatic install a WordPress. I use IXWebHosting and they offer a service call EasyApps that can install over 30 CMS/Galleries/ShoppingCarts including WordPress. If something like that exists, use it, it’ll save you some time. In the event that you have GoDaddy I did a little research and found this for you from them: Installing WordPress on Your Hosting Account. If it’s worked check your version (it’ll be some where on your dashboard) if it’s less then 2.7 you need to download a plug-in called “WordPress Automatic Upgrade”. I’ll get you the link and how to set up plug-ins later in Full guide to WordPress External Blogs – Configuration (Coming Soon), by the way for you automated people, your done with the content of this post so feel free to jump ahead to WordPress External Blogs – Configuration (Coming Soon).

Continue Reading »




Full Guide to WordPress Blogs – Setup

Sunday, August 30th, 20092009-08-30T16:03:57Zl, F jS, Y


Knowing your Skill Level

There are two types of WordPress’ internal and external. By knowing what you are capable of will help you in the next set of steps. If you own a domain + hosting or are willing purchase one and what to use the WordPress there then you’ll need an external WordPress and can jump to Setup Part 2 (Coming Soon).

Continue Reading »




Single and Double Quotes

Saturday, August 29th, 20092009-08-29T06:23:49Zl, F jS, Y

Ever wonder what’s the difference between ” ” vs. ‘ ‘ ? Surprisingly there is one and it’s actually deceptively simple. The basic definition of single quotes in verbatim or WYSIWYG. In contrast, double quotes have a built in logic and can recognize variables.

Continue Reading »




PHP Date() Basics – Countdown to the Weekend

Friday, August 28th, 20092009-08-28T16:22:48Zl, F jS, Y

I have used Date() to feed variables from some complex time tracking scheduling scripts but for the most part it’s use just display time & date, as well as generate the time of an event to log for reference. To get a basic understanding of it, I wrote a simple script using two native functions of Date() N & l (lowercase L). N – Gives you the number of the week, starting from Monday (1), then Tuesday (2), . . . ending with Sunday (7). l – Return the day of the week in a more visual pleasing way; no order just returns the current value which will be the full name of the day of the week. Below, to show how it works I assembled three variables and an if statement to display a count down to the weekend or Say enjoy the weekend.

Continue Reading »