Title: Move filter button
Last modified: August 30, 2016

---

# Move filter button

 *  Resolved [xdtfx](https://wordpress.org/support/users/xdtfx/)
 * (@xdtfx)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/move-submit-button/)
 * Hi,
 * I’m digging the plugin thus far, but have one issue.
 * How can I move the filter button before the closing beautiful-taxonomy-filters-
   select-wrap div so that it sits inline with the drop downs rather than below 
   them?
 * I don’t see an option for this through the admin and I’d rather not use CSS absolute
   positioning to achieve this. Is there a hook I can use?
 * Thanks in advance!
 * [https://wordpress.org/plugins/beautiful-taxonomy-filters/](https://wordpress.org/plugins/beautiful-taxonomy-filters/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Jonathan de Jong](https://wordpress.org/support/users/jonathandejong/)
 * (@jonathandejong)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/move-submit-button/#post-6601868)
 * Hi xdtfx,
 * There’s no option for this but you can insert your own submit button using the
   action hook “beautiful_actions_ending_form_inner” and then hide the default button
   using css.
 * example:
 *     ```
       <?php
       /**
        * Add a custom submit button to the inner wrapper of BTF
        */
       function custom_submit_btn($current_posttype){
       	echo '<button type="submit">' . __('Apply filter', 'beautiful-taxonomy-filters') . '</button>';
       }
       add_action('beautiful_actions_ending_form_inner', 'custom_submit_btn');
       ?>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Move filter button’ is closed to new replies.

 * ![](https://ps.w.org/beautiful-taxonomy-filters/assets/icon-256x256.png?rev=1654967)
 * [Beautiful taxonomy filters](https://wordpress.org/plugins/beautiful-taxonomy-filters/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/beautiful-taxonomy-filters/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/)
 * [Active Topics](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/beautiful-taxonomy-filters/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Jonathan de Jong](https://wordpress.org/support/users/jonathandejong/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/move-submit-button/#post-6601868)
 * Status: resolved