If you are like me who gets confuse on how to use the Custom Fields, then this is for you. This is very useful if you know how to use it. You can create and add your own meta data on a page or a post using. In my case, I have a template that shows the archive post like…
Category: PHP
Woocommerce: Remove additional information tab on product page
For quick and easy e-commerce website, I always go to Woocommerce. Sometimes, I just install, do the initial set up, add the products, set up the shipping and payment and I am good to go. I don’t even usually edit my Woocommerce template to look better, I usually just go for the defaults. The defaults are okay, they will get…
Customizing Gravity Form’s Validation Error Message
When the user did not put anything on a required field on a Gravity Forms form, they will get the standard validation error from the plugin: “There was a problem with your submission. Errors have been highlighted below.” Most would want to customize this message to their own liking. To do this, we need to add a filter code on…
Opencart 2.2.x – Can’t login to admin dashboard after installing SSL/HTTPS
Enabling SSL on the Opencart system is very easy, however, sometimes we tend to forget the basics. Recently, I’ve had a new SSL Certificate installed for one of my existing Opencart websites. I did the basic changes on the config file in the root and admin folders. I changes all the “http” instances to “https” <?php // HTTP define(‘HTTP_SERVER’, ‘https://mydomain.com/admin/’);…
Opencart 1.5.x – HTML Email Notification for Admin
You might have noticed that in Opencart 1.5.x versions, the admin only gets the text order notification like below: This is okay but it doesn’t show the customer name, address and other details unlike the email notification that the customer receives. If you want the admin to get the same email as the customer (complete with shipping and payment details),…
Opencart 2.3.0.2 Issue: Additional Alert Email Field
This is a known bug in Opencart 2.3.0.2 version, if you are using this version, you will notice that your Additional Alert Email field under Settings > Mail tab doesn’t save. No matter how many times you add an email address and save it, it will just stay blank after reload. To fix this, go to your /admin/controller/setting/setting.php file and…
Opencart – How to enable the shipping options on Paypal checkout?
On Opencart 2.3.0.2 if you are using Paypal Standard as your payment method and you are paying using credit card, you might notice that the shipping fields are missing on the Paypal checkout page: To add the shipping fields on this page, all you have to do is open your /public_html/yourwebsite.com/catalog/view/theme/default/template/extension/payment folder and edit the pp_standard.tpl file. Find: <input type=”hidden” name=”no_shipping” value=”0″…
WordPress – Disabling automatic update email notification
Being the world’s current most used content management system, the good guys at WordPress doesn’t stop improving the system, we get new updates and fixes around 10 to 20 times a year. They were amazing but one thing that I find annoying is that I always get an email notification that my WordPress site has been automatically updated. For someone…
WC Vendors Plugin – Removing product header
WC Vendors is a great and a very easy to use plugin if you are planning to create your own marketplace like Ebay, Amazon etc. In this short tutorial, I will show you how to remove the vendor name and shop description being called on the product pages. All you have to to is open your template files on the…