Hello Jacosky,
The problem in tabs settings in admin system was in file “app/code/community/Ves/Tabs/Model/System/Config/Source/ListCms.php”. Maybe your hosting changed the charset encoding in the file content. Please try to edit the file and update with the code. Or delete it and reupload again:
<?php
class Ves_Tabs_Model_System_Config_Source_ListCms
{
public function toOptionArray()
{
$collection = Mage::getModel(‘cms/block’)->getCollection();
$output = array();
$output[] = array(‘value’=>0, ‘label’=> Mage::helper(‘ves_tabs’)->__(“Use Pretext”) );
foreach( $collection as $cms ){
$output[] = array(‘value’=>$cms->getId(), ‘label’=>$cms->getTitle() );
}
return $output ;
}
}
If you can not resolve it please provide me the ftp and admin inforamtion again. Also you can rename the file “app/etc/modules/Ves_Tabs.xml” to “Ves_Tabs.xml_delete” to disable the module in the site if you want.