Jump to content

SnipWire - Snipcart integration for ProcessWire


Gadgetto

Recommended Posts

I am using the SnipWire module which essentially seems to work fine so far.

The following is what I need, using breadcrumbs to illustrate:

shop > product category > products

In the SnipWire demo content, clicking on "categories" in the nav I get categories, but those are categories of posts, not products.

Clicking on "Snipcart Shop" in the nav I get products, no categories.

I actually have created my own work-around with pages and subpages, copying most content of the templates snipcart-shop.php and snipcart-product.php (so to not touch the original files) which seems to work fine for the most part – more to that later ?

However, in the product template you can choose "The categories for this product". I guess that would make more sense, maybe even be beneficial for SEO and whatnot. But when I choose any given demo category, it's not listed in that category. Like I said, that only works for posts.

The category template fetches the posts like so:

    $posts = pages()->get('/blog/')->children("categories=$page, limit=10");

Just changing this line of code to fetch its children instead is probably not the most elegant solution – since the products can be assigned to a category, I assume there must be a way to make use of that. 

Thanks for help!

Edited by kongondo
Merged your thread into SnipWire's support forum.
Link to comment
Share on other sites

  • 2 weeks later...
On 4/24/2020 at 11:19 AM, fruid said:

However, in the product template you can choose "The categories for this product". I guess that would make more sense, maybe even be beneficial for SEO and whatnot. But when I choose any given demo category, it's not listed in that category. Like I said, that only works for posts.

The category template fetches the posts like so:


    $posts = pages()->get('/blog/')->children("categories=$page, limit=10");

Just changing this line of code to fetch its children instead is probably not the most elegant solution – since the products can be assigned to a category, I assume there must be a way to make use of that.

SnipWire provides sample templates to demonstrate how shop products could be rendered and is only thought as a starting point. Using the "Regular" site profile for displaying shop products within blog categories would not make sense as the blog articles are formatted very differently.

You would need to write your own category template for listing shop products within categories.

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...

I've played around with this module, thanks @Gadgetto, really impressive work. The demo was up and running in no time including registration etc… and I'be been looking for a feature-rich PW e-commerce solution for quite a while.

One question though: is it possible to link the Snipcart customer to a Processwire user?
I'm thinking of access control for membership sites.
Is there an easy way to add/remove a role depending on the subscription status?

Thanks again

Link to comment
Share on other sites

19 hours ago, Jozsef said:

One question though: is it possible to link the Snipcart customer to a Processwire user?
I'm thinking of access control for membership sites.

This is possible by using SnipWires built in hookable event handler methods!

All hookable event handler methods will return an array containing payload Snipcart sent to your endpoint. An "order completed" event also holds the detailed customers data, which can be used to generate/update a PW user.

How to use the hookable event handler methods (sample):

$webhooks->addHookAfter('handleOrderCompleted', function($event) {
    $payload = $event->return;

    $userRaw = $payload['user']; // <-- will hold the neccessary data for creating a PW user

    // ... your code here ...

}); 

PLEASE NOTE: those hooks will currently only work when placed in init.php or init() or ready() module methods!

Here is a full sample of a payload content you will get when an order is completed (look at the "user" part!):

Spoiler

