Skip Navigation

[Resolved] Hide Username Dropdown in Post Relationship Form

This thread is resolved. Here is a description of the problem and solution.

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 2 years, 4 months ago. 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.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

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+00:00)

This topic contains 5 replies, has 2 voices.

Last updated by Alok Sharma 2 years, 4 months ago.

Assisted by: Jamal.

Author
Posts
#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

Jamal
Supporter

Languages: English (English ) French (Français )

Timezone: Africa/Casablanca (GMT+00:00)

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

Jamal
Supporter

Languages: English (English ) French (Français )

Timezone: Africa/Casablanca (GMT+00:00)

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

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

#2228755

Jamal
Supporter

Languages: English (English ) French (Français )

Timezone: Africa/Casablanca (GMT+00:00)

Thank you for the credentials. I assume that you are talking about this form hidden link

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 hidden link
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 hidden link
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!

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.