Announcement

Collapse
No announcement yet.

storefront hero

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

    storefront hero

    I want to see if I can replace the storefront hero image with a slider.
    Does anyone know where this tag is being placed?
    Code:
    <mvt:item name="readytheme" param="image( 'sfnt_hero' )" />
    Trent Studios, LLC
    Graphic Design, Website Design
    TrentStudios.com
    (970) 568-8652

    #2
    Re: storefront hero

    That is a readyTheme tag:

    See the image section here:
    http://www.miva.com/videos/articles/...-documentation
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: storefront hero

      User Interface --> SFNT --> Header & Footer Replace <mvt:item name="readytheme" param="image( 'sfnt_hero' )" /> with your slider code or do what I did and create a content section called carousel and then called it using <mvt:item name="readytheme" param="contentsection( 'carousel' )" />.
      Sincerely,

      Stephen M. LaBar, Jr.
      (770) 441-9447
      The Martial Arts Store

      Please Visit Our Site At:
      http://www.themartialartsstore.com

      Comment


        #4
        Re: storefront hero

        Thanks, Brennan and Slabar.

        Code:
        <mvt:item name="readytheme" param="image( 'sfnt_hero' )" />
        isn't in my header/footer section. I'm using the Suivant ReadyTheme.
        Here's what's in my header:

        Code:
        <div class="column whole align-center event-message nm heading-decoration"><mvt:item name="readytheme" param="banner( 'storefront-message' )" /></div>
        <div class="breaker clear"></div>
        <div class="column hide medium-show medium-half align-center">
        	<mvt:item name="readytheme" param="image( 'storefront_promo' )" />
        </div>
        <div class="column whole medium-half align-center">
        	<mvt:item name="readytheme" param="image( 'storefront_new' )" />
        </div>
        <div class="column whole medium-half align-center">
        	<mvt:item name="readytheme" param="image( 'storefront_sale' )" />
        </div>
        <div class="breaker clear"></div>
        Footer is blank.

        This is what's in my template:

        Code:
        <mvt:item name="html_profile" />
        <head>
        	<title>&mvt:store:name;</title>
        	<mvt:item name="head" param="head_tag" />
        </head>
        <mvt:item name="body">
        	<mvt:item name="hdft" param="global_header" />	
        		<div class="row hdft-header">
        			<mvt:item name="hdft" param="header" />
        		</div>
        		<mvt:item name="content" />
        		<div class="row hdft-footer">
        			<mvt:item name="hdft" param="footer" />
        		</div>
        	<mvt:item name="hdft" param="global_footer" />	
        </mvt:item>
        </html>
        Trent Studios, LLC
        Graphic Design, Website Design
        TrentStudios.com
        (970) 568-8652

        Comment


          #5
          Re: storefront hero

          This is actually located in the Global Header because of where it needed to be with in the layout:

          Code:
          <mvt:if expr="l.settings:page:code EQ 'SFNT'">
          			<div class="row sfnt-hero">
          				<mvt:item name="readytheme" param="image( 'sfnt_hero' )" />
          				<div class="breaker clear"></div>
          			</div>
          			<!-- end sfnt-hero -->
          		</mvt:if>
          Brennan Heyde
          VP Product
          Miva, Inc.
          [email protected]
          https://www.miva.com

          Comment


            #6
            Re: storefront hero

            Aha! Thanks, Brennan!
            Trent Studios, LLC
            Graphic Design, Website Design
            TrentStudios.com
            (970) 568-8652

            Comment

            Working...
            X