Hello kind people of reddit, I bothered chatGPT enough with this issue and I am going in circles so I will ask here, thanks in advance.
I was tasked to work on a WordPress website featuring Woocommerce, specifically I was told to remove a horizontally scrolling banner featured at the top of all pages of the site (a banner with a coupon code made using the <marquee> tag). I hid the element with the options under the “responsive” menu in the advanced tab of elementor, and it effectively hid the banner from all pages of the website. However, I can still see this banner in the /product-category page of the site which I am assuming it is a page which is being created on the fly by Woocommerce, since it is not visible in my pages list on the dashboard.
In my research I have been directed towards hiding this banner by adding the following CSS code in Appearance > Customize > Additional CSS:
`.archive.tax-product_cat .banner {`
`display: none;`
`}`
However I would rather understand how this banner got here/is still here in the first place, in case I need to add this banner again or modify it in the future. Correct me if I am wrong, but I am assuming that this page features this banner because Woocommerce created this /product-category page by copying the other pages on the site which featured the banner, and even though I hid the banner from the other pages it is still present in this one because it is still in the cache of the site (as I am writing this I am realizing that maybe it is still showing there because I hid the banner rather than completely deleting it? could that be why it is still showing there?). To add to my intrigue, this banner only appears in the original language version of the /product-category page and not in the english version of the page.
Do you guys think my assumption is correct? Also this is the first time I make a post here or ask a question related to WordPress, what further information could I provide to correctly receive aid in this issue and how was I unclear?
[ad_2]