Announcement

Collapse
No announcement yet.

Continue Shopping Link On Suivant Theme Not Working

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

    Continue Shopping Link On Suivant Theme Not Working

    Hi Guys

    As the title says the " Continue Shopping" link / button on the BASK page doesn't work on the Suivant theme
    or well it takes you to the home page and not back to the page you have come from
    If this is the case that it send you to the Home Page then it is not really a "Continue Shopping " Button so seams redundant.

    I have checked on this page http://suivant-theme.mivamerchantdev.com/ and it is the same
    it takes you off to the home page after a product is added to the basket

    am I missing something ???

    Cheers!

    #2
    Re: Continue Shopping Link On Suivant Theme Not Working

    That is currently how it was designed. However you can easily update it to be a JavaScript back button, or even remember the product/category you came from and take you back to there.
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Re: Continue Shopping Link On Suivant Theme Not Working

      We have a Continue Shopping module on the new App Store that returns shoppers to previous screens based on history: http://apps.miva.com/product/GD-CONTINUE.html

      Comment


        #4
        Re: Continue Shopping Link On Suivant Theme Not Working

        ..and before you ask :) Yes, you can do something like this with toolkit and a couple (maybe even more) hours...but the module approach for something like this is ALWAYS going to be a better investment.
        Bruce Golub
        Phosphor Media - "Your Success is our Business"

        Improve Your Customer Service | Get MORE Customers | Edit CSS/Javascript/HTML Easily | Make Your Site Faster | Get Indexed by Google | Free Modules | Follow Us on Facebook
        phosphormedia.com

        Comment


          #5
          Re: Continue Shopping Link On Suivant Theme Not Working

          Just installed the Glendale Designs module and it works like magic. I don't really understand why Miva would redirect to the home page with the 'continue shopping' button though. Oh well...

          Comment


            #6
            Can not find the Glendale module in the store. Is there an alternative for the DiVino theme?
            DiVino Theme

            Comment


              #7
              We discontinued the GD Continue Shopping module because custom basket fields can be used to provide similar functionality.

              Comment


                #8
                Here is the code we use on booc to allow the continue shopping button to take you back to where you previously were. This code can be added to any site/theme, although it assumes you are using our built in breadcrumbs on these pages. If that is not the case, it will need to be adjusted.

                In the Head tag add this:

                //This code saves the last visited URL from any category, product or search results page into a custom basket field
                Code:
                <mvt:if expr="l.settings:page:code EQ 'CTGY' OR l.settings:page:code EQ 'PROD' OR l.settings:page:code EQ 'SRCH'">
                    <mvt:item name="customfields" param="Write_Basket('continue_url', l.settings:breadcrumbs:current_item:link)" />
                </mvt:if>
                Then on BASK read in the custom field:

                Code:
                <mvt:item name="customfields" param="Read_Basket('continue_url', l.settings:continue_url)" />
                <mvt:if expr="l.settings:continue_url">
                    <mvt:assign name="g.continue_url" value="l.settings:continue_url" />
                <mvt:else>
                    <mvt:assign name="g.continue_url" value="l.settings:urls:SFNT:auto" />
                </mvt:if>
                and update continue shopping button:

                Code:
                <a href="&mvt:global:continue_url;" title="Continue Shopping">Continue Shopping</a>
                Brennan Heyde
                VP Product
                Miva, Inc.
                [email protected]
                https://www.miva.com

                Comment

                Working...
                X