Saltar navegación

[Resuelto] Hide Username Dropdown in Post Relationship Form

Este hilo está resuelto. Aquí tiene una descripción del problema y la solución.

Problem:
The user would like to hide the relationship field in a form.

Solution:
There is no built-in feature for this. It will require custom CSS and Javascript code. Check this example https://toolset.com/forums/topic/hide-username-dropdown-in-post-relationship-form/#post-2228755

This support ticket is created hace 3 años, 1 mes. 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.

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: Africa/Casablanca (GMT+01:00)

Este tema contiene 5 respuestas, tiene 2 mensajes.

Última actualización por Alok Sharma hace 3 años, 1 mes.

Asistido por: Jamal.

Autor
Mensajes
#2228097
2021-11-23_21-36-24.jpg
2021-11-23_21-33-03_Relationship_Forms_Editor_‹_WP_Devsigner_—_WordPre.jpg

I want to hide the Username dropdown section (marked in red) in the post relationship form. I have added “display: none;” in Additional inline styles, but for some reason it is not taking effect.

Please refer to the attached screenshots.

#2228163

Hello and thank you for contacting the Toolset support.

To better assist you with this issue can you share a URL where we can see this form?

In the meantime, consider using a class name and CSS code in the CSS section of the form.

#2228201

Hi Jamal,

You can find the admin details in this thread https://toolset.com/forums/topic/split-showing-the-list-of-related-posts-and-the-button-to-disconnect-them/

If not, then please enable private message so that I can provide the required details.

Thanks

#2228697

Unfortunately, the credentials were removed from that thread, I assume that it was marked as resolved, and that the system has removed them enlace oculto

I am setting your next reply to let you share credentials safely. ** Make a database backup before sharing credentials. **

#2228755

Thank you for the credentials. I assume that you are talking about this form enlace oculto

I can see two ways of hiding the relationship field and its label:
- Using the advanced mode and CSS.
- Using the user interface and Javascript.

Because the classname or the styles that we set on the user interface may only be applied to the relationship field, we do not have a way to hide its label.

- Using the advanced mode and CSS: You can add a custom CSS class(let's call it "hide") to the form-group class as shown in this screenshot enlace oculto
Then you can add the following CSS to make it invisible:

.hide { display: none; }

- Using the user interface and Javascript: You can add a custom CSS class(let's call it "js-hide") on the user interface enlace oculto
Then hide its parent form-group div using this Javascript:

jQuery(function($){
    $('.js-hide').each(function(){
        $(this).closest('.form-group').hide()
    })
})

I hope this helps. Let me know if you have any doubts about implementing any of these solutions.

#2228841

Hi Jamal,

The 2nd solution was much easier to implement. The 1st solutions would have also worked, but I preferred to stick with the non-expert mode.

My issue is resolved now. Thank you!