Articles
Looking for the right plugin?
Well, I hope many of you have been using the WordPress plugin directory. It’s a grand location where you can find endless plugin for your WordPress blog.
But sometimes you don’t exactly get what you search for, but according to mdawaffe on WordPress, they have implemented a new open source MySQL text search engine. Well go on, test it out.
Tips & Tricks
How to: show/hide a widget in WordPress with jQuery
In a previous post I talked about how to show/hide a single div
html code with a search inside. Today I’d like to show you how I implemented jQuery into my new theme.
As seen in the current theme, I am using jQuery to animate the show/hide or as known as the css style display: none;
.
Since I am using a custom child theme on my site, and have Hybrid theme as my parent, the widgets or sidebar section is different than may be in your theme. But just apply the the style’s as follows to your theme.
First make sure that your WordPress site is calling jQuery, by plugging in this code into your header.php
file above the <?php wp_head(); ?>
text:
<?php wp_enqueue_script('jquery'); ?>
Then anywhere above the </head
>, plug this code in:
<script type="text/javascript"> function toggleWidgets() { $('#primary h3.widget-title').addClass('plus'); $('#primary h3.widget-title').click(function() { $(this).toggleClass('plus').toggleClass('minus').next().toggle(180); }); } $(document).ready(function() { toggleWidgets(); } </script>
That’s it. Pretty simple huh.
So lets go over what the code does.
$('#primary h3.widget-title').addClass('plus');
This line finds all <h3>
tags with the class widget-title
inside the ID parameter of #primary
and adds a class of plus
.
Then
$('#primary h3.widget-title').click(function() { $(this).toggleClass('plus').toggleClass('minus').next().toggle(180); });
Will apply a click function. When the H3 tag is clicked it will remove the class plus
and add the class minus
.
Then the code that says .next
will then toggle the “next” element after the <h3> title.
Guest Post
Data Center Intrusions: No Sign of Improvement
Data Breach Infographic developed by LifeLock.com
Guest Post
Reasons to Switch to a Virtual Office

According to a recent study conducted by Stanford University, about 10 percent of the United States work force reports working from home (or telecommuting) at least one day per week. The study revealed what many business managers were already discovering: that working from home really works. Virtual offices lower operations costs and, surprisingly, can boost productivity.
If you’re a business owner or a cubicle-bound professional, it may be time to cut your desk leash and conduct business on the go.
The Stats
According to a recent Huffington post article, the share of employers in the U.S. who allow employees to work from home has more than doubled since 2005 to a whopping 63 percent. The reasons behind this shift are telling. In the Stanford University study, a travel company named based in China named CTrip employs 16,000 people and found that over a nine-month period, productivity spiked in the employees who were allowed to work from home. Now, the company officials randomly chose call center employees who had volunteered to participate in the study. As the experiment went on, company officials noticed fewer breaks and sick days as well as more calls per minute. After having this proof, along with increased job satisfaction, CTrip officials rolled out a larger work-from-home group and experienced a 22 percent gain.
While that is truly impressive, what does this mean for smaller businesses? Well, with fewer employees, every upswing in productivity is noticeable. In fact, according to http://www.internetproviders.com, virtual meetings will save your business both time AND money. That’s good news no matter the size of your business.
The Savings
A move from a conventional office to a virtual office has bottom-line implications. The money your business spends on rent, air conditioning, water services, coffee/tea, maintenance and other overhead expenses can easily be diverted to other business functions. Technology reduces the need for a centralized office. With so many Wi-Fi-ready coffee shops, book stores and libraries, virtual offices can spend the monthly Internet fee on purchases that promote growth. The flexibility gives employees the opportunity to “get close” to their customers as well, going to meet local customers (if that is part of your business structure) or responding with lightning speed to requests from customers further away.
Much of today’s business is moving slowly and steadily to “the cloud.” Essentially, storing data or other information on traditional servers can be costly. In fact, most dedicated servers are run on stand-alone computers. You’ll likely have to have IT professionals in place or on standby, in case something happens which causes those servers to go down. With cloud computing, you’ll not only save money on servers, you’ll also remove the need for an in-house IT department. Instead, remote cloud-computing experts handle this efficient technology.
The Work
Modern business guru Seth Godin speaks to the creativity boost that the virtual office brings into the equation. On his blog, he suggests that shows like “The Office” will soon be a “quaint antique” with the boosts in creativity and production along with the massive drop in overhead costs. The home office (or anywhere else the employee chooses to work) is a fresh environment that can help to inspire the innovation and creativity that all businesses strive and long for.
-
Tips & Tricks1 month ago
WordPress Security Hacks
-
Pages3 months ago
Write For Us – Guest Post
-
Showcase4 months ago
StylizedWeb.com
-
News3 months ago
How to: Show/Hide any div box with jQuery in WordPress
-
Tips & Tricks3 months ago
Remove the title attribute using jQuery
-
Tips & Tricks5 hours ago
How to: show/hide a widget in WordPress with jQuery
-
Plugins7 months ago
Top Membership plugins
-
Tips & Tricks4 months ago
Limit the characters that display on the_title
WPThemeSupport
February 20, 2009 at 12:22 am
The new search upgrade is a huge improvement. Now when you search for a plugin you get relevant results instead of a list of the popular plugins and then slighly related plugins.
I am just surprised that it took them so long considering that they just only recently enabled plugin installation/search through the WP dashboard.
WPThemeSupport´s last blog post..Create A Custom Post Message With Shortcodes
frosty
February 20, 2009 at 5:30 pm
Right, but looks like the newly open source MySQL text search will be improved even more once it can search author names and tags.