Nov 7, 2013 - eCommerce, Wordpress    Comments Off on WooCommerce change number of Related Products to show

WooCommerce change number of Related Products to show

To change the number of related products only you can use this code in the Theme Functions (functions.php) file:

/**
 * WooCommerce Extra Feature
 * --------------------------
 *
 * Change number of related products on product page
 * Set your own value for 'posts_per_page'
 *
 */ 
function woo_related_products_limit() {
 global $product;

 $args = array(
 'post_type' => 'product',
 'no_found_rows' => 1,
 'posts_per_page' => 6,
 'ignore_sticky_posts' => 1,
 'orderby' => $orderby,
 'post__in' => $related,
 'post__not_in' => array($product->id)
 );
 return $args;
}add_filter( 'woocommerce_related_products_args', 'woo_related_products_limit' );

 

Note: This change may be overwritten by a Theme update.

Oct 11, 2013 - Geeky General    Comments Off on How to setup Straight Talk wireless data and MMS for your iPhone running iOS 7

How to setup Straight Talk wireless data and MMS for your iPhone running iOS 7

This guide will let you setup your iPhone for wireless data and MMS (picture messaging).

(From http://smartphonematters.com/guides/how-to-set-up-straight-talk-wireless-data-and-mms-for-your-iphone-running-ios-7/)

NOTE: Follow the guide EXACTLY as described. There is a timing process for switching between the Cellular Data Network settings and the Notes app (using multitasking). This allows the Cellular Data Network settings page to stay open even after the T-Mobile SIM card is removed, and the Straight Talk one is inserted.

APN settings

The settings I used:

APN: tfdata
MMS APN: tfdata
MMSC: http://mms-tf.net
MMS Proxy: mms3.tracfone.com:80
MMS Max Message Size: 1048576
MMS UA Prof URL: http://www.apple.com/mms/uaprof.rdf
Pages:«123456789...61»