{
    "discounts": [],
    "items": [
        {
            "paymentSchedule": {
                "interval": 0,
                "intervalCount": 1,
                "trialPeriodInDays": null,
                "startsOn": "2020-05-15T00:00:00Z"
            },
            "pausingAction": "None",
            "cancellationAction": "None",
            "token": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "name": "Big Schlemel Stout",
            "price": 69.9800,
            "quantity": 2,
            "fileGuid": null,
            "url": "http://pw.bitego.com/snipcart-shop/big-schlemel-stout/",
            "id": "1712",
            "initialData": "",
            "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
            "categories": [
                "Beer"
            ],
            "totalPriceWithoutTaxes": 116.63,
            "weight": null,
            "image": "http://pw.bitego.com/site/assets/files/1712/beer1.65x65-hidpi.jpg",
            "originalPrice": null,
            "uniqueId": "ab692461-fce5-4a1a-8074-d152053730d0",
            "stackable": true,
            "minQuantity": null,
            "maxQuantity": null,
            "addedOn": "2019-11-09T06:38:34Z",
            "modificationDate": "2019-11-09T06:38:39Z",
            "shippable": true,
            "taxable": true,
            "duplicatable": false,
            "width": null,
            "height": null,
            "length": null,
            "metadata": {
                "id": 1712,
                "created": 1563363120,
                "modified": 1571153780,
                "published": 1563363120,
                "created_users_id": 41,
                "modified_users_id": 41
            },
            "totalPrice": 139.96,
            "totalWeight": 0.0,
            "taxes": [
                "20% VAT"
            ],
            "alternatePrices": {},
            "customFields": [],
            "unitPrice": 69.98,
            "hasDimensions": false,
            "hasTaxesIncluded": true,
            "totalPriceWithoutDiscountsAndTaxes": 116.63
        },
        {
            "paymentSchedule": {
                "interval": 0,
                "intervalCount": 1,
                "trialPeriodInDays": null,
                "startsOn": "2020-05-15T00:00:00Z"
            },
            "pausingAction": "None",
            "cancellationAction": "None",
            "token": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "name": "Festish Wet Warmer",
            "price": 19.9000,
            "quantity": 3,
            "fileGuid": null,
            "url": "http://pw.bitego.com/snipcart-shop/festish-wet-warmer/",
            "id": "1713",
            "initialData": "",
            "description": "Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.",
            "categories": [
                "Beer"
            ],
            "totalPriceWithoutTaxes": 54.27,
            "weight": null,
            "image": "http://pw.bitego.com/site/assets/files/1713/beer2.65x65-hidpi.jpg",
            "originalPrice": null,
            "uniqueId": "7978ca42-244f-408d-b2cd-5f91fa22a175",
            "stackable": true,
            "minQuantity": null,
            "maxQuantity": null,
            "addedOn": "2019-11-09T06:38:25Z",
            "modificationDate": "2019-11-09T06:38:28Z",
            "shippable": true,
            "taxable": true,
            "duplicatable": false,
            "width": null,
            "height": null,
            "length": null,
            "metadata": {
                "id": 1713,
                "created": 1563363120,
                "modified": 1571153791,
                "published": 1563363120,
                "created_users_id": 41,
                "modified_users_id": 41
            },
            "totalPrice": 59.70,
            "totalWeight": 0.0,
            "taxes": [
                "10% VAT"
            ],
            "alternatePrices": {},
            "customFields": [],
            "unitPrice": 19.90,
            "hasDimensions": false,
            "hasTaxesIncluded": true,
            "totalPriceWithoutDiscountsAndTaxes": 54.27
        }
    ],
    "plans": [],
    "refunds": [
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 55.00,
            "comment": "hkfghgf",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "5e2c1b82-2dcc-4e37-a79e-308891ae5d84",
            "creationDate": "2019-11-14T13:23:35.897Z",
            "modificationDate": "2019-11-14T13:23:35.897Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 10.00,
            "comment": "Test 1",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "aa075db5-bcf9-4414-b6d6-e4a994ad81fb",
            "creationDate": "2019-11-14T13:25:18.233Z",
            "modificationDate": "2019-11-14T13:25:18.233Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 5.00,
            "comment": "This is a test refund",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "30544e17-b3a2-4368-afde-686eb8c13023",
            "creationDate": "2019-11-14T17:46:28.127Z",
            "modificationDate": "2019-11-14T17:46:28.127Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 8.00,
            "comment": "ljghkjgkjgh",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "0fc4aa6a-aedb-49aa-aa4f-916c0dfce9ef",
            "creationDate": "2019-11-14T17:55:08.523Z",
            "modificationDate": "2019-11-14T17:55:08.523Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 3.00,
            "comment": "asdfasdfasdf",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "77d671f6-cb6c-4bee-9f37-324223bd1763",
            "creationDate": "2019-11-14T17:59:35.63Z",
            "modificationDate": "2019-11-14T17:59:35.63Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 8.00,
            "comment": "sdfgsdfg",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "bc7fdf58-1b5e-445e-b763-d816a381848b",
            "creationDate": "2019-11-14T18:19:18.16Z",
            "modificationDate": "2019-11-14T18:19:18.16Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 12.00,
            "comment": "kjgjhg",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "5b2198da-479d-44be-be62-2bf1de3b8ddb",
            "creationDate": "2019-11-14T18:25:14.68Z",
            "modificationDate": "2019-11-14T18:25:14.68Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 2.00,
            "comment": "jjj",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "4d717301-10a7-4563-987b-d0fff6a39783",
            "creationDate": "2019-11-14T18:34:19.937Z",
            "modificationDate": "2019-11-14T18:34:19.937Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 7.00,
            "comment": "jkjgh",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "ffd6588d-ef74-448b-9bc2-4e42fd331dcd",
            "creationDate": "2019-11-14T18:46:10.32Z",
            "modificationDate": "2019-11-14T18:46:10.32Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 2.00,
            "comment": "test",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "259df988-16f6-4aae-9e23-c43117141206",
            "creationDate": "2019-11-15T07:59:14.907Z",
            "modificationDate": "2019-11-15T07:59:14.907Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 4.00,
            "comment": "ccc",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "82bc289e-8358-4506-a7d3-1377dc530e0e",
            "creationDate": "2019-11-15T08:18:56.78Z",
            "modificationDate": "2019-11-15T08:18:56.78Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 2.00,
            "comment": "gg",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "ece5fecd-d4bc-4593-acc6-e9a9ea5fdfc8",
            "creationDate": "2019-11-15T08:20:13.08Z",
            "modificationDate": "2019-11-15T08:20:13.08Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 1.00,
            "comment": "nnn",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "ea239603-3fcc-40cd-9b56-b3cfd76d7593",
            "creationDate": "2019-11-15T08:25:29.087Z",
            "modificationDate": "2019-11-15T08:25:29.087Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 4.00,
            "comment": "",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "66609675-cbda-4ed6-bcd2-f68a69ec50ac",
            "creationDate": "2019-11-15T08:26:01.16Z",
            "modificationDate": "2019-11-15T08:26:01.16Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 10.00,
            "comment": "This is a internal note",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "52d72d47-e6db-4f2d-8469-69a0aed854d7",
            "creationDate": "2019-11-15T11:34:50.37Z",
            "modificationDate": "2019-11-15T11:34:50.37Z"
        },
        {
            "orderToken": "7043e043-bb47-42c4-b7a5-646944c36e10",
            "amount": 10.00,
            "comment": "This is an internal note",
            "notifyCustomer": false,
            "refundedByPaymentGateway": true,
            "id": "fc9ff248-5aa6-4b47-82e4-7d4468046e47",
            "creationDate": "2019-11-15T12:26:49.1Z",
            "modificationDate": "2019-11-15T12:26:49.1Z"
        }
    ],
    "taxes": [
        {
            "taxName": "20% VAT",
            "taxRate": 0.2000000000,
            "amount": 23.33,
            "numberForInvoice": "",
            "includedInPrice": true,
            "appliesOnShipping": false,
            "discountInducedAmountVariation": 0.00
        },
        {
            "taxName": "10% VAT",
            "taxRate": 0.1000000000,
            "amount": 5.43,
            "numberForInvoice": "",
            "includedInPrice": true,
            "appliesOnShipping": false,
            "discountInducedAmountVariation": 0.00
        }
    ],
    "user": {
        "id": "990c458f-36bd-46fa-a946-3141146c42f3",
        "email": "john.doe@gmail.com",
        "mode": "Test",
        "statistics": {
            "ordersCount": 0,
            "ordersAmount": null,
            "subscriptionsCount": 0
        },
        "creationDate": "2019-05-15T19:17:21.52Z",
        "billingAddressFirstName": "John",
        "billingAddressName": "Doe",
        "billingAddressCompanyName": "",
        "billingAddressAddress1": "Noname Street 7",
        "billingAddressAddress2": "",
        "billingAddressCity": "Nowhere",
        "billingAddressCountry": "AT",
        "billingAddressProvince": "",
        "billingAddressPostalCode": "1000",
        "billingAddressPhone": "1234567890",
        "shippingAddressFirstName": "John",
        "shippingAddressName": "Doe",
        "shippingAddressCompanyName": "",
        "shippingAddressAddress1": "Noname Street 7",
        "shippingAddressAddress2": "",
        "shippingAddressCity": "Nowhere",
        "shippingAddressCountry": "AT",
        "shippingAddressProvince": "",
        "shippingAddressPostalCode": "1000",
        "shippingAddressPhone": "1234567890",
        "shippingAddressSameAsBilling": true,
        "status": "Confirmed",
        "sessionToken": null,
        "gravatarUrl": null,
        "billingAddress": {
            "fullName": "John Doe",
            "firstName": "John",
            "name": "Doe",
            "company": "",
            "address1": "Noname Street 7",
            "address2": "",
            "fullAddress": "Noname Street 7",
            "city": "Nowhere",
            "country": "AT",
            "postalCode": "1000",
            "province": "",
            "phone": "1234567890",
            "vatNumber": null
        },
        "shippingAddress": {
            "fullName": "John Doe",
            "firstName": "John",
            "name": "Doe",
            "company": "",
            "address1": "Noname Street 7",
            "address2": "",
            "fullAddress": "Noname Street 7",
            "city": "Nowhere",
            "country": "AT",
            "postalCode": "1000",
            "province": "",
            "phone": "1234567890",
            "vatNumber": null
        }
    },
    "token": "7043e043-bb47-42c4-b7a5-646944c36e10",
    "isRecurringOrder": false,
    "parentToken": null,
    "parentInvoiceNumber": null,
    "subscriptionId": null,
    "currency": "eur",
    "creationDate": "2019-11-09T06:38:25Z",
    "modificationDate": "2019-12-27T18:38:17.39Z",
    "recoveredFromCampaignId": null,
    "status": "Pending",
    "paymentStatus": "Paid",
    "email": "john.doe@gmail.com",
    "willBePaidLater": false,
    "billingAddressFirstName": "John",
    "billingAddressName": "Doe",
    "billingAddressCompanyName": "",
    "billingAddressAddress1": "Noname Street 7",
    "billingAddressAddress2": "",
    "billingAddressCity": "Nowhere",
    "billingAddressCountry": "AT",
    "billingAddressProvince": "",
    "billingAddressPostalCode": "1000",
    "billingAddressPhone": "1234567890",
    "billingAddress": {
        "fullName": "John Doe",
        "firstName": "John",
        "name": "Doe",
        "company": "",
        "address1": "Noname Street 7",
        "address2": "",
        "fullAddress": "Noname Street 7",
        "city": "Nowhere",
        "country": "AT",
        "postalCode": "1000",
        "province": "",
        "phone": "1234567890",
        "vatNumber": null
    },
    "shippingAddressFirstName": "John",
    "shippingAddressName": "Doe",
    "shippingAddressCompanyName": "",
    "shippingAddressAddress1": "Noname Street 7",
    "shippingAddressAddress2": "",
    "shippingAddressCity": "Nowhere",
    "shippingAddressCountry": "AT",
    "shippingAddressProvince": "",
    "shippingAddressPostalCode": "1000",
    "shippingAddressPhone": "1234567890",
    "shippingAddress": {
        "fullName": "John Doe",
        "firstName": "John",
        "name": "Doe",
        "company": "",
        "address1": "Noname Street 7",
        "address2": "",
        "fullAddress": "Noname Street 7",
        "city": "Nowhere",
        "country": "AT",
        "postalCode": "1000",
        "province": "",
        "phone": "1234567890",
        "vatNumber": null
    },
    "shippingAddressSameAsBilling": true,
    "creditCardLast4Digits": "4242",
    "trackingNumber": "",
    "trackingUrl": "",
    "shippingFees": 20.00,
    "shippingProvider": null,
    "shippingMethod": "Express Delivery",
    "cardHolderName": "John Doe",
    "paymentMethod": "CreditCard",
    "notes": null,
    "customFieldsJson": "[]",
    "userId": "990c458f-36bd-46fa-a946-3141146c42f3",
    "completionDate": "2019-11-09T06:41:12Z",
    "cardType": "Amex",
    "paymentGatewayUsed": "Test",
    "paymentDetails": {
        "iconUrl": null,
        "display": null,
        "instructions": null
    },
    "taxProvider": "Webhooks",
    "lang": "en",
    "refundsAmount": 143.00,
    "adjustedAmount": 76.66,
    "finalGrandTotal": 219.66,
    "totalNumberOfItems": 0,
    "invoiceNumber": "SNIP-1062",
    "billingAddressComplete": true,
    "shippingAddressComplete": true,
    "shippingMethodComplete": true,
    "savedAmount": 0.0,
    "subtotal": 199.66,
    "baseTotal": 219.66,
    "itemsTotal": 199.66,
    "totalPriceWithoutDiscountsAndTaxes": 170.90,
    "taxableTotal": 199.66,
    "grandTotal": 219.66,
    "total": 219.66,
    "totalWeight": 0.0,
    "totalRebateRate": 0.0,
    "customFields": [],
    "shippingEnabled": true,
    "numberOfItemsInOrder": 5,
    "paymentTransactionId": "",
    "metadata": {},
    "taxesTotal": 0.0,
    "itemsCount": 5,
    "summary": {
        "subtotal": 199.66,
        "taxableTotal": 199.66,
        "total": 219.66,
        "payableNow": 219.66,
        "paymentMethod": "CreditCard",
        "taxes": [
            {
                "taxId": null,
                "name": "20% VAT",
                "rate": 0.2000000000,
                "amount": 23.33,
                "numberForInvoice": "",
                "includedInPrice": false,
                "appliesOnShipping": false,
                "discountInducedAmountVariation": 0.00
            },
            {
                "taxId": null,
                "name": "10% VAT",
                "rate": 0.1000000000,
                "amount": 5.43,
                "numberForInvoice": "",
                "includedInPrice": false,
                "appliesOnShipping": false,
                "discountInducedAmountVariation": 0.00
            }
        ],
        "discountInducedTaxesVariation": 0.00,
        "adjustedTotal": 76.66,
        "shipping": null
    },
    "ipAddress": "99.17.43.199",
    "userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36",
    "hasSubscriptions": false
}

 

 

