Remove Price in Categories

ThemeBurn SupportForumsOpenCart ThemesShoppica OpenCart ThemeRemove Price in Categories

This topic has been marked as resolved.

Hi,

What browser do you test with? Because this code works fine for FF, IE and Chrome.

What is the deal with the main navigation?

September 25, 2011 at 8:05 pm #1999

Hi, I used your code that hide the circle and add the price as text inside the hoover box.

Is it possible to change that the price is visible in both the hoover box and outside it when you not hoovering an item?

I want to see all prices under the name of the products whithout the need of hoover it.

Thanks

Edit:
Also, when I think of it. I might want to change the font size of the product name if the price will be visible. It should be a bit smaller than the product price size.

  • This reply was modified 4596 days ago by  andrixx.
  • This reply was modified 4596 days ago by  andrixx.
September 26, 2011 at 12:18 am #2005
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
September 28, 2011 at 12:30 pm #2047

Thanks alot, it was an easy task but I am not good with coding. :)

But when I change font for the currency, the currency symbol does not change. I am using currency symbol on the right side. When I try with it on the left side the font change as it should.

Does it have anything to do with this code that I have changed before

.s_price .s_currency.s_after {
   display: inline !important;

I still need that code since I have the price tag circle when you are in a product page.

September 28, 2011 at 11:30 pm #2062

I am using Chrome btw.

I’m not sure why the codes don’t work. Even the one you gave to andrixx to change the product font size didn’t work. I had to do the following:

Only when I change font-family under .s_price manually does the font of price change.
Only when .container_12 .grid_3.s_item h3 is changed does the size of the product name change.
Only when #product_intro.s_size_1 .s_price is changed will change the size of the price.

I’m not sure why I had to do it manually, but it probably has to do with some past codes you’ve given me and I’ve put in. (I have some modifications from this forum and there are !important stuff scattered here and there)

My issue with the main navigation is from this thread: http://support.themeburn.com/topic/change-default-shoppica-fonts#post-1599

The font doesn’t change no matter what I do. I’ve tried fontsquirrel fontfaces several times and that doesn’t seem to work. So I want to try google fonts but I have no idea how to implement them and there doesn’t seem to be sufficient documentation online.

September 29, 2011 at 12:57 am #2068
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
October 3, 2011 at 1:44 am #2118

Sorry about replying to an old topic, but I am facing some issues here by following these instructions.

Basically I wanted to remove the price circle, so I followed these instructions:

If you want to hide it with css, open screen.css and put at the end this line of code:


#category .s_listing .s_price {
  display: none;
}

3) To remove the entire circle style for grid/list category/manufacturer/search view, just add at the bottom of the screen.css this piece of code:


.container_12 .s_item .s_currency,
.container_16 .s_item .s_currency
{
  display: inline !important;
  color: #000 !important;
}
.container_12 .s_item .s_old_price,
.container_16 .s_item .s_old_price
{
  display: block !important;
  color: #000;
}
.container_12 .s_item .s_old_price .s_currency,
.container_16 .s_item .s_old_price .s_currency
{
  display: none !important;
}
.container_12 .s_grid_view .s_item .s_price,
.container_16 .s_grid_view .s_item  .s_price,
.container_12 .s_grid_view .s_item .s_promo_price,
.container_16 .s_grid_view .s_item  .s_promo_price,
.container_12 .s_list_view .s_item .s_price,
.container_16 .s_list_view .s_item  .s_price,
.container_12 .s_list_view .s_item .s_promo_price,
.container_16 .s_list_view .s_item  .s_promo_price
{
  position: static !important;
  width: 100% !important;
  height: auto !important;
  margin-bottom: 9px !important;
  padding: 0 !important;
  line-height: 18px;
  color: #000;
  background: none transparent !important;
}
.container_12 .s_grid_view .s_item .s_promo_price .s_old_price,
.container_16 .s_grid_view .s_item  .s_promo_price .s_old_price
{
  color: #000;
}

.container_12 .s_list_view .s_item h3,
.container_16 .s_list_view .s_item  h3
{
  float: left;
  width: 85%;
}
.container_12 .s_list_view .s_item .s_price,
.container_16 .s_list_view .s_item  .s_price,
.container_12 .s_list_view .s_item .s_promo_price,
.container_16 .s_list_view .s_item  .s_promo_price
{
  float: right;
  width: auto !important;
  text-align: right;
}

/** use this for invisible price **/
.s_grid_view .s_item .s_price {
  visibility: hidden;
}
.s_grid_view .s_item:hover .s_price {
  visibility: visible;
}

With all these, the front page looks good but with the products under each category, I’m not getting the price under each product. It’ll be better if you tell me how I can apply some codes like:


/** use this for invisible price **/
.s_grid_view .s_item .s_price {
  visibility: hidden;
}
.s_grid_view .s_item:hover .s_price {
  visibility: visible;
}

so I can have the prices visible under categories for each product from grid and listed views.

Thank you very much,

Sam

October 9, 2011 at 6:28 pm #2255

Hi TB team,

Just wondering if you have missed my question. Sorry to reply this thread again, but I really want to get the issue sorted.

Cheers,

Sam

October 11, 2011 at 11:16 am #2315
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
October 11, 2011 at 11:25 am #2316

I don’t know why but my currency is gray on my price tags. My price itself is white.

And I can’t seem to find it…

October 15, 2011 at 2:11 am #2537

@andrixx

The original (default Shoppica installation) currency sign has a little opacity assigned to. That is why it could appear gray to you. If you don’t like how it looks, you could easily remove. Just search for .s_currency selector in the screen.css.

Best regards,
ThemeBurn team

October 19, 2011 at 12:00 pm #2691

That did the trick!

Thanks alot. :)

Best regards
Andreas

October 19, 2011 at 10:14 pm #2735

Glad, we’ve helped, Andreas :)

October 20, 2011 at 12:47 pm #2751

Hello good afternoon I contacted you, my email is raphaelribe…@hotmail.com ended up buying the layout, which has only one problem: the display of prices, the display mode, I tried to change but was not legally I would like the format of the price is equal to the website: http://www.mxcursos.com.br

My site is http://www.tabacariasp.com.br

I ask for urgent help, just missing it so I can put things in e-commerce :) and start selling

translated text

April 19, 2012 at 10:07 pm #8202

@raphaelribeiro

Just use the example code from this post: http://support.themeburn.com/topic/remove-price-in-catagories/page/2/#post-2118

If you want a different color than black, change the #000 value throughout the example with some other.

Best,
ThemeBurn team

April 23, 2012 at 10:33 am #8244
Viewing 15 posts - 16 through 30 (of 30 total)
  • You must be logged in to reply to this topic.