***CORRECTED***
Hi,
This is how you get Multilanguage title/description like Modern:
1.- Uncompress the attached zip into your theme folder.
2.- Your theme item-post.php:
2a.- Replace this line:
osc_enqueue_script('jquery-validate');
with:
osc_enqueue_script('jquery-validate');
osc_enqueue_script('tabber');
osc_enqueue_style('tabs', osc_current_web_theme_url('css/tabs.css'));
2b.- You need to replace the code that prints separated Title/description elements. For Osclasswizards:
Carefully delimite and replace:
<div class="form-group">
<label class="control-label" for="title[<?php echo osc_current_user_locale(); ?>]">
<?php _e('Title', OSCLASSWIZARDS_THEME_FOLDER); ?>
</label>
<div class="controls">
<?php ItemForm::title_input('title',osc_current_user_locale(), osc_esc_html( osclasswizards_item_title() )); ?>
</div>
</div>
<div class="form-group">
<label class="control-label" for="description[<?php echo osc_current_user_locale(); ?>]">
<?php _e('Description', OSCLASSWIZARDS_THEME_FOLDER); ?>
</label>
<div class="controls">
<?php ItemForm::description_textarea('description',osc_current_user_locale(), osc_esc_html( osclasswizards_item_description() )); ?>
</div>
</div>
With:
<div class="controls">
<?php ItemForm::multilanguage_title_description(); ?>
</div>
Then maybe you'd want to make some changes in tabs.css to adapt it to your theme looks.
Regards