July 7th, 2015 by admin
You can display first and second post differently than other posts with this simple css code [php].article:nth-of-type(1), .article:nth-of-type(2) { //code }[/php]
April 24th, 2015 by admin
You can put this in your theme’s functions.php: function custom_woocommerce_is_purchasable( $purchasable, $product ){ if( $product->get_price() == 0 || $product->get_price() == ”) $purchasable = true; return $purchasable; } add_filter( ‘woocommerce_is_purchasable’, ‘custom_woocommerce_is_purchasable’, 10, 2 );
April 12th, 2015 by admin
/* replace add to cart text on button*/ add_action( ‘woocommerce_after_shop_loop_item’, ‘my_woocommerce_template_loop_add_to_cart’, 10 ); function my_woocommerce_template_loop_add_to_cart() { echo ‘<form action=”‘ . get_permalink() . ‘” method=”get”> <button type=”submit” class=”single_add_to_cart_button button alt”>Read More</button> </form>’; }
April 12th, 2015 by admin
In this post you will find out how to enable displaying the default WooCommerce CSS file in a custom WordPress theme. <body <?php body_class(); ?>> and <div class=”woocommerce”> page content goes here </div>
March 28th, 2015 by admin
How to Setup WordPress Permalinks on Windows IIS ======================================= Place this file into the base directory of your WordPress installation to allow permalinks (or “pretty URLs”) on Windows IIS. 1) Create the Web.Config file 2) Log-in to the GoDaddy Control Panel and access the root directory of the WordPress site 3) Select the folder of […]