For some reason WPML is unable to translate the date picker within Elementor form widget so here’s a workaround for this issue.
Untranslated title for Search page in Elementor
When creating Archive template page in Elementor PRO for Search results and on it you use Archive title widget, you don’t see the translated title for some reason. However, the tab in the browser is displaying the correct translated text. In order to bypass this, until they fix it, you can do the following trick.
Easy Sort Order with Drag & Drop
One of the great tools to have in your OpenCart store if you manage huge ammount of products is OpenCart Product Drag & Drop Module. Easy Sorting by Drag & Drop Quickly change the sorting items with the mouse. No need to edit and set them in the ‘sort order’ new value. Default sort by… Continue reading Easy Sort Order with Drag & Drop
How to make company name mandatory in WooCommerce
In case you need the Company Name field to be mandatory in WooCommerce checkout process add the following code to functions.php file: function sv_require_wc_company_field( $fields ) { $fields['company']['required'] = true; return $fields; } add_filter( 'woocommerce_default_address_fields', 'sv_require_wc_company_field' );