Fatal Error related to the theme page.php [closed]

-1

My site has the following error:

  

Fatal error: Call to undefined function sanzo_get_page_options () in /home/julisaupiscinasc/public_html/wp-content/themes/sanzo/page.php on line 3

The code referenced in the message is as follows:

<?php
global $sanzo_theme_options;
$page_options = sanzo_get_page_options();
get_header( $sanzo_theme_options['ts_header_layout'] );

$extra_class = "";

I have already reinstalled the theme components and continue the error. Has anyone experienced something like this and can you help me?

    
asked by anonymous 28.11.2017 / 13:31

1 answer

1
Answering your question, the error is that there is no function: sanzo_get_page_options() being called in the file: /home/julisaupiscinasc/public_html/wp-content/themes/sanzo/page.php in line 3

You will have to see what this function does, and create it or find it on the internet, according to your template.

    
28.11.2017 / 14:10