:: Fatal error: Call to undefined method Arras_Widget_Tag_Cloud
:: WordPress error
Fatal error: Call to undefined method Arras_Widget_Tag_Cloud::WP_Widget_Tag_Cloud() in ..../wp-content/themes/arras/library/widgets.php on line 404
:: How to fix
Edit your /library/widgets.php file on line 404
function Arras_Widget_Tag_Cloud() { $this->WP_Widget_Tag_Cloud(); }
change to:
function Arras_Widget_Tag_Cloud() { parent::__construct(); }
:: Links
+ Google