I have read that troubleshoot file prior to posting this. The issue arrises with the fact that I have to access the files via FTP up and download.
BUT
I have BOTH a child and a parent theme. Both the ‘functions.php’ files are within their respective folders.
This is what I put in the child theme functions.php file:
<?phpupdate_option(‘siteurl’,’https://peepdigital.com’); update_option(‘home’,’https://peepdigital.com’);
/* Insert custom functions here */
?>
This is what I have put in the functions.php file for the parent theme;
<?phpupdate_option(‘siteurl’,’https://peepdigital.com’); update_option(‘home’,’https://peepdigital.com’);
require_once( TEMPLATEPATH.’/base/theme.php’ );
require_once( TEMPLATEPATH.’/base/custom/config.php’ );
$theme = new Theme();
$theme->init( $theme_config );
What do I need to change?
Cheers,
Nick