Facebook dynamic product ads feed issues - facebook

I am trying to setup facebook Dynamic product ads. Facebook says they accept same feed that google accepts at their google merchant centre for google shopping.
I have uploaded google shopping feed to Facebook and it comes back with following error
"Incorrectly formatted property: shipping (1,529 products affected)
Property shipping is incorrectly formatted."
Facebook's documentation says it needs shipping data in this format
COUNTRY:STATE:SHIPPING_TYPE:PRICE
US:CA:Ground:9.99 USD,
US:NY:Air:15.99 USD
Here is what facebook pics from google feed.
GB::24hr Tracked Insured Signed (Excludes Saturday, Sunday, Bank Holidays):0
It seems to correct to me as per facebook documentation. Any idea what could be wrong here?
Second question is how do you set it up if you offer "Worldwide free shipping"

You can't have commas (,) inside Shipping type. Comma (,) is used to between different shipping alternatives

Related

utm campaigns conversions aren't being credited to the campaign in google analytics when using shopify

My problem is with using shopify, google analytics, and utm codes to track which campaigns is bringing which conversions.
A lot of my utm campaigns sales aren't being credited to the campaign, I think possibly because of paypal redirecting and paypal getting the credit for the sale instead of the utm campaign. How can I troubleshoot this issue and resolve it?
Add paypal to your referral exclusion list in the property settings, unless you still use "classic analytics" in which case you add utm_nooveride=1 to the url that redirects back from paypal to your site.
If this really is your problem you can select source/medium as secondary dimension in your transaction report. If paypal is credited for the transactions you will see paypal.com/referral values (also this will maim some of your session based metrics since a change in attribution starts a new session in GA).
Wen user goes to PayPal from youre website, all original source data is lost, because paypal does not have Cross Domain tracking set up with your website. So PayPal in your analytics looks like a referral website. This can be solved with cookies and Uesr ID, but it requires some programing:
https://developers.google.com/analytics/devguides/collection/analyticsjs/cookies-user-id

Paypal Express Checkout - VAT is not shown neither on the form nor on backend

I am using REST API to enable Paypal option on my site. To help the finance department for future taxation issues, I am trying to set up VAT rates based on the country.
After googling a bit and checking the documentation, found out Paypal's tools for setting the sales tax - https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/ProfileAndTools/#id08A9ED090WS
But after setting the value on the config page like this:
I still cant see any tax information while I am trying to buy some test items (I had to cover some parts of the screenshots :/ )
And after a successful test purchase, I get tax=0.00 in the IPN response.
Am I missing some points on the documentation about using the auto-tax calculator of Paypal? Even setting taxing data while sending request to Paypal does not let me see the taxing information and other details on the form.
PayPal's tax calculator is a free tool included with PayPal Payments Standard; it doesn't work with any of the API based products. You will need to calculate tax and pass it to PayPal in the API call.

paypal different pages - visa/debit payment not create account

Hi I have searched for this solution and although others have experienced the same problem I couldn't find a solution that works for my site.
My wordpress site mainly sells registrations/bookings for events and I'm using the s2Memberplugin to process the payments with Paypal. The problem is that when we direct the users/customers to the paypal page to complete the transaction which i want set up with the option of paying via credit/debit card if the user/customer doesn’t have (or doesn’t want to create one) a paypal account. That has been working perfectly except for when users/customers are using a variety of internet browser with various cookie settings so the user/customer get’s directed to a completely different page both in appearance and functionality from the page I want them to see. This incorrect page ‘requires’ users/customers to have or create a paypal account to make the payment, no option to pay via card is available. I tried calling paypal and of course they say it is something wrong with my site.
Over 20 days ago i lodged a support ticket with Paypal MTS (or whatever they are called) and of course no response. I have lodged about 5 more tickets and made about 10 more phone calls and they simply don't care about customers. That is clearly demonstrated when you ask to speak to the complaints section and they say "We don't have a complaints section'
Thanks very much, any assistance is greatly appreciated
I haven't been provided with any error codes, unfortunately - i did ask for them but nobody supplied them.
we just discovered that the payflow and IPN settings within my sites plugin were empty but i'm filling them in now but i have two questions:
The vendor, is that just my username for my paypal account? (why don't they just use the same terminology - confusing)
My s2Member plugin say's i'll need my IPN url (and then supplies a url, but whn i look at the IPN notification url within my paypal settings it's a totally different link. Should i be changing my paypal IPN url to that which is supplied by my s2Member plugin or am i getting two different url's confused?
Thanks for your help again mate.
If you're using Payments Standard this experience is cookie based as you mentioned. If you want to make sure the full credit card form shows up and allows people to pay with a credit card without creating an account you can use the Express Checkout API instead.
In your SetExpressCheckout request you just need to set SOLUTION=Sole and LANDINGPAGE=Billing.

How to display facebook payments in real currency with pay dialog?

I am using facebook pay dialog with action buy_items... i implemented the callback url and everything works correctly. In "payments_get_items" callback i set "price" property to (for example ) 5 (meaning 5 US dollars), but it seems that facebook understands this as 5 credits which is priced as $1.5 (or some other value different from $5). I don't want to display credits in my pay dialog but in client's local currency.
I am not sure how to do this..
Note: I didn't register company yet (may be this is the problem?)
As per the documentation: https://developers.facebook.com/docs/payments/callback/ price should be set in Facebook Credits:
The product cost based in credits. All product costs must be based in
credits. Integer value must be > 0.
Indeed using dev_purchase_params: {'oscif': true} will instruct Facebook to display the price in the user preferred currency instead of Facebook Credits. You don't need to register a company to get this working.
I think your issue is to convert USD to Facebook Credits (correct me if I'm wrong). Currently a Facebook credit is worth 0.10 USD, $1.00 USD = 10 Facebook Credits (http://www.facebook.com/help/?faq=204417036262972)
Note that you can also convert currencies to Facebook Credits and the opposite using this tool: http://developers.facebook.com/docs/payments/user_currency/ This will allow you to display the exact value in USD, EUR...

Google analytics for Paypal and Credit cart payments

I am working on Zen-Cart Site. Google Analytics is working fine but the problem I am having is in the ecommerce section of analytics. When I log into my analytics account and I go into the ecommerce section it only gives me sales that were generated through google checkout. If any sale was generated by credit card payment or by paypal that transaction is not registered in analytics. Now I really need to know which products are being sold through all transactions on the site and I'm not getting that info properly because it only tells me which products are being sold through google checkout. How can I do this?
most sites like paypal give you the ability to have the user be redirected back to a specific page after the sale takes place. On that page (usually a "thanks for buying my stuff" page), you need to put your global GA code, as well as some custom GA code to pass info like revenue, product id(s), etc...
You can learn more about what custom GA code to put on that page at this link:
http://code.google.com/intl/en/apis/analytics/docs/tracking/gaTrackingEcommerce.html