This is a follow-up to https://toolset.com/forums/topic/working-view-somehow-now-broken/.
Another view also contains extraneous characters similar to those in the view I first reported. This view is implemented on the enlace oculto page of the site. Please see attached screenshot.
Additionally, the enlace oculto page no longer displays the "Add New Business..." button for active members to add a business. I believe I had sent the credentials for a user account with the "Active Member" role assigned to it necessary to troubleshoot this issue with the previous support ticket I linked above. If not, I can easily resend.
Thanks for the help!

Minesh
Colaborador
Idiomas:
Inglés (English )
Zona horaria:
Asia/Kolkata (GMT+05:30)
Hello. Thank you for contacting the Toolset support.
There must be something that conflicts and hidden inputs at it strip out type input "type" attribute from those inputs.
To fix the issue, I've added the following custom CSS to the following user form's "CSS editor":
=> enlace oculto
.cred-user-form input[name='_cred_cred_wpnonce_cred_user_form_1595_1'], input[name=_cred_cred_prefix_post_id], input[name=_cred_cred_prefix_cred_container_id], input[name=_cred_cred_prefix_form_id], input[name=_cred_cred_prefix_form_count] {
display: none !important;
}
I've added the following code to "JS editor" of the above form:
jQuery(document).ready(function($){
$(".cred-user-form input[name='form_submit_1']").attr('type','submit');
});
Regarding:
Additionally, the enlace oculto page no longer displays the "Add New Business..." button for active members to add a business. I believe I had sent the credentials for a user account with the "Active Member" role assigned to it necessary to troubleshoot this issue with the previous support ticket I linked above. If not, I can easily resend.
===>
I can see the "Add New Business..." button as you can see with the following screenshot.
- enlace oculto
This used to all work without issue or custom programming like you've done. I'll try to do some more troubleshooting on a copy of this website to see if I can figure out what is causing the problems...
Thanks for the help...