I was following the instructions in a previous post re removing the link in the footer to Kriesi's website. I was told to add something on the bottom of a php file. Which I did.
Now I get
Parse error: syntax error, unexpected $end, expecting '{' in /home/indones1/public_html/wp-content/themes/choices/functions-choices.php on line 660
I edited the functions-choices.php in the Wordpress editor.
The last lot of the stuff I edited is:
{
add_action('avia_backend_theme_activation', 'avia_default_dynamics');
add_action('avia_ajax_reset_options_page', 'avia_default_dynamics');
function avia_default_dynamics()
{
global $avia;
$firstInstall = get_option($avia->option_prefix.'_dynamic_elements');
if(empty($firstInstall))
{
$custom_export = "dynamic_elements";
require_once AVIA_PHP . 'inc-avia-importer.php';
if(isset($_GET['page']) && $_GET['page'] == 'templates')
{
wp_redirect( $_SERVER['REQUEST_URI'] );
exit();
}
}
}
add_filter('kriesi_backlink', 'inoplugs_backlink');
function inoplugs_backlink() {
return " - Webdesign by XXX";
}














