Skip Navigation

[Resuelto] Submit button not displaying correctly

This support ticket is created hace 4 años, 6 meses. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Hoy no hay técnicos de soporte disponibles en el foro Juego de herramientas. Siéntase libre de enviar sus tiques y les daremos trámite tan pronto como estemos disponibles en línea. Gracias por su comprensión.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

Este tema contiene 9 respuestas, tiene 2 mensajes.

Última actualización por ScottM9386 hace 4 años, 1 mes.

Asistido por: Waqar.

Autor
Mensajes
#1640671
Capture.PNG

Hi,

After a recent update all my submit buttons in relationship forms are not displaying correctly - see screen shot. The forms are in modal windows - they have always displayed correctly up until recently in modal windows.
Please help.
Thanks.

#1641449

Hi,

Thank you for contacting us and I'd be happy to assist.

In order to reproduce and investigate this issue on a test website, I'll need to see how this relationship form and the modal window is set up in the admin area.

Can you please share temporary admin login details along with the link to a page where this form can be seen?

Note: Your next reply will be private and please make a complete backup copy, before sharing the access details.

regards,
Waqar

#1643725

Hi Scott,

Thank you for sharing the admin access.

Based on your report, I was able to reproduce this issue on my test website as well.

By default, the relationship form's submit button used to show "Submit" as the button's label/text, but it seems to be missing now.

I've shared these findings with the concerned team and will keep you updated with the progress through this ticket.

For now, a workaround can be to specifically pass on the required label/text for the submit button, without relying on the default value.

For example, in your form "Add Writer To Track", you have this shortcode for the submit button:


[cred-form-submit]

You can update it to:


[cred-form-submit]submit[/cred-form-submit]

I hope this helps and please let me know if you need any further assistance around this.

regards,
Waqar

#1643873

Thank you Waqar, that worked.
Please let me know when this will be fixed as I have a number of sites affected.
Will the fix be soon? I don't want to spend the time implementing the workaround on the various sites only to have to then undo it later.
Best,
Scott.

#1647353

Hi Scott,

Thanks for the update and glad that it worked.

I'm afraid, I don't have a time estimate to share at this time, but the suggested workaround seems to be future safe, as it is very less likely that you'll have to undo it later when a fix has been released.

In any case, I'll keep you updated through this ticket.

regards,
Waqar.

#1792491

Hi Scott,

I'd like to update that a fix for the submit button issue, has been included in the Forms 2.6 release.

You're welcome to update to the most recent Toolset plugins versions and let us know in case the issue still persists.

regards,
Waqar

#1796891

Thank you Waqar!
Now it would be great if they could fix this long standing issue. Do you know if there is any progress on it?
https://toolset.com/forums/topic/relationship-form-in-view-loop-redirect-when-stay-on-page-selected/
Regards.

#1797427

Hi Scott,

Thanks for writing back.

I'm afraid, I don't have any update to share on that particular issue, but I'm sure Christian will keep you updated on the progress through the original thread.

Meanwhile, can you please include this custom script in your relationships form's "JS editor" and see if it helps in keeping the extra URL parameters, after the form's submission:


jQuery( document ).ready(function() {
	var refURL = jQuery('form.cred_rel_form_class input[name="_wp_http_referer"]').val();
	var redirectURL = jQuery('form.cred_rel_form_class input[name="cred_redirect_url"]').val();

	var refURLArray = refURL.split('/?');
	if(refURLArray[1]) {
		jQuery('form.cred_rel_form_class input[name="cred_redirect_url"]').val(redirectURL+'&'+refURLArray[1]);
	}
});

regards,
Waqar

#1797781

Yes indeed the script worked! Thank you!

#1797785

My issue is resolved now. Thank you!