Blog

WooCommerce Add to Cart Redirect to Checkout

If you need to redirect the user directly to the checkout page instead of the current product page or cart page, put this snippet to your themes functions.php. [php] /** * Redirect user to checkout page directly after adding to cart * * @return string */ function wc_redirect_to_checkout() { $checkout_url = WC()->cart->get_checkout_url(); return $checkout_url; } … Continue reading WooCommerce Add to Cart Redirect to Checkout

My talk on Open Source Contribution in WordPress

From yesterday (09-02-2015), the biggest tech conference in South Asia is happening at BICC called Digital World Conference, 2015. All sorts of software exhibition, tech talks, conference are being arranged in this 4 day long exhibition. There is a slot named CMS Developers Conference where we managed developers from WordPress and Joomla to give their talks. It … Continue reading My talk on Open Source Contribution in WordPress

Bengali translation, a first time collaboration for WordPress!

Hopefully WordPress 4.0 is going to be released at 27th August, 2014. As this version is going to have language selection from the installation phase, translation is important. As the validator of WordPress Bengali project, I proposed a translation collaboration effort to give a boost in our Bengali translation. From the banner of our local group … Continue reading Bengali translation, a first time collaboration for WordPress!

My talk on Composer – The missing package manager for PHP

Here in Dhaka, a big technology fair is going on from 4th – 7th June, 2014 at Bangabandhu International Conference Center. Today (6th June, 2014), phpXperts arranged a DevCon with 11 interesting topic and thousands of viewers participated over there. It was such a blast! Among them I also gave a talk on Composer and … Continue reading My talk on Composer – The missing package manager for PHP