October 14, 2014

Looking for performance tips for a high-traffic, high-profile site?

Looking for performance tips for a high-traffic, high-profile site? Checkout the number of plugins you are using Ask someone or if you are a developer yourself so must review the codes of every plugin and your theme for useless DB calls Don’t use cache plugin or any plugin which is not necessarily required because every […]

September 26, 2014

How to fix/optimize pagespeed error and pingdom.com error?

How to fix/optimize pagespeed error and pingdom.com error? Don’t use any optimization or cache plugin at all Don’t use a lot of plugins or scripts on load time, review your themes and plugins so if anything is uselessly loading make that loading conditionally Cache only media files like images, audio or video if any Re-check […]

September 13, 2014

WordPress based website tagged as hacked or infected?

WordPress based website tagged as hacked or infected? Is this your problem too? Your theme is behaving odd when you inject a parameter to your URLs like ?p=something. Every time your site is giving response on anonymous query string too, although it should deny them. By this, spamming requests are being entertained, and Google is […]

August 20, 2014

WordPress Plugin – Gulri Slider Pro

Gulri Slider Pro

July 19, 2014

WP Responsive Tabs Pro

WP Responsive Tabs Pro

July 14, 2014

WordPress Premium Plugins

WordPress Premium Plugins Link: http://shop.androidbubbles.com/

May 29, 2014

How to get downloadable files with Woocommerce order id?

How to get downloadable files with Woocommerce order id? global $user_orders, $set_number; $the_order = new WC_Order( $user_orders->ID ); $order_meta = $the_order->get_items(); $order_item = current($order_meta); $has_downloadable_item = $the_order->has_downloadable_item(); if($has_downloadable_item){ $files_urls = $the_order->get_item_downloads($order_item); }

How to manage bundles in default Woocommerce?

How to manage bundles in default Woocommerce? Create a Variable product Add Only one attribute e.g. Packages Enter attribute values with pipe signs Go to variations tab and pre select attributes values for each value Put different prices for each variation Ready! Now use the following code to get an array or packages and variations: […]