bigcommerce

Apple Pay on Blueprint themes

痴心易碎 提交于 2019-12-24 06:48:11
问题 Is a theme modification necessary for blueprint themes in order to properly provide support for apple pay or is it provided through the %%GLOBAL_AdditionalCheckoutButtons%% variable? 回答1: To get the apple pay button with white bg/black text , you need to add the following css: .apple-pay-checkout-button { background-image: -webkit-named-image(apple-pay-logo-black); background-color: white; } For black text/white bg : .apple-pay-checkout-button { background-image: -webkit-named-image(apple-pay

Is it possible to “capture funds” for authorized credit card transactions via the API?

别来无恙 提交于 2019-12-24 00:16:09
问题 It is possible to set up your Bigcommerce integration with a credit card processor (e.g. Braintree) such that the payment is only authorized by default and a second step is required to capture the funds. Bigcommerece leaves these transaction in an "awaiting payment" status and provides UI to initiate the capture of said funds via the admin interface. Is there a way to capture funds on a specific transaction using the API? 回答1: Not as of today. You cannot capture funds via API. 回答2: Not

How to send products with text options to create order bigcommerce API?

倾然丶 夕夏残阳落幕 提交于 2019-12-23 20:41:46
问题 I'm having trouble creating an order to bigcommerce for products with text options, the api gives these error: [ { "status": 400, "message": "The options of one or more products are invalid.", "details": { "errors": [ { "type": "InvalidProductOptionValue", "product": { "id": 3190, "name": "Esprit Knit Tech Gloves.", "product_option": { "id": 445, "option_id": 47, "display_name": "Name To Print", "value": "moni test", "url": "https:\/\/api.bigcommerce.com\/stores\/xxxxxx\/v2\/products\/3190\

Remove an injected analytics library from browser memory in Bigcommerce?

爷,独闯天下 提交于 2019-12-22 16:45:54
问题 How can we remove this script injector system and clear functions from memory? Briefing) Recently the malfeasants at Bigcommerce created an analytics injector (JS) under guise of "monitoring" that is locked in a global variable. They have pushed it to all their 50,000 front facing stores without consent from any OP's. This puts in 2 JS libraries and sets up (plain code) triggers for them to track customer, behavior, and store plans throwing data to their shared 3rd party analytics bay. The

Bigcommerce webhooks not working

好久不见. 提交于 2019-12-21 21:39:59
问题 I have generated access_token and subscribed to webhooks successfully as guided here http://developer.bigcommerce.com/docs/api/webhooks/quickstart. Verified that webhooks are active and destination url is also correct with following request- curl -XGET -H 'X-Auth-Client: [client_id]' -H 'X-Auth-Token: [auth_token]' https://hooks-beta.bigcommerce.com/producer/store/[store_key] However I am not receiving triggers for subscribed events. Is there anything else that I have to do to listen to

Get image url from BigCommerce API with PHP

点点圈 提交于 2019-12-20 06:37:17
问题 Can anybody help me to retrieve Image URL for a BigCommerce Product in PHP? I tried with Bigcommerce::getProductImages($product->id); but it doesn't helps. I hope the API gets updated in latest version. Pls suggest an exact solution. Thanks in advance. 回答1: From the code, it looks like the getProductImages has not been implemented. I added a quick patch. Use this pull request if it has not been merged yet (https://github.com/bigcommerce/bigcommerce-api-php/pull/61) The code looks like this -

Bigcommerce Stencil Common Product Card Model has_options attribute not working

人盡茶涼 提交于 2019-12-14 03:19:21
问题 According to the documentation, there is a has_options attribute on the Common Product Card Model that should return a boolean showing whether or not the product has options. However, this value is returning false for all of my products, even though they have options. For example, if I access the homepage in debug mode via this url: http://localhost:3000/?debug=context One of the products under the featured products section is: { "id": 114, "name": "Product Name", "url": "http://www.example

BigCommerce API issue with page limit

你离开我真会死。 提交于 2019-12-14 02:38:22
问题 I am working on a task in which i need to fetch bigcommerce products check for product url's to generate sitemap.xml file Actually there are 180000 products on site so i will need to create multiple sitemap xml files and a single index (sitemap.xml) file. I completed all script to do that, i am grouping 50000 url's in every sitemap xml files created. When i run it, once it was executed correctly and created 4 sitemap files. all was worked fine. But now i am unable to execute it coz after

Creating a custom page template in stencil for bigcommerce

余生长醉 提交于 2019-12-14 02:09:52
问题 I've installed stencil and all its dependencies locally and was able to create a couple custom component but I can't figure out how to set a custom template for a custom "webpage" in bigcommerce.I thought it would be a matter of creating a custom page template ( custom-page.html ) in /templates/pages/ but that doesn't seem to hook it up. In the legacy version, you were able to select a page template from a dropdown. Is it a matter of uploading the theme via webDAV first? Is there a JS module

BigCommerce API. What is the syntax of an url string that would allow me to download orders in xml?

混江龙づ霸主 提交于 2019-12-13 09:54:37
问题 BigCommerce API. What is the syntax of an url string that would allow me to download orders in xml? Can I embed the login credentials in the string and post as https get or do I need to post them as xml? I have tried different variations of username, api_key, api_toke and inserted them in the url string but I keep getting error messages. 回答1: To answer your question: No, you cannot send your credentials in the URL. It's doubtful that such a thing would retain the PCI compliance of your store.