Hi,
we always appreciate your efforts in providing quality theme. kindly provide me some solution, please find the snap shot .
unable to view the drop down which helps us to move the topic status – Please find the attachment
i will not disturb you. kindly provide us solution. am not have coding knowledge, i have taken this as it was affordable and easy to integrate, i understand you people are busy. but only you can provide us simple solution.
the below code is already available which are related to get the Drop Down Box
———-
//get out the option to tell us who is allowed to view and update the drop down list.
if ( $can_edit == true ) { ?>
<div id=”bbps_support_forum_options”>
<?php bbps_generate_status_options($topic_id,$status); ?>
</div>
<?php
}
//has the user enabled the move topic feature?
if( (get_option(‘_bbps_enable_topic_move’) == 1) && (current_user_can(‘administrator’) || current_user_can(‘bbp_moderator’)) ) {
?>
<div id =”bbps_support_forum_move”>
<form id=”bbps-topic-move” name=”bbps_support_topic_move” action=”” method=”post”>
<label for=”bbp_forum_id”>Move topic to: </label><?php bbp_dropdown(); ?>
<input type=”submit” value=”Move” name=”bbps_topic_move_submit” class=”btn btn-default” />
<input type=”hidden” value=”bbps_move_topic” name=”bbps_action”/>
<input type=”hidden” value=”<?php echo $topic_id ?>” name=”bbps_topic_id” />
<input type=”hidden” value=”<?php echo $forum_id ?>” name=”bbp_old_forum_id” />
</form>
</div>
<?php
}
}
}