Link to comment
Share on other sites

  • 2 weeks later...
On 5/27/2020 at 6:35 PM, LostKobrakai said:

I'm wondering though if there is support for product variants like sizes?

This is not yet implemented, sorry. But it’s on my list and it will be the next feature to be added.

@LostKobrakai @fruid Sorry for my stupidity, this is already implemented in a rudimentary way. You need to add the preinstalled field snipcart_item_custom_fields to your products template. This is a textarea where you can add custom configuration options for your product by using the data-item-custom*-* syntax described here: https://docs.snipcart.com/v2/configuration/custom-fields#product-custom-fields

Sample code:

data-item-custom1-name="Print label"
data-item-custom1-required="true"
data-item-custom2-name="Size"
data-item-custom2-options="Small|Medium|Large"
data-item-custom2-value="Medium"
data-item-custom3-name="Gift"
data-item-custom3-options="true|false"

As I said - this is a rudimentary way to add options to your products. As this method only allows to select/change product options after they are added to the cart, I need to find a reliable way to generate those data-item-custom*-* tags from regular ProcessWire fields so they can be selected directly on the product detail page.

  • Like 4
Link to comment
Share on other sites

  • 1 month later...

is it possible to put the custom fields on the product page instead of the snipwire-cart?

I want the users to select product options right on the product page, however the custom-fields-feature of snipwire seem to only allow adding the fields to the cart and so they are not very prominent and might fall through in the checkout for some users.

