TomBrien
Member
Posted 2 years ago #
Immediatley after installing version 6 My whole site has gone down all pages now produce an error stating:
Fatal error: Call to undefined function wdbj_tml_get_option() in /homepages/44/d215074018/htdocs/fencing/wp-content/themes/piano-black/functions.php on line 49
website is http://www.cardiffunifencing.co.uk
Thanks very much appreciated
Tom
http://wordpress.org/extend/plugins/theme-my-login/
That is because wdbj_tml_get_option() is no longer a function, like the error says.
Apparently, you have some custom code in your theme's functions.php file that used the function. You would need to replace the function with a call to the global TML object, like so:
global $Theme_My_Login;
$Theme_My_Login->get_option( 'whatever_option_you_want' );