How to hide elements on another page twig (symphony) [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
So I have an index page with products and when clicked it goes on another page with the prodcut itself ( i am extending the app.twig on the product page) and it takes all the elements from there to the product page. My question is there anyway to hide elements on another page if you have extended another page ?

I have discovered that if I create blocks than I call them in the page i dont want them empty it will erase them.

Related

why is my Jquery .on(clicked) function not getting clicked correctly? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 days ago.
Improve this question
I am trying to make - and + buttons to add items to shopping cart and I am using internal Jquery .on("click") to execute that. but it is neither performing any task nor is it actually getting clicked, it is not even showing the presence of jquery on inspection
I want those button to get clicked and item to be added in cart

How to Add new div element which contains text [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 days ago.
Improve this question
I recently added a bunch of text in my site but it doesn't look good. Is there a way to create a new div element using CSS that would solve this problem? I want move all the text after the image box.

Product CSS grid / list view in homefeatured module [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
I have a custom module that is supposed to display the home featured products on a custom dynamic cms page. So far, so good, the page is rendered, the products are in place but..
The link is:
https://florariata.ro/344-florarie-online-Prahova-Ploiesti.html
As you can see, the css is class="product_list grid row homefeatured tab-pane" but in the same time, the display used is the one from the list vie not from the grid.. By this way, the list is messed up and the products are rendered like they are now..
Basically, the description and name of product are doubled because both classes are displayed (grid-desc and list-desc)
Could someone explain what is wrong? I cleared the cache in all the possible ways known but still without success..
Could someone point me to the right way?

Div not rendering html tags [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I can't seem to figure out how to get the div to render the html elements properly. Any ideas? The text is taken from a database and inserted into the div via Handlebars.
From the manual:
Handlebars HTML-escapes values returned by a {{expression}}. If you don't want Handlebars to escape a value, use the "triple-stash", {{{.

CSS rule affecting more than just my table [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have attempted to make a table on my page scrollable when the browser width reaches a certain point, but my problem is that the CSS rules I implemented are not exclusively affecting the table, but also the images below the table. Can anyone tell me what is happening?
http://www.sunrisehousing.com/node/322
The problem is, very simpley, that your div.table-container contains more than just your table. If you close off that div after your table closing tag, you should see the results you are looking for.
I image that that your double opening table tags
<table><table...
Are also messing with how the HTML is being parsed. Given the part of your html that looks like this at the end of the table:
</p></table></div></div></div></div></div>
</div></div>
</div>
</div>
it looks like your IDE autofill is getting confused....