Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Tanvirul Haque

    (@tanvirul)

    Hi @alexsina

    Thanks for your interest. This feature is not currently available but it’s a great idea, I will try to add this feature with the next update.

    Thanks

    Thread Starter alexsina

    (@alexsina)

    any update please?

    Plugin Author Tanvirul Haque

    (@tanvirul)

    Hello @alexsina

    Yes, a piece of good news for you ?? I have added this feature with the latest version for you.

    Could you try to update the Smooth Back to Top Button plugin and check this?

    Thanks

    Thread Starter alexsina

    (@alexsina)

    Thanks.

    There is already a scroll features in our theme, and we only need scroll in dashboard backend, in this case, we only need enable it as your screenshot?

    Thanks

    Plugin Author Tanvirul Haque

    (@tanvirul)

    Yes, it can be possible. Please try to keep the new option enable and put the following PHP code inside your child theme functions.php file:

    if ( function_exists( 'smooth_back_to_top_button' ) && ! is_admin() ) {
    	add_action( 'wp_head', function() {
    		remove_action( 'wp_head', array( smooth_back_to_top_button(), 'internal_styles' ) );
    		remove_action( 'wp_footer', array( smooth_back_to_top_button(), 'add_markup' ) );
    		remove_action( 'wp_footer', array( smooth_back_to_top_button(), 'internal_scripts' ) );
    		remove_action( 'wp_enqueue_scripts', array( smooth_back_to_top_button(), 'enqueue_scripts' ) );
    	} );
    }

    Those codes will omit the plugin functionality for the site front-end. Could you please update me on that is it working for you or not?

    Thanks

    Plugin Author Tanvirul Haque

    (@tanvirul)

    Hey @alexsina

    Since we haven’t heard back from you in a while so I am marking this thread as resolved now. If you have any further questions, I recommend you create a new thread.

    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘is it possible to add back to top button on backend dashboard?’ is closed to new replies.