Web Development Journeys Page 2

Meet the Subscribers Extension

Subscribers is a Magento 1 extension that helps you increase your mailing list and sales.

How?

Subscribers injects a form into your website that captures the customers email. In return, yes you do give something away, you give a discount coupon.

![Subscribers Pop-up](https://www.underthecocotree.co.uk/images/products/newsletter-popup/Subs

... read more on Meet the Subscribers Extension

A tale of Sourcetree and Git hooks

At Under the Coco Tree we constantly update the code of different projects. This summer we took a plunge into automating the process of testing and deployment. Yes it took time but it was worth implementing continues integration.

We starting using PHPCI but the tests and code quality scans would take place after th

... read more on A tale of Sourcetree and Git hooks

How to filter a grid in Magento 1

Note: This tutorial assumes prior knowledge into building modules, only parts of the code are included to solve a particular problem.

Filtering grids can work out of the box but sometimes you might need to create your own custom filter. There are two ways we are aware of to filter data in your columns.

  • defining a `filter_condition_ca
... read more on How to filter a grid in Magento 1

How to Override Coupon Grid for Magento 1

Note: This tutorial assumes prior knowledge into building modules, only parts of the code are included to solve a particular problem.

Magento comes a coupon generator that is fairly easy to set up. Distributing voucher codes can increase your sales and create a better customer experience.

To get to the grid of generated coupons, we need to

... read more on How to Override Coupon Grid for Magento 1

Testing Stripe Payments

While testing a checkout process in one of our applications we were trying to test the stripe payment.

Our application is based on Laravel. In our integrating testing we use Behat and Selenium2 for javascript.

Our form used the elements in Stripe, which inject an iframe into our website.

To test our application with Behat we had to jump in

... read more on Testing Stripe Payments