Tips and Tricks

Waarom de Secrid portemonnee NIET duurzaam is

Vier jaar geleden heb ik een Secrid portemonnee in gebruik genomen. Het is in principe de eerste vier jaar een top product. Wanneer je googlet op: “Secrid duurzaamheid” zie je veel posts die hem als duurzaam aanprijzen. Zoals BNR beschrijft: Secrid produceert hun slimme portemonnee bij Nederlandse sociale werkplaatsen en gebruiken het leer van lokale […]

Waarom de Secrid portemonnee NIET duurzaam is Read More »

South-Africa Tourist Visa Extension with 90 days

South-Africa gives a 90 day tourist visa to most Western countries (I’m Dutch, so this probably/hopefully will work for most EU countries). There are possibilities to extending another 90 days. With this tourist visa extension guide you can stay up to 180 days in total. UPDATE: While having done this visa extension myself I only

South-Africa Tourist Visa Extension with 90 days Read More »

Moneybird koppelen met PayPal transacties

Doe je ook je boekhouding met Moneybird en ben je online actief? Grote kans dat je dan wel eens een PayPal transactie hebt moeten koppelen in Moneybird. Daarvoor heb je twee mogelijkheden: Aan de PayPal transactie de één of meerdere facturen die erachter horen koppelen in het tabblad “banktransacties”. Een aparte PayPal-bankrekening bijhouden waarin alle transacties

Moneybird koppelen met PayPal transacties Read More »

Laravel 5 socialite with Facebook integration

Would you like to offer a Facebook login functionality next to a regular e-mail based login? This is a tutorial to achieve that with Laravel 5 and the Socialite plugin. This tutorial is based on Matt Stauffer’s tutorial. First of all pull in Laravel Socialite via composer: composer require laravel/socialite Create the users and password_remember

Laravel 5 socialite with Facebook integration Read More »

Magento Direct SQL Queries

Queries for fetching in an array /** * Get the resource model */ $resource = Mage::getSingleton(‘core/resource’); /** * Retrieve the read connection */ $readConnection = $resource->getConnection(‘core_read’); $query = ‘SELECT * FROM ‘ . $resource->getTableName(‘catalog/product’); /** * Execute the query and store the results in $results */ $results = $readConnection->fetchAll($query); /** * Print out the results

Magento Direct SQL Queries Read More »

IWD Checkout refresh review after payment selection

With the IWD onestep checkout plugin, there’s a free method for one step checkouts. Though it still has a problem when you want to select a payment method, because it doesn’t refresh the review summary. This is feature is vital for payment methods that add service fee. Thanks to this plugin I found a code

IWD Checkout refresh review after payment selection Read More »

Add an image field in your admin plugin (by example AW Blog)

Add an image field to plugins like AW Blog Edit in /app/code/community/AW/Blog/Block/Manage/Blog/Edit/Tab/Form.php $fieldset->addField(‘filename’, ‘file’, array( ‘label’ => Mage::helper(‘blog’)->__(‘Image’), ‘required’ => false, ‘name’ => ‘filename’, ‘after_element_html’ => ‘Formaat 125 x 118 pixels’, )); Edit in /app/code/community/AW/Blog/controllers/Manage/BlogController.php after: public function saveAction() { if ($data = $this->getRequest()->getPost()) { Add: if(isset($_FILES[‘filename’][‘name’]) && $_FILES[‘filename’][‘name’] != ”) { try { /*

Add an image field in your admin plugin (by example AW Blog) Read More »

en_USEnglish
Scroll to Top