Created
March 7, 2025 20:27
-
-
Save jodzeee/959bbcbf3617aa6df18975eed23eb4c9 to your computer and use it in GitHub Desktop.
Gravity Forms: Move Progress Bar to Bottom
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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