<span class="vcard">Jan</span>
Jan

e-Commerce in the Caribbean

Allow me please to demystify e-commerce in the Caribbean for you, perhaps help you feel more at ease with exploring your options, and ultimately push you off, confidently, in the right direction. For brevity sake, I’m going to approach it using an example workflow, and show you how the resources I am mentioning work together. So, John has a hair …

WhatsApp for Business

I want to present the option of doing business via your smartphone, in the form of the app, ‘WhatsApp for Business’. Having been bought by Facebook since 2014, WhatsApp and WhatsApp for Business now have the development backing to continue building itself out into a robust platform for entrepreneurs and businesses. ‘WhatsApp for Business’, which is different to ‘WhatsApp’ (two separate apps) …

Registered

One of the very first things you would have done when you were ready to get your business started up is to have the company name searched for, to ensure it is unique. This may or may not take a while. So, you get through that process, and you have your company name. It is registered. Company Name You don’t …

Deprecation of create_function

If you get this error whilst working with WordPress: “Deprecated: Function create_function() is deprecated in…”, the following advice works: “It addresses the add_filter statement: add_filter( 'option_page_capability_' . ot_options_id(), create_function( '$caps', "return '$caps';" ), 999 ); switch it out, and use this instead: add_filter( 'option_page_capability_' . ot_options_id(), function($caps) {return $caps;},999); We can see the usage of function(), very typical function creation …

Troubleshooting Git

Had an issue, whilst learning git commands and the helpful www came to my rescue.. My problem: Getting this error message anytime I tried to commit a file: “Aborting commit due to empty commit message.” Found the solution at stackoverflow.com “I’m also a newbie in Git. I encountered basically the same problem as yours. I solved this by typing: git …