Layout Image

FREE Click Home the Bacon E-Zine Enter Name

Email

WordPress Trainer,Follow Us on FacebookWordPress Trainer, Follow Us on TwitterWordPress Trainer, Follow Us on LinkedIn

Archive for Code

If you’ll like me you probably use a variety of tools in your computer environment: Google, Firefox, iTunes, Outlook, YouTube, Skype, and the list goes on and on.

Well I have found this really cool web site makeuseof.com that I’d like to share with you that offers (to date) 26 free tip sheets and cheat sheets for your computer environment.

Did you know that you can use Google’s search field as a calculator? I didn’t until I downloaded makeuseof.com’s Google Search Commands and Shortcuts. In this cheat sheet you will learn how to Restrict Search to Google Groups, Restrict Search, Specialized Information Queries, Alternative Query Types, Restrict Search to Sites where Query Words Appear, Basic Examples, and Calculator. All on one sheet – very cool and important information!

Have fun downloading!

26 Free Tip Sheets and Cheat Sheets for Your Computer Environment (Windows and Mac)

  1. Dropbox Tips
  2. YouTube Tips
  3. Outlook Shortcuts
  4. Skype Shortcuts
  5. Opera Shortcuts
  6. iPhone Cheat Sheet
  7. Useful Gmail Shortcuts
  8. Twitter Cheat Sheet
  9. Photoshop CS5 Cheat Sheet
  10. iTunes Cheat Sheet (Mac)
  11. iTunes Cheat Sheet (Windows)
  12. Windows CMD Commands
  13. GIMP Shortcuts
  14. 30 Codes for Chat Smileys
  15. Facebook Shortcuts
  16. VLC Player Shortcuts (BTW – I love this player! If you make video for your clients and they can’t play it have them download the FREE VLC Player and I bet you your video will play!)
  17. Google Reader Shortcuts
  18. Mozilla Thunderbird Cheat Sheet
  19. Internet Explorer Shortcuts
  20. Google Chrome Shortcuts
  21. Firefox Shortcuts (Mac OSX)
  22. Firefox Shortcuts (Windows)
  23. Best Google Search Tips
  24. Linux Commands Reference
  25. Mac OSX Shortcuts
  26. Windows Shortcuts

If you have any tips or shortcuts you’d like to share please leave a comment below.

And while you’re visiting here Sign up for my U Gotta Look At This blog posts at the top right – so you won’t miss any posts – and every time I post it will be delivered to your inbox (and when you sign up don’t forget to verify that you did – you’ll get an email to do that – just click on the link).

Oh I almost forgot, while you’re visiting makeuseof.com check out their Best of Apps – you’ll be glad you did.

 

SexyBookmarks

I’ve been searching high and low for this plugin that you can add to the bottom of your posts for others to click and share in various places;  however couldn’t find out it’s name, that is until David R. in a webdesign.com event chat mentioned it today.

You can view the SexyBookmarks Plugin in action at the bottom of this post and it’s very easy to install (see bottom of post for how-to installation); however if you are using a Builder iThemes WordPress Theme the bookmarks show up in all your widgets and really makes your pages look terrible (this can be fixed and I’ll show you how in a second)!

See how ugly this is BEFORE I apply the fix:

The fix was really easy once I figured out the code to add to my Builder CHILD Stylesheet (style.css), which I added to the bottom of the sheet:

/***********************************************
sharing is caring widget fix
************************************************/
.widget .shareaholic-show-on-load{

display:none !important;
}

.widget .shareaholic-like-buttonset{
display:none !important;
}

See how pretty this is AFTER I apply the fix:

How to install SexyBookmarks:

In order to cut down on email spam from your web site you can add some code to your functions.php file and then a shortcode to encode it. Here’s how:

Add this code to your functions.php file

function protect_email_address( $atts , $content=null ) {<br />
 for ($i = 0; $i < strlen($content); $i++) $encodedmail .= "&#" . ord($content[$i]) . ';';<br />
 return '<a href="mailto:'.$encodedmail.'">'.$encodedmail.'</a>';<br />
}<br />
add_shortcode('mailto', 'protect_email_address');

Then use this shortcode format to ‘encode’ it:

[mailto]your email name@your.com[/mailto]

NOTE (Replace your email name with the beginning of your email address (before the @) and replace your.com with your info after your @ in your email address)

Doing this will help stop spam bots and scrapers from obtaining your email address from your website. Good Luck!

Categories : Code, WordPress Training