EDIT: I read above that it's already being considered, looking forward to it!

Edited by fruid
Link to comment
Share on other sites

UPDATE 2020-07-03

SnipWire 0.8.7 (beta) released!

This update fixes some small bugs and adds an indicator for TEST mode:

  • Added ProcessWire notice to flag SnipWire TEST mode
  • Updated exchangerates API to handle unsupported currencies
  • All modules and class files are now using ProcessWire's classLoader
  • Fixed badges display when no refunds possible (in order details - refunds form)
  • Fixed a page select problem with custom cart fields
  • Like 3
Link to comment
Share on other sites

  • 3 weeks later...

Hello @Gadgetto, thank you so much for this brilliant integration. It looks superb!

I got this dreadful message in my testing:

We have not been able to validate your order. Looks like some product prices might have changed since you added them to the cart. Please review your order and try again.

I saw the earlier discussion but that didn't help. As you specified in the module setup, Domain Setup is Snipcart's domain configuration. Here they describe what it does, but what can I put when I am testing it locally?

I guess this is not correct:1385818789_Screenshot2020-07-23at11_11_25.thumb.png.e97d58baea849c06be19444eb71190d5.png

Looking forward to fire up the shop for good! Thank you!

Link to comment
Share on other sites

@michelangelo I don't think you can test an integration like this on localhost as it is not publicly available.
Snipcart validates your products by reading the values from your website but in this case they try to connect to localhost.

