Can't remove 'options' heading

Phoca Cart - complex e-commerce extension
Wayne-Zona
Phoca Member
Phoca Member
Posts: 11
Joined: 29 Mar 2023, 19:33

Can't remove 'options' heading

Post by Wayne-Zona »

Hi, I'm trying to remove the 'Options' title on the 'Available options' box, as it is a bit redundant.

I thought I found the language override: COM_PHOCACART_FIELD_OPTIONS_LABEL but this doesn't work. Is this the correct override, or is there another to remove this title?
I'm using the latest J5 version.

Thanks very much
Wayne

Tags:
christine
Phoca Hero
Phoca Hero
Posts: 2882
Joined: 28 Nov 2010, 17:20

Re: Can't remove 'options' heading

Post by christine »

Hi Wayne,

Is there any chance we can see this live?
So we know what you mean.

Kind regards
Christine
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48685
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Can't remove 'options' heading

Post by Jan »

Or can you paste a screenshot of what do you exactly mean?
If you find Phoca extensions useful, please support the project
Wayne-Zona
Phoca Member
Phoca Member
Posts: 11
Joined: 29 Mar 2023, 19:33

Re: Can't remove 'options' heading

Post by Wayne-Zona »

Sure, this is what I mean, the big heading saying 'Options'
https://i.imgur.com/qw38lt5.png

Although, I am not allowed to use img code?

Thanks!
christine
Phoca Hero
Phoca Hero
Posts: 2882
Joined: 28 Nov 2010, 17:20

Re: Can't remove 'options' heading

Post by christine »

Hi,
At the moment, I can't find where this OPTIONS title comes from. Look for an h1 or h2 heading, e.g., h2 class="ph-header or h3 class="ph-product-header gridlist, or .h4.panel-title, or, or...

You'd need the module name to reference - to address it. Then you could address it in CSS (user.css, custom.css) with display: none; As we said, a live look at it would help.

Kind regards
Christine
christine
Phoca Hero
Phoca Hero
Posts: 2882
Joined: 28 Nov 2010, 17:20

Re: Can't remove 'options' heading

Post by christine »

Hi,
I think I found your page. (If it's correct?) There's no heading: OPTIONS (as in your screenshot).

Image

There's a title: Available Options.
This can be removed with:

Code: Select all

h4.ph-available-options-title {
display: none;
}
in the custom.css of the Helix Ultimate template.

Kind regards
Christine
Wayne-Zona
Phoca Member
Phoca Member
Posts: 11
Joined: 29 Mar 2023, 19:33

Re: Can't remove 'options' heading

Post by Wayne-Zona »

Thanks Christine. That live page is the beta version, which had a different way of displaying the 'options' title. (Which I could remove) The screenshot is from the new version of Phoca Cart that seems to do it differently. The header doesn't seem to have an enclosing tag, so I can't use display:none

That new version of the site is not online yet, I'm putting it live in a couple of days. I'll add the link then if that would help?

Thanks very much
christine
Phoca Hero
Phoca Hero
Posts: 2882
Joined: 28 Nov 2010, 17:20

Re: Can't remove 'options' heading

Post by christine »

Hi,
Wayne-Zona wrote: 21 Apr 2025, 13:41 That new version of the site is not online yet, I'm putting it live in a couple of days. I'll add the link then if that would help?
Thanks for your information. Yes, of course, that would help.

Kind regards
Christine
christine
Phoca Hero
Phoca Hero
Posts: 2882
Joined: 28 Nov 2010, 17:20

Re: Can't remove 'options' heading

Post by christine »

Hi,

just an idea. Maybe it's a card-header:

Code: Select all

.card-header {
display: none;    
}
Kind regards
Christine
Wayne-Zona
Phoca Member
Phoca Member
Posts: 11
Joined: 29 Mar 2023, 19:33

Re: Can't remove 'options' heading

Post by Wayne-Zona »

Hi there,
The new version of the site is live now, you can see the header on this page...
https://zonaguitars.com/guitars/the-asgard
There isn't a named tag around it, so I definitely can't use any display:none unfortunately!
Thanks for trying that though!
Post Reply