Skip to content

Instantly share code, notes, and snippets.

@jodzeee
Created March 7, 2025 20:27
Show Gist options
  • Save jodzeee/959bbcbf3617aa6df18975eed23eb4c9 to your computer and use it in GitHub Desktop.
Save jodzeee/959bbcbf3617aa6df18975eed23eb4c9 to your computer and use it in GitHub Desktop.
Gravity Forms: Move Progress Bar to Bottom
jQuery(document).ready(function() {
function movin_the_bar_like_a_boss() {
jQuery('div.gf_progressbar_wrapper').each(function(i,e){
fielddesc = jQuery('<div>').append(jQuery(e).clone()).remove().html();
jQuery(e).siblings('div.gform_body').after(fielddesc);
jQuery(e).remove();
});
}
movin_the_bar_like_a_boss();
jQuery(document).bind('gform_page_loaded', function(){
movin_the_bar_like_a_boss();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment