Announcement

Collapse
No announcement yet.

combo-facet page issue

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

    combo-facet page issue

    Sometimes I find the answer after I post, so here'goes.

    I set up a combo facet on a page. When selecting the options, APPLY, goes to the storefront. ??? Go back the initial page and the facet results are rendered. It's the same sequence when I click the RESET. Something isn't configured correctly? Ideas on what that would be?

    Scott
    Need to offer Shipping Insurance?
    Interactive Design Solutions https://www.myids.net
    MivaMerchant Business Partner | Certified MivaMerchant Web Developer
    Competitive Rates, Custom Modules and Integrations, Store Integration
    AutoBaskets|Advanced Waitlist Integration|Ask about Shipping Insurance Integration
    My T-shirt Collection is mostly MivaCon T-shirts!!

    #2
    Originally posted by ids View Post
    Sometimes I find the answer after I post, so here'goes.
    Did it work? :^)

    Actually, I've noticed the same thing. There's something about the act of asking for help that frees your brain to think of a solution it hadn't thought of before.
    Kent Multer
    Magic Metal Productions
    http://TheMagicM.com
    * Web developer/designer
    * E-commerce and Miva
    * Author, The Official Miva Web Scripting Book -- available on-line:
    http://www.amazon.com/exec/obidos/IS...icmetalproducA

    Comment


      #3
      LOL, not this time, so far. Even after 24 hours.

      It does seem as if the CGI variable, SCREEN=CTGY for example is missing. At least that's how it's behaving. I've never needed to get under the hood of the facets/combo-facets so I'm not sure where to look.

      Scott
      Need to offer Shipping Insurance?
      Interactive Design Solutions https://www.myids.net
      MivaMerchant Business Partner | Certified MivaMerchant Web Developer
      Competitive Rates, Custom Modules and Integrations, Store Integration
      AutoBaskets|Advanced Waitlist Integration|Ask about Shipping Insurance Integration
      My T-shirt Collection is mostly MivaCon T-shirts!!

      Comment


        #4
        Still no joy on this issue. But, an additional question.

        My facet work has been the typical car part scenario, year make model. And that matched the docs too. But, I have different fields of course. I have "ingredients" as one criterion as in food products. That's the basis for filtering the products. Another is the country of origin. These two filters can be mutually exclusive. Combo facets appear to be the only function to use. Does one filter work? Would I need to set up multiple? I not only need to figure out the complexity, but I also need to present this to the client that doesn't really understand.

        Scott
        Need to offer Shipping Insurance?
        Interactive Design Solutions https://www.myids.net
        MivaMerchant Business Partner | Certified MivaMerchant Web Developer
        Competitive Rates, Custom Modules and Integrations, Store Integration
        AutoBaskets|Advanced Waitlist Integration|Ask about Shipping Insurance Integration
        My T-shirt Collection is mostly MivaCon T-shirts!!

        Comment


          #5
          This might be the answer if you haven't already found it, also might help others.

          On our website we have this in the global settings in the section Combination Facet Menu Layout. You add your page codes to not redirect once a facet has been selected. Our's is setup if your not on one of those pages it will redirect to either a specific category by choosing its Category ID # or to in our case a Category Select page.

          <mvt:if expr="l.settings:page:code EQ 'PROD' OR l.settings:page:code EQ 'SFNT' OR l.settings:page:code EQ 'PROD_GIFT' OR l.settings:page:code EQ 'PLST' OR l.settings:page:code EQ 'CTGY' OR l.settings:page:code EQ 'CTGY_BEST' OR l.settings:page:code EQ 'CTGY_PROMO' OR l.settings:page:code EQ 'game_of_roads' OR l.settings:page:code EQ 'SRCH' OR l.settings:page:code EQ 'CTGY_SUBS_ONLY' OR l.settings:page:code EQ 'CTGY_MULTI'">
          MMCombinationFacet.prototype.onSetCookie = function() { window.location.href = '&mvtj:urls:_self:auto;'};
          <mvt:else>
          <mvt:comment> Redirect to All Products category </mvt:comment>
          <mvt:do file="g.Module_Library_DB" name="l.success" value="Category_Load_ID( 0, l.redirect_ctgy )" />
          <mvt:do file="g.Module_Feature_URI_UT" name="l.settings:redirect_url" value="Store_Category_URL( l.redirect_ctgy, null )" />
          MMCombinationFacet.prototype.onSetCookie = function() { window.location.href = '&mvtj:redirect_url;'};
          </mvt:if>

          Comment

          Working...
          X