Sep 5, 2013 - Android    Comments Off on Safely remove T-Mobile bloatware

Safely remove T-Mobile bloatware

Using the Android app Titanium Backup, you can remove bloatware from stock ROM phones.

Titanium Backup
https://play.google.com/store/apps/details?id=com.keramidas.TitaniumBackup

T-Mobile USA Safe Apps to Remove
http://androidforums.com/one-s-all-things-root/545648-t-mobile-usa-safe-apps-remove.html
http://androidforums.com/blaze-4g-all-things-root/551116-safe-remove-apps.html

Removing Carrier IQ
http://androidforums.com/one-s-all-things-root/545039-removing-carrier-iq.html

Sep 5, 2013 - Android    Comments Off on Set up or remove Google voicemail

Set up or remove Google voicemail

Set up Google voicemail for your phone

With Google Voicemail you’ll have all your voicemail in one place, with transcriptions, access to your past voicemails, and voicemail sharing options.

Read more »

Sep 4, 2013 - Wordpress    Comments Off on Migrate WordPress content between sites

Migrate WordPress content between sites

It’s (very) possible to migrate WordPress content (posts & pages) between different WordPress sites. In fact, WordPress has a native import/export plug-in.

You can select the entire site content or break it down by category (Warning: if your site is large, consider breaking it into smaller chunks to avoid PHP timeouts with your web host).

Read more »

Jul 3, 2013 - Geeky General, Wordpress    Comments Off on Add conditional login link to WordPress

Add conditional login link to WordPress

Here’s how to add a “log-in/log-out” link to WordPress which is based on the current login state.

Note that there is a CSS class called “loginlink” which can be styled as needed. You may need to include an !important declaration to override default styles.

<?php	
	if ( is_user_logged_in() ) {
			echo '<a href="'.wp_logout_url( get_permalink() ).'" title="Logout" class="loginlink">Log-out</a>';
		} else {
			echo '<a href="'.wp_login_url( get_permalink() ).'" title="Login" class="loginlink">Log-in</a>';
		}
?>
Pages:«1...567891011...61»