Jump to content

Remove "If you like..."


djonnie

Recommended Posts

djonnie

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!

 

 

Link to comment
Share on other sites

Happy2Play

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

Link to comment
Share on other sites

djonnie

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>
 

Link to comment
Share on other sites

  • 2 months later...
dimmie83

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;
  }
Link to comment
Share on other sites

Happy2Play

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;}
Link to comment
Share on other sites

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...