Skip Navigation

[Resolved] Toolset and Soledad Theme option of hiding page title not working

This support ticket is created 4 years, 2 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.

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

Supporter timezone: America/Jamaica (GMT-05:00)

This topic contains 4 replies, has 2 voices.

Last updated by Shane 4 years, 2 months ago.

Assisted by: Shane.

Author
Posts
#1939445
toolset2.PNG
toolset.PNG

I am trying to: I'm trying to disable and hide share bar, page title and breadcrumbs when creating a new model with toolset on wordpress installation with Soledad Theme, a theme that support Toolset plugins, but it just doesn't work. It still visible when I visit the page.

After opening a ticket with Soledad team dev, their answer is to contact Toolset about this issue >>

« « Hi,

It seems the guys from Toolset has changed something to cause this issue. Because the guys from Toolset has to make Toolset compatible with Soledad before. So, I think the best solution - you can contact Toolset support here and they will help you solve it.

Best Regards,

PenciDesign » »

Link to a page where the issue can be seen: See screenshot provided. Website is currently in development.

I expected to see: No page title

Instead, I got: option not working

#1939911

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Samuel,

Thank you for getting in touch.

Would you mind allowing me to have admin access to the site as well as a link to the page to see the issue ?

I will perhaps take a duplicate of the website so that I can test locally to see if the issue remains as well.

Thanks,
Shane

#1942425

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Screenshot 2021-02-11 at 9.39.04 AM.png

Hi Samuel,

I see the issue now. Based on the settings i'm seeing on your backend, you theme doesn't support the removal of these areas on Posts.

Taking a look at this further i'm not seeing any breadcrumbs at the moment, what I currently see from the links you've sent is different from the screenshot in your initial post. See my screenshot.

If the area from my screenshot is what you will like to remove then we can do it with some css given that the theme doesn't support this setting for Posts.

Please let me know and we can proceed from there.

Thanks,
Shane

#1943779

Hi Shane. Thanks for the precision. Yes you can proceed if the modification you will make only hide the title for this kind of post ( repertoire de services ) because I don't want my other single post template to have this modification

So yes you can hide the title, the share box ( like et partage ) and the line that display views, author, comments and date.

Can you also tell me where the css code will be inserted on my theme?

I will also make some other kind of post type, it will work for this new post type too?

Thank you so much for your help!

#1943887

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi Samuel,

The sections can be removed with the following CSS

.single-header{
display:none;
}
.tags-share-box-top{
display:none;
}

Can you also tell me where the css code will be inserted on my theme?

The CSS won't be inserted into your theme as this will cause it to affect the entire site. Instead i've added it to the content template so only posts with this content template will get the css applied.

If you edit your content template and go to Css Editor section you will see the custom css. The only issue with this is the load priority of the css section. It loads after the entire page has been populated so you will see the share section appearing for a moment then it gets removed.

A workaround to this is that you can try using the plugin below to add the css to this specific post type.
https://wordpress.org/plugins/wp-add-custom-css/

Thanks,
Shane