Jump to content

Remove "If you like..."


Recommended Posts

Posted

I'd like to ask how to remove the "If you like..." suggestions from the movie details page. Cannot figure it out how to do this using css.

 

Thanks!

 

 

Happy2Play
Posted

/*Hide Recommendations/Because you watched*/
div.recommendations.homePageSection {display: none !important;}

Posted

thanks

 

it seems the items disappear, but only in Folder view

 

in "normal" view it's still there

Posted

Hmm, when I manually change the "block" to "none" the block disappears. Don't know how to change it in css though...

 

56c1ce0aaf938_css.jpg

Posted

Fixed it brute force by removing these lines from itemdetails.html:

 

                <div id="similarCollapsible" style="display: none;" class="detailSection">
                    <h1 class="similiarHeader"></h1>
                    <div id="similarContent"></div>
                </div>
 

  • 2 months later...
Posted

Fixed it brute force by removing these lines from itemdetails.html:

 

                <div id="similarCollapsible" style="display: none;" class="detailSection">

                    <h1 class="similiarHeader"></h1>

                    <div id="similarContent"></div>

                </div>

 

 
I had the same issue, and this will work for me in css
 
#similarContent { 
display: none;
}
#similarCollapsible {
  visibility: hidden;
  }
Happy2Play
Posted

Fixed it brute force by removing these lines from itemdetails.html:

 

                <div id="similarCollapsible" style="display: none;" class="detailSection">

                    <h1 class="similiarHeader"></h1>

                    <div id="similarContent"></div>

                </div>

 

This will return with every update, as the system folder is replaced.

 

 

 

Hmm, when I manually change the "block" to "none" the block disappears. Don't know how to change it in css though...

 

56c1ce0aaf938_css.jpg

 

Sometimes you have to add "!important" after "none".  As you would say brute force.

 

{display: none !important;}

 

Removes from movie view.

/*Remove If you like from movies*/
#similarCollapsible {display: none !important;}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...