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.

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' );