This topic has 3 replies, 2 voices, and was last updated 10 years ago by Anonymous.
Viewing 4 posts - 1 through 4 (of 4 total)
Greetings, great theme, love it!!
However I went to change a few things and in the options—->header, the Topbar Right option is not showing up so I can change the phone number that is presently there, I see the Topbar Left where I can enter what text I want there, but the Top Bar Right option is gone. please help. Thank you
Thank you 🙂
Find the following path hopes/framework/admin/theme-options.php on line#231, remove the “if” condition.
if ( !class_exists('woocommerce') ) { // remove this "if" condition
$iva_of_options[] = array( "name" => __( "Topbar Right", 'iva_theme_admin'),
"desc" => "Custom HTML and Text that will appear in the Topbar in Right side. If you want you can use text as well instead of sociables",
"id" => $shortname."_top_righttext",
"std" => "",
"type" => "textarea");
}
Replace the above code with the below code,
$iva_of_options[] = array( "name" => __( "Topbar Right", 'iva_theme_admin'),
"desc" => "Custom HTML and Text that will appear in the Topbar in Right side. If you want you can use text as well instead of sociables",
"id" => $shortname."_top_righttext",
"std" => "",
"type" => "textarea");
Viewing 4 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic.