Archive - February, 2011

When is the Best Time to Schedule Your Tweet?

Timely.is

If you’re like me, I am constantly debating the best time of day to schedule my tweets for optimal impact. You may simply be updating members or constituency, but the ultimate goal is to always grow viewership. There are lots of viewpoints on the subject. It seems everyone has their own formula for success. And it can all be very confusing at times.

If you want to simplify the decision, check out Timely.is. Timely will analyze your last 199 tweets to figure out what time/s of day you will get the best engagement. For example, my optimal times are 8 a.m. (CST), 9 a.m. (CST), 10 a.m. (CST), and 12 p.m. (CST). Guess I cater to morning people. This free application will publish your tweets, ultimately learning the habits of your followers. As Timely learns more, it will adjust your optimal times.

Over the next few weeks, I will be giving Timely.is a spin to see how viewership is impacted.

UPDATE

Here are few more free applications that I’ve found which will help you in determining the optimal time to tweet:

WordPress Tip: Modifying A Password Protected Page

WordPress Logo

Here are few tips that I thought I would pass along when modifying a password protected page or post in WordPress.

First, when you decide that you want to password protect a page or post, WordPress will natively include the following generic text on the page/post:

“This post is password protected. To view it please enter your password below:”

Simple, but may be a bit too generic for many. In my case, I need to modify the text a bit. To modify, you simply need to open /wp-includes/post-template.php using an ftp solution like FileZilla. You are searching for the following code:

function get_the_password_form() {
	global $post;
	$label = 'pwbox-'.(empty($post->ID) ? rand() : $post->ID);
	$output = '<form action="' . get_option('siteurl') . '/wp-pass.php" method="post">
	' . __("This post is password protected. To view it please enter your password below:") . '

	<label for="' . $label . '">' . __("Password:") . ' <input name="post_password" id="' . $label . '" type="password" size="20" /></label> <input type="submit" name="Submit" value="' . __("Submit") . '" />

	</form>
	';
	return apply_filters('the_password_form', $output);
}

To make changes, modify the highlighted text above. To learn more about this, visit http://wordpress.org/support/topic/password-protected-change-message.

Here’s another simple trick to spruce up your password protected page. When WordPress publishes your new password protected page/post, it will modify the page title. For example — PROTECTED: NAME OF PAGE. I personally find included “PROTECTED” in the title unnecessary. Here’s a simple way to remove it. You will need to open your functions.php file, and add the following code snippet at the top of your file just after <?php.

add_filter('protected_title_format', 'blank');
function blank($title) {
       return '%s';
}

If you want to learn more about doing this, visit: http://wordpress.org/support/topic/how-to-remove-protected-from-pw-protected-page-titles

Congrats to United Methodist Children’s Home

Congratulations to my newest client The United Methodist Children’s Home of North Georgia Conference! Hoping Lil Jon can help provide lots of support for this great ministry and the children they support!

I invite you to learn how Big Heart Design can assist your ministry or non-profit.

Latest Workshop Slides

In case you missed my most recent workshop during M2LIVE Iowa, you can gather bits and pieces from my workshop slides. Be sure to check http://M2LIVE.org for more upcoming training opportunities.

Another Reason I Love MailChimp

MailChimp Logo

Anyone who knows me, knows that I am continually praising MailChimp, the world’s premier enewsletter management platform. Here’s just one more reason I love MailChimp … check out the signature line of the support email they sent me:

Thank you,

Freddie Von Chimpenheimer III
The MailChimp / Client Services
MailChimp.com

Yes, if they offered poor customer service it might set me on my heals. When you offer quick and immediate responses to my question, humor is endearing.

If you want to sign on with MailChimp, please consider creating an accounting by clicking my referral link: Join MailChimp!

Page 1 of212»