I also dont see the buttons on the item page of my theme.
Maybe because is an old theme
I think i have to place an hook to show the buttons, then i can move to top.
But on the plugin page there is at the bottom:
Plugin Setup
There are no changes required in your theme files in order to make plugin fully functional.
Here is a part of my item.php:
<?php } ?>
<div class="description">
<?php echo osc_item_description(); ?>
</div><!-- /Description -->
<div class="additional-information row">
<?php if( osc_count_item_meta() >= 1 ) { ?>
<div class="col-md-6">
<div class="custom-field">
<h3>Característico</h3>
<?php while ( osc_has_item_meta() ) { ?>
<?php if(osc_item_meta_value()!='') { ?>
<div class="meta">
<label><?php echo osc_item_meta_name(); ?></label>: <strong><?php echo osc_item_meta_value(); ?></strong>
</div>
<?php } ?>
<?php } ?>
<?php //osc_run_hook('item_detail', osc_item()); ?>
</div>
</div>
<?php } ?>
<?php if (function_exists('custom_attributes')) { ?>
<div class="col-md-6">
<div class="custom-detail">
<?php custom_attributes(); ?>
</div>
</div>
<?php } ?>
</div>
</div>
<?php if ( osc_item_country() != null) { ?>
<div class="listing-location">
<!--<h3><?php _e('Location', 'amuncios'); ?></h3>-->
<?php if ( osc_item_region() != null) { ?><div class="listing-address"><?php echo implode(', ', $location); ?></div><?php } ?>
<?php osc_run_hook('location'); ?>
</div>
<?php } ?>
<?php if( osc_comments_enabled() ) { ?>
<div class="listing-comment">
<h3><?php _e('Comments', 'amuncios'); ?></h3>
<?php osc_run_hook('dd_fb_comments'); ?>
</div>
<?php } ?>
<?php osc_current_web_theme_path('related-listings.php'); ?>
</div>