I'd advise you to setup a staging server somewhere, maybe on a subdomain and it should work.

  • Like 2
Link to comment
Share on other sites

@d'Hinnisdaël I am working on this with ngrok right now. I am still missing something though. What would the workflow for this be?

I am trying:

1. Set up processwire and snipcart

2. Open up ngrok on port 8888 which has access to many things but from there I can reach /snipcartTest/snipcart-shop is accessible. (Could this be the problem?)

3. Copy the ngrok generated url and paste in Snipcart domain setup.

I can imagine that Snipcart cannot find my snipcart-shop page because my ngrok url is so global. In the domain setup it takes only the base domain (e.g. 1231231.ngrok.io)

Link to comment
Share on other sites

You don't need to fiddle with the ports really. Pass ngrok your local origin (localhost:8888) and then it returns an https domain without a port, i.e. on port 80. Paste that portless domain into Snipcart. That should do it. If it doesn't, it might be a problem with how you declare your product data.

  • Like 1
Link to comment
Share on other sites

Okay, it seems clear. I am just using the SnipWire Module, I have no idea, whether I need to configure more than just the required steps in the module...

Update:
I saw that the default products from processwire are not included in the Snipwire db. I added them, but it still doesn't work.

Edited by michelangelo
I tried more things
Link to comment
Share on other sites

