Announcement

Collapse
No announcement yet.

Easily integrate your Miva Merchant into Facebook

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

    #76
    Re: Easily integrate your Miva Merchant into Facebook

    Leslie, the templates have been sent to you. Let me know if you don't receive them.
    And thanks for the "Like"
    Larry
    Larry
    Luce Kanun Web Design
    www.facebook.com/wajake41
    www.plus.google.com/116415026668025242914/posts?hl=en


    Comment


      #77
      Re: Easily integrate your Miva Merchant into Facebook

      Originally posted by lesliekirk View Post
      So having a lower PHP version will result in the miva2fb.php page being "blank"? As in no code what so ever?
      Sure does... Took Bill & i a few passes to figure that one out. I was in the same PHP main version, yet one upgrade below.. Once David updated, all good.
      Dan

      Girlfriends Lingerie - "Keeping It Sexy!"
      Sexy Lingerie - Twitter - Facebook- Pinterest - YouTube

      Comment


        #78
        Re: Easily integrate your Miva Merchant into Facebook

        Hello fellow FB app users: Just wanted to report some results about our FB apps.
        I've added a tracking email to our OCST page that notifies us when a customer has hit that page coming from one of our FB apps.
        Surprise, we are getting significant traffic from our FB apps! Using FB as an entry portal was something I was very skeptical about and I actually never expected it to produce much.

        While we are only presently tracking FB visits to the OCST page, we are going to put FB tracking on the rest of the checkout pages so we can get a feel for the conversions coming from FB.

        I would be interested in hearing how FB has improved traffic and sales for any other Miva merchants. Is it working for you?

        Once again, thanks to wcw for posting this FB app solution to the forum.

        Regards, Larry
        Larry
        Luce Kanun Web Design
        www.facebook.com/wajake41
        www.plus.google.com/116415026668025242914/posts?hl=en


        Comment


          #79
          Re: Easily integrate your Miva Merchant into Facebook

          I purchased Toolkit Monday, created my code and pages yesterday... and come to find out that MIVA Merchant servers are at 5.1.6 (at least where MIVA hosting our site). I've opened a ticket with them but I was wondering if there was a way to view and tweak my store for Facebook in the meantime while they upgrade their version of PHP to 5.3.6?

          Using facebook.php and miva2fb.php per the tutorials/instructions.

          Thanks!

          Comment


            #80
            Re: Easily integrate your Miva Merchant into Facebook

            You can call your pages directly and will see what appears in the middle window (iframe) of FB. See http://www.emporiumplus.com/CTGYFB.html
            Bill Weiland - Emporium Plus http://www.emporiumplus.com/store.mvc
            Online Documentation http://www.emporiumplus.com/tk3/v3/doc.htm
            Question http://www.emporiumplus.com/mivamodu...vc?Screen=SPTS
            Facebook http://www.facebook.com/EmporiumPlus
            Twitter http://twitter.com/emporiumplus

            Comment


              #81
              Re: Easily integrate your Miva Merchant into Facebook

              Originally posted by wcw View Post
              You can call your pages directly and will see what appears in the middle window (iframe) of FB. See http://www.emporiumplus.com/CTGYFB.html
              Excellent! Thank you!

              Comment


                #82
                Re: Easily integrate your Miva Merchant into Facebook

                Let's get the summer started off right. Today (Jun 22, 2011) only we are having a 30% off our 10 best selling modules. The list includes Tool Kit, Coupon Redemption, Template Data Feed, PayPal, Addendum, Mini-basket, Volume Pricing, Sort Shipping Plus Free Shipping Option, Mail Manager, Power Search.

                If you start the shopping in our Facebook integration of the store at http://www.facebook.com/EmporiumPlus you can even get an additional 5% off if you "like" our page. After putting the modules in the basket, view the basket to verify the 5% is taken off, then go to checkout. Use coupon code BESTSELL at checkout for the 30% more off.
                Bill Weiland - Emporium Plus http://www.emporiumplus.com/store.mvc
                Online Documentation http://www.emporiumplus.com/tk3/v3/doc.htm
                Question http://www.emporiumplus.com/mivamodu...vc?Screen=SPTS
                Facebook http://www.facebook.com/EmporiumPlus
                Twitter http://twitter.com/emporiumplus

                Comment


                  #83
                  Re: Easily integrate your Miva Merchant into Facebook

                  I know Bill tweeted this and it's probably already been pointed out a dozen times over, but one more time for good measure. Make sure you have at LEAST version v5.178 of the Toolkit. It added the Simple Search which is also very crucial to making this work.

                  It's definitely taken me more than 25 minutes to get all the MMUI pieces of the puzzle put together, with many thanks to Dan.

                  Leslie
                  Leslie Kirk
                  Miva Certified Developer
                  Miva Merchant Specialist since 1997
                  Previously of Webs Your Way
                  (aka Leslie Nord leslienord)

                  Email me: [email protected]
                  www.lesliekirk.com

                  Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

                  Comment


                    #84
                    Re: Easily integrate your Miva Merchant into Facebook

                    In addition to the simplesearch function, in version 5.208 I added the discount function. That lets you put a discount in the basket if the conditions you specify are met. Several have asked how I am doing the discount if someone "likes" your facebook page. If you followed the "how to" at the beginning of this thread then you created a couple of affiliates using the built in affiliate program. Let's say you named the affiliate friends for those who have liked your page in Facebook. If they add items to the basket and then view the basket in your Facebook integration, the following code would run.
                    Code:
                    <mvt:item name="toolkit" param="affiliate|myaffil" />
                    <mvt:if expr="g.myaffil AND (l.settings:myaffiliate:code EQ 'friends')">
                    <mvt:item name="toolkit" param="discount|FaceBook Discount 5%|'5%'|0|" />
                    </mvt:if>
                    The code checks to see if an affilate url was used to go to the Facebook store. As discussed in the "how to" those who have liked the page will have affiliate "friends". Those who have not will have "notfriends" as an affiliate. So the second line of this code checks to see if the affiliate is called friends. If it is, it runs the tool kit discount function.
                    Bill Weiland - Emporium Plus http://www.emporiumplus.com/store.mvc
                    Online Documentation http://www.emporiumplus.com/tk3/v3/doc.htm
                    Question http://www.emporiumplus.com/mivamodu...vc?Screen=SPTS
                    Facebook http://www.facebook.com/EmporiumPlus
                    Twitter http://twitter.com/emporiumplus

                    Comment


                      #85
                      Re: Easily integrate your Miva Merchant into Facebook

                      Originally posted by lesliekirk View Post
                      I know Bill tweeted this and it's probably already been pointed out a dozen times over, but one more time for good measure. Make sure you have at LEAST version v5.178 of the Toolkit. It added the Simple Search which is also very crucial to making this work.

                      It's definitely taken me more than 25 minutes to get all the MMUI pieces of the puzzle put together, with many thanks to Dan.

                      Leslie
                      Been a little bit of work, but we finally got it going. Always glad to help. Now I need a beer.LOL
                      Dan

                      Girlfriends Lingerie - "Keeping It Sexy!"
                      Sexy Lingerie - Twitter - Facebook- Pinterest - YouTube

                      Comment


                        #86
                        Re: Easily integrate your Miva Merchant into Facebook

                        I'm almost there - still working on the add to cart buttons - since they are different from the CSSUI (boy did that one bark at me). Dan, I should give you the tweak I used to get the two column before I get too far into matching the store layout.

                        Leslie
                        Leslie Kirk
                        Miva Certified Developer
                        Miva Merchant Specialist since 1997
                        Previously of Webs Your Way
                        (aka Leslie Nord leslienord)

                        Email me: [email protected]
                        www.lesliekirk.com

                        Follow me: Twitter | Facebook | FourSquare | Pinterest | Flickr

                        Comment


                          #87
                          Re: Easily integrate your Miva Merchant into Facebook

                          Originally posted by lesliekirk View Post
                          I'm almost there - still working on the add to cart buttons - since they are different from the CSSUI (boy did that one bark at me). Dan, I should give you the tweak I used to get the two column before I get too far into matching the store layout.

                          Leslie
                          Awesome... Thank ya
                          Dan

                          Girlfriends Lingerie - "Keeping It Sexy!"
                          Sexy Lingerie - Twitter - Facebook- Pinterest - YouTube

                          Comment


                            #88
                            Re: Easily integrate your Miva Merchant into Facebook

                            Bill, Thank you so much for posting this! It looks like I have the app working on facebook. It displays the entire store just as if they were visiting it outside of Facebook. Is that how it should be?

                            http://www.facebook.com/CoffeeHouseE...40311702647758

                            Comment


                              #89
                              Re: Easily integrate your Miva Merchant into Facebook

                              No. You were supposed to create the scaled down pages (500px wide) so they would fit in the screen. There is a complete "how to" with copy and paste code if your store is CSSUI. See the first post.
                              Bill Weiland - Emporium Plus http://www.emporiumplus.com/store.mvc
                              Online Documentation http://www.emporiumplus.com/tk3/v3/doc.htm
                              Question http://www.emporiumplus.com/mivamodu...vc?Screen=SPTS
                              Facebook http://www.facebook.com/EmporiumPlus
                              Twitter http://twitter.com/emporiumplus

                              Comment


                                #90
                                Re: Easily integrate your Miva Merchant into Facebook

                                Hi Bill, I did create the new pages just like the instructions, I have the facebook.php and miva2fb.php files in my /facebook directory. I might have to check the version of PHP I have. or
                                Originally posted by wcw View Post
                                No. You were supposed to create the scaled down pages (500px wide) so they would fit in the screen. There is a complete "how to" with copy and paste code if your store is CSSUI. See the first post.

                                Comment

                                Working...
                                X