Announcement

Collapse
No announcement yet.

how to delete an image on readytheme tab

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    how to delete an image on readytheme tab

    I am trying to remove an image from one of the shadow's readytheme image tab. I can select a new image, but I cant find out how to remove the image. The reason that I want to remove the image is such that there is not a large blank space on my storefront page. Thanks in advance for your assistance.

    #2
    If you deactivate the image under ReadyTheme -> Images, it should be removed from your storefront.
    Matt Zimmermann

    Miva Web Developer
    Alchemy Web Development
    https://www.alchemywebdev.com
    Site Development - Maintenance - Consultation

    Miva Certified Developer
    Miva Professional Developer

    https://www.dev4web.net | Twitter

    Comment


      #3
      Deactivating the image did remove it from the storefront, but left a large blank whitespace. I fixed this by changing if statement in the sfnt code to test for active instead of image:
      <mvt:if expr="g.storefront_promo_large:active">
      <section class="o-layout">
      <div class="o-layout__item">
      <mvt:item name="readytheme" param="image( 'storefront_promo_large' )" />
      </div>
      </section>
      <br>
      </mvt:if>

      <mvt:item name="readytheme" param="Load_Image('storefront_promo_small_01', g.storefront_promo_small_01)" />
      <mvt:item name="readytheme" param="Load_Image('storefront_promo_small_02', g.storefront_promo_small_02)" />
      <mvt:if expr="g.storefront_promo_small_01:active OR g.storefront_promo_small_02:active">

      Comment

      Working...
      X