Oh no finally this issue is fixed with the following members suggestion.
I am facing this issue “The called constructor method for WP_Widget is deprecated since version 4.3.0” this message is continuously showing in my wordpress website. So i searched for answers. Now i got this answer.
You can hide this kind of error by adding in your functions.php the following line:
add_filter(‘deprecated_constructor_trigger_error’, ‘__return_false’);
I hope it helps 🙂
THanks a lot @lordgiotto
Your tip works awesome, great job. Helped your suggestion.
For all other who are facing this issue, please go to your theme folder.
Open Function.php file.
Go to last line and simply copy paste the below code and save it.
add_filter(‘deprecated_constructor_trigger_error’, ‘__return_false’);
It is working great.
I am looking for an ecommerce order form that will have facility to send final cart products to the website or shop owner.Here no need of online payment. User has to send the final products in a order form.