BusProject / SalsaPress

SalsaPress connects WordPress to Salsa. Developed by the Bus Federation and Bus Project.
http://wordpress.org/extend/plugins/salsa-press/
8 stars 2 forks source link

Changing Button Label #23

Closed lmichaelhansen closed 10 years ago

lmichaelhansen commented 10 years ago

Hi-

Love using this plugin, but I can't seem to find a way to change the label on the submission button. See this page: http://www.equalityalabama.org/take-action/share-your-story/. I want the button to say "Share Story" but there doesn't seem to be a way to alter that in Salsa or in the SalsaPress plugin. Any experience with this?

mojowen commented 10 years ago

Hmmm this isn't currently supported - in either Salsa or SalsaPress.

I'd use a JS hack - inelegant but it'll get you there. Stick this on the same page as the form and it'll get you there:

<script type="text/javascript">
jQuery(document).ready( function() {
    jQuery('form.salsa-form input[type=submit]').val('Share Story');
});
</script>