1 hour ago, michelangelo said:

Okay, it seems clear. I am just using the SnipWire Module, I have no idea, whether I need to configure more than just the required steps in the module...

Update:
I saw that the default products from processwire are not included in the Snipwire db. I added them, but it still doesn't work.

You  need to go to your Snipcart dashboard: https://app.snipcart.com/dashboard and work through the setup steps there. After this configure SnipWire and it should work.

Especially the "Configure your domains" part is important to tell Snipcart where it can find your product pages to allow the Snipcart crawler to verify your products.

image.thumb.png.233de7916d9753b2bca5c36318465b87.png

  • Like 1
Link to comment
Share on other sites

1 hour ago, michelangelo said:

I saw that the default products from processwire are not included in the Snipwire db.

The products from your product pages will be added to the Snipcart dashboard when you save a product page within ProcessWire. But this will only work if your site is reachable from web. So within a MAMP system it doesn't work unless you provide a way to redirect requests to your internal MAMP server.

  • Like 1
Link to comment
Share on other sites

Hello again @Gadgetto,
I managed to make it work on my dev server, unfortunately after a lot of hassle because Duplicator and Site Export didn't work (Profile not found error). Anyways, now it works.

I was wondering if I can implement Paypal payments? Is this something I need to implement or it is not yet in the module?

Thanks.
 

Link to comment
Share on other sites

31 minutes ago, michelangelo said:

I was wondering if I can implement Paypal payments? Is this something I need to implement or it is not yet in the module?

PayPal is directly supported by Snipcart. You need to have a look into your Snipcart dashboard under „Payment Gateway“.

  • Like 1
Link to comment
Share on other sites

7 minutes ago, michelangelo said:

Aha, thanks, so it is not part of the module and I don't have to tinker with that.

Thank you again, great job on the module integration!

Yep!

And thanks for your kind words! I have many ideas for upcoming features and to improve the quality of SnipWire.

Link to comment
Share on other sites

Haha, no worries. I am really getting into Snipcart and SnipWire. I hope it's okay to ask a few more questions the next few days.

Actually, I got one now because I am using Polish Złoty which is not parsed correctly so I get this message:

88978051_Screenshot2020-07-24at20_33_51.png.7d24379969e47bd204ddaa8c4cab283c.png2119891500_Screenshot2020-07-24at20_34_12.png.b0dc9b89746444cc6c6a07e0021ccd89.png

I suppose that this comes from the Snipcart API, but then there it is formatted well... Is it because it doesn't have a currency symbol but just letters (pl)?

Link to comment
Share on other sites

On 7/25/2020 at 8:43 PM, bernhard said:

Is there any demo or live project running SnipWire yet? ? 

A demo would be a bit tricky as it would require a valid Snipcart account. No final live project on my side so far ...

I'm sure there are some developers here which already have a Snipcart shop to show. ?

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...