Connect with us

Tips & Tricks

How to: Add a contact me via Skype™ button

Published

on

This little trick is really simple and easy. All you need to do is plug this line of code anywhere you would like to use the text.

<a onclick="return skypeCheck();" href="skype:austin.passy?call">Call me on Skype!</a>

That’s is, pretty simple huh? Just make sure you change skype:austin.passy to your user name!

Want a test? Well, please use the text button, as I was getting to many call’s and hangups: Call me on Skype! Message me on Skype!

Thanks to Shayne for this code!

Update:

I was reminded by Shayne that you will have to add this script into your header.php file:

<script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js">
</script>

That way if the user doesn’t have Skype, they will be prompted to download it if they would like :).

Continue Reading
3 Comments

3 Comments

  1. John Kolbert

    February 3, 2009 at 5:25 pm

    Hey, thanks for the tip! I’ve been meaning to do something like this on my contact page but never took the time to Google it. Thanks!

    John Kolbert´s last blog post..Portfolio: Custom Comments Plugin for Naked Nutrition Network

    • frosty

      February 3, 2009 at 5:58 pm

      No problem! Glad I could help someone!

  2. sergey

    August 5, 2009 at 2:20 am

    Thank you for the tip!

You must be logged in to post a comment Login

Leave a Reply

Tips & Tricks

Remove spaces when echoing the_title

Ever wanted to print or echo the WordPress title attribute without spaces?

Published

on

This little trick can be useful for calling custom functions and printing the title with out spaces for W3C compatibility. I used this trick in a new theme called Galleria, which will be out for public download in the coming days.

Using this comes in handy for a delicious text link:

<?php $title = get_the_title(); ?>
<a href="http://del.icio.us/post?url=<?php echo $title; ?>&amp;<?php echo str_replace(" ", "%20", $title); ?>">
Bookmark This (<?php echo $title; ?>)</a>

What I am doing is calling $title = get_the_title(); and using str_replace(" ", "%20", $title); to replace empty spaces with a %20, which is used in URL encoding empty spaces.

Alternatively you can use a dash or underscore.

Thanks to Jason Boyle for his adaption.

Continue Reading

Tips & Tricks

Display the_excerpt only if there is text

Have you ever wanted to display the excerpt only if you write one? A simple couple lines of code can display the_excerpt any where you like.

Published

on

In my new theme, I am using this coded trick to display the excerpt on a single post only if I’ve got text inside. Usually if you use the_excerpt and you don’t have one, it will fake one for you.

This is not something that I wanted to do on the single post page. So I used the following code to check if the excerpt existed.

if ( !empty( $post->post_excerpt ) ) :

Once this action is taken into account, you can factor in what code you want to out put if the post_excerpt isn’t empty.

if ( !empty( $post->post_excerpt ) ) :
	the_excerpt();
else :
	false;
endif;

The above code checks if there is an excerpt and print’s it to the screen. If there isn’t an except, it doesn’t do anything.

Continue Reading

Tips & Tricks

Add a shortcode

Published

on

This is a simple one.

/**
 * Your Blog title
 *
 */
function my_blog_title() {
	$blogname = get_bloginfo('name');
    return '<span class="blog-title">' . $blogname . '</span>';
}		  	
add_shortcode('blog-title', 'my_blog_title');

Just add this to your functions.php file and then add [blog-title] in any post or page and it will return your Blog Title. :)

Continue Reading

Random Search Terms

Title

Recent Posts: Fully Net Worth . com

Candy Ken Net Worth: How Rich is the Rapper from Austria?

Candy Ken Net Worth: How Rich is the Rapper from Austria?

Candy Ken Jakob Kasimir Hellrigl known by his stage name as Candy Ken is an Austrian rapper, model, and TikToker. Ken is best known for his masculine appearance with feminine pop culture. As of May 2020, Candy Ken’s net worth is estimated to be $2 million. Jakob was born on July 27, 1992, (Leo) in […]

Flipp Dinero Net Worth: How Rich is the Rapper Actually?

Flipp Dinero Net Worth: How Rich is the Rapper Actually?

Christopher Saint Victor, who is better known by his stage name as Flipp Dinero, is an American rapper and songwriter. He became viral after Odell Beckham, the football player posted a video of him dancing to his song called “Leave Me Alone”. As a result, the song would peak at number 20 in the Billboard […]

Tony Beets Net Worth: How Rich is the Gold Miner Actually?

Tony Beets Net Worth: How Rich is the Gold Miner Actually?

Tony Beets is a Gold Miner and one of the most popular cast members on the reality series Gold Rush which airs on Discovery. He is known to be one of the biggest gold miners in Canada and owns the Tamarack Mine and Paradise Hills. As of 2019, Tony Beets net worth is estimated to […]

Robert Herjavec Net Worth

Robert Herjavec Net Worth

Robert Herjavec Net Worth.   Of all the famous global entrepreneurs, Robert Herjavec’s name tops the list. He is a Canadian investor, businessman, tv personality, author, and publisher. He founded a Canadian integrator of Internet security software, called the BARK systems, and sold it to AT&T Canada, now called Allstream Inc in the year 2000 […]

Trending