@wzzy
Reason is following:
- we have submitted theme to osclass market and they told we cannot extend original osclass tables (wow, they never told it before)
- therefore we have created own tables for custom values
- icons and colors for categories has been moved from t_category (s_icon, s_color) into table t_category_veronika (s_icon, s_color)
- phone numbers, condition, transaction and sold mark has been moved from t_item into t_item_veronika
To show also numbers stored with old structure, in file:
oc-content/themes/veronika/item.php
Find code:
$mobile = $item_extra['s_phone'];
if($mobile == '' && osc_item_user_id() <> 0) { $mobile = $item_user['s_phone_mobile']; }
if($mobile == '' && osc_item_user_id() <> 0) { $mobile = $item_user['s_phone_land']; }
if($mobile == '') { $mobile = __('No phone number', 'veronika'); }
and replace with:
$mobile = $item_extra['s_phone'];
if($mobile == '') { $mobile = osc_item_field('s_phone'); }
if($mobile == '' && osc_item_user_id() <> 0) { $mobile = $item_user['s_phone_mobile']; }
if($mobile == '' && osc_item_user_id() <> 0) { $mobile = $item_user['s_phone_land']; }
if($mobile == '') { $mobile = __('No phone number', 'veronika'); }