bigcommerce

Bigcommerce Templates file missing

浪尽此生 提交于 2019-12-08 10:01:04
问题 I am developing a template for bigcommerce site, where i want to show category list and some hard code links in the place of Page menu. Now what i do, just place this %%Panel.SideCategoryList%% in the upper navigation area. Which shows category list right. But the problem is that i didn't find this %%SNIPPET_SideCategoryList%% file. (In snippets folder exist a file with this name, but that file doesn't work even if i remove all contents of that file.) 回答1: I had a similar issue with SNIPPET

Valid BigCommerce auth token triggers 'Authorization Error' getting webhooks?

让人想犯罪 __ 提交于 2019-12-08 04:57:23
问题 I've gone through the two step oAuth process to get a long lived access token. I can validate that the access token is valid by successfully making several API calls with cURL... curl -XGET -H 'X-Auth-Client: xxxxxxxxxxxxxxxxxxx' -H 'X-Auth-Token: xxxxxxxxxxxxxxxxxxx' https://api.bigcommerce.com/stores/xxxxx/v2/products ...returns the store products as expected. Provisioning webhooks returns results as expected. However requesting the list of webhooks: curl -XGET -H 'X-Auth-Client:

integrating php with bigcommerce api

走远了吗. 提交于 2019-12-07 16:48:24
问题 I am a newbie to the whole concept of the Bigcommerce Api, but my php programming is good. I am having problems with identifying where to start exactly if i am going to integrate the php code that I may have created with the bigcommerce api, Where do my files go? How do they interact exactly... On the Bigcommerce site, they define what its all about, and provide the basic php codes. Google is my friend but she hasn't been able to help me with links for the whole "How to get started" part...

How to get option set rules in Bigcommerce

江枫思渺然 提交于 2019-12-07 11:36:27
问题 I want to create or update a Products using Option sets through API. When i adding the rules for Option set in Big commerce Site, how do get these option set rules through API? Thanks in Advance. 回答1: Unfortunately there is not a way to access option set rules through the API with Bigcommerce. However, you can simply run a script that gets each product with that option set applied to it and then iterate through those products to set the same rules on each one! 来源: https://stackoverflow.com

BigCommerce: How can I customize CategoryProductListing

一世执手 提交于 2019-12-07 10:17:11
问题 I'm trying to customize a product in the CategoryContent panel in BigCommerce. I want to change the markup for each product in the listing, but the markup for the entire product list is trapped in an uneditable blob :%%GLOBAL_CategoryProductListing%% (I'm getting really tired of these unchangable GLOBAL variables). Is there any way around this so that I can put my own markup on each product in the list. I'm also open, reluctantly, to reconstruct the product list using the API, but I'm not

Post carrier to Bigcommerce Shipments API

微笑、不失礼 提交于 2019-12-07 10:05:53
问题 When an item ships via FedEx I want the end customer to see a FedEx tracking number. How do I indicate the carrier? Do I put "FedEx" in the shipping_method field? 回答1: The shipping carrier can only be set during the initial POST and not with subsequent PUT requests. When creating a shipment and you want to denote the shipping carrier, you should send a POST request with a json body such as: [ { "id": 1, "order_id": 115, "customer_id": 0, "order_address_id": 16, "date_created": "Wed, 19 Dec

Remove an injected analytics library from browser memory in Bigcommerce?

元气小坏坏 提交于 2019-12-06 08:58:31
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 issue is that although they run the code, they do not own rights to put in 3rd party libraries like this

integrating php with bigcommerce api

允我心安 提交于 2019-12-05 21:47:29
I am a newbie to the whole concept of the Bigcommerce Api, but my php programming is good. I am having problems with identifying where to start exactly if i am going to integrate the php code that I may have created with the bigcommerce api, Where do my files go? How do they interact exactly... On the Bigcommerce site, they define what its all about, and provide the basic php codes. Google is my friend but she hasn't been able to help me with links for the whole "How to get started" part... Or maybe I am asking her the wrong questions. My ultimate task is to take data from an xml file and use

Post carrier to Bigcommerce Shipments API

穿精又带淫゛_ 提交于 2019-12-05 19:07:34
When an item ships via FedEx I want the end customer to see a FedEx tracking number. How do I indicate the carrier? Do I put "FedEx" in the shipping_method field? The shipping carrier can only be set during the initial POST and not with subsequent PUT requests. When creating a shipment and you want to denote the shipping carrier, you should send a POST request with a json body such as: [ { "id": 1, "order_id": 115, "customer_id": 0, "order_address_id": 16, "date_created": "Wed, 19 Dec 2012 17:17:10 +0000", "tracking_number": "111222333444", "shipping_method": "None", "shipping_provider":

BigCommerce: How can I customize CategoryProductListing

霸气de小男生 提交于 2019-12-05 16:00:56
I'm trying to customize a product in the CategoryContent panel in BigCommerce. I want to change the markup for each product in the listing, but the markup for the entire product list is trapped in an uneditable blob :%%GLOBAL_CategoryProductListing%% (I'm getting really tired of these unchangable GLOBAL variables). Is there any way around this so that I can put my own markup on each product in the list. I'm also open, reluctantly, to reconstruct the product list using the API, but I'm not sure how I can access the API from within a BigCommerce store. Is that possible? I was able to identify