PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Id to hide Switcher in all Blog Posts

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Which ID should I use to hide the swicher in all my Blog post?

https://ibb.co/dQRq3SF

Thanks

Hello

Please  drop  me  exact  link  to  your  blog page

Here: https://cefne.com/blog/

But I would like to hide the switcher in the single post, in the post page I can do it usin page ID

try  to  set - woocommerce - https://share.pluginus.net/image/i20210611125933.png

This doesn't work for me I put woocommerce and I don't see switcher in any page (woocomorce page or not...)

 

I am using WPLMS course software so I need to show and hide swicher in course pages that are not woocommerce product page. According to my configuration, what I need is how to hide switcher in blog pages: https://ibb.co/WKsf1c9

Hello

Please  drop  me  wp-admin access - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130637.png I will  check  it

Done

Hello

Please  do a test

I still see it in posts: https://cefne.com/el-poder-de-la-actitud-2/

Ok  please  try  to  add  id  of  this  page (5382) here - https://share.pluginus.net/image/i20210621130813.png

I did it but I don't know what should I test... I still see the switcher in single post pages.

Hello

I  added  - https://share.pluginus.net/image/i20210622111907.png - https://share.pluginus.net/image/i20210622112012.png

Now this only shows up on woocommerce pages

If I do this I can not see the switcher in this page:https://cefne.com/curso/certificado-profesional-en-negociacion/ and I don't have an ID for this page because is a page created by WPLMS.

I see it appears here but I don't using this page: https://cefne.com/producto/certificado-profesional-en-negociacion/. I am using product WPLMS page to enroll course: https://cefne.com/curso/certificado-profesional-en-negociacion/

In this case, you need customization of the code.

 

the question to solve my problem is: How can I hide the switcher in single blog pages?????? I think what I'm asking for is something very basic

The problem is that a single blog page is the same as a single product page and a single cursos page.

Your requirements for the display of the switcher are non-standard.  In this case, you need to customize the code.

You  can  add  FTP  acces

added

Hello

Please  do  a test

I added in functions.php  this  code:

add_filter('woof_show_side_swither', function($show){
if( is_singular('course') ){
$show = true;
}
return $show;
});