Close

no images

Rgrant
8 years ago
#9750 Quote
Avatar
  • 17
can the no image graphic be universally turned off or told not to display?
Boyko
8 years ago
#9754 Quote
Avatar
  • Moderator
  • 1570
Rgrant wrote:
can the no image graphic be universally turned off or told not to display?


Hi Rgrant,

You can change the default image but you can't turn it off or hide it.
Regards,
Nop-Templates.com Team
Rgrant
8 years ago
#9764 Quote
Avatar
  • 17
That seems odd. I'll add to the Store recommendations section. Not all carts have images. What is the work around? I've seen someone doing a clear 1 pixel graphic to replace your "no image". However, how does the effect the alignment of the product content?

Anyway, can you suggest a work-around. I am not going to load this cart up with a bunch of useless images just so I can get rid of the "no image" which is not acceptable.

Boyko
8 years ago
#9771 Quote
Avatar
  • Moderator
  • 1570
Rgrant wrote:
That seems odd. I'll add to the Store recommendations section. Not all carts have images. What is the work around? I've seen someone doing a clear 1 pixel graphic to replace your "no image". However, how does the effect the alignment of the product content?

Anyway, can you suggest a work-around. I am not going to load this cart up with a bunch of useless images just so I can get rid of the "no image" which is not acceptable.



Hi Rgrant,

I think there is some misunderstanding here. Our Electronics theme is designed to work for nopCommerce. nopCommerce searches for images for your products/categories etc.
If it doesn't find an image then it loads the default image (which you can change).
It also resizes this image to the media settings sizes being set.
So there is no way to set 1 px images without some code changes in the nopCommerce framework.
Regards,
Nop-Templates.com Team
Rgrant
8 years ago
#9777 Quote
Avatar
  • 17
All I can say is that my client has no images. Just text

I saw in the forum someone suggesting using a 1 pixel image. 

I'll need to figure out what to do. Certainly can't can't"mo image" displaying everywhere.
Peter.Zhekov
8 years ago
#9781 Quote
Avatar
  • Moderator
  • 104
Rgrant wrote:
All I can say is that my client has no images. Just text

I saw in the forum someone suggesting using a 1 pixel image. 

I'll need to figure out what to do. Certainly can't can't"mo image" displaying everywhere.


You can simply hide the product image, find the following code in your 'styles.css' file:

.product-grid .product-item .picture {
   ...
}
And add 'display: none;' property like this:

.product-grid .product-item .picture {
   ...
   display: none;
}


Regards,
Peter Zhekov
Nop-Templates.com
Rgrant
8 years ago
#9784 Quote
Avatar
  • 17
Thanks Peter. Just what I was looking for.
Rgrant
8 years ago
#9785 Quote
Avatar
  • 17
Peter,

Ok that takes care of the item display

http://gansinkdigital.com.dock.arvixe.com/cart/aq-heavy-photo-gloss-3

but images appear at the Home page level, Category, Product. I'm reading through the css. Is their css for these various levels for which I can write the no display code?

i.e. http://gansinkdigital.com.dock.arvixe.com/cart/


Thanks,
RG
Peter.Zhekov
8 years ago
#9800 Quote
Avatar
  • Moderator
  • 104
Rgrant wrote:
Peter,

Ok that takes care of the item display

http://gansinkdigital.com.dock.arvixe.com/cart/aq-heavy-photo-gloss-3

but images appear at the Home page level, Category, Product. I'm reading through the css. Is their css for these various levels for which I can write the no display code?

i.e. http://gansinkdigital.com.dock.arvixe.com/cart/


Thanks,
RG

You can use this global styling:


.item-box .picture {
    display: none;
}



This will hide all the images all over the theme. It's global but as I understand you do not need any images in the theme (neither the categories or the product item boxes).
Regards,
Peter Zhekov
Nop-Templates.com