@support
Make sure to update user-items.php based on what you have in sigma theme.
As this feature to
disable listings is new, most themes does not have implemented this option.
If you open user-items.php or loop-single.php (loop-single-premium.php), you will find code similar to this one:
<?php if(osc_item_is_inactive()) {?>
<a href="<?php echo osc_item_activate_url();?>" ><?php _e('Activate', 'sigma'); ?></a>
<?php } ?>
You must add there also following code bellow:
<?php if(osc_item_is_active() && osc_can_deactivate_items()) {?>
<a href="<?php echo osc_item_deactivate_url();?>" ><?php _e('Deactivate', 'sigma'); ?></a>
<?php } ?>
To allow
renewal of expired listings, you must also add this code:
<?php if(osc_item_can_renew()) { ?>
<a href="<?php echo osc_item_renew_url();?>" ><?php _e('Renew', 'sigma'); ?></a>
<?php } ?>
So integration into themes is quite simple