问题标签 [bigcommerce]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 用 // 替换 href http:// 的脚本
我使用的电子商务平台 bigcommerce 使用全局变量来动态插入数据。我无权访问操纵变量服务器端所需的 php。
除非在结帐时,所有变量都呈现 http: 链接,我想要一个脚本来使它们相对,所以如果有人想通过 https 浏览:所有菜单和类别链接都将遵守。
我目前正在使用它来更正我的主导航,但这显然不是最佳解决方案,并且生成的链接的其余部分仍然是 http
bigcommerce - How to change custom panel text in bigcommerce store?
I have login with Bigcommerce control panel and try this for manage custom panel under bigcommerce store --
but no there is no way to change the text under this.
winhttp - BigCommerce API。如何使用 WInHTTP 进行连接
如何使用 WinHTTP 连接到 BigCommerce API?
php - BigCommerce api循环中的多个商店
我目前正在创建一个需要遍历多个 BigCommerce 商店的网络应用程序。不幸的是,在使用 BigCommerce API 时,我无法让它循环。
我正在使用来自 GitHub 的最新版本的 BC API PHP 库(使用命名空间的库),请参阅下面的代码:
预期的输出应该是:
我实际上得到的是:
我之前使用过 API 几次,但每次/每个项目只连接到一个商店。在连接到 foreach 循环中的下一个商店之前,我是否需要关闭连接或其他东西?
非常感谢所有帮助!
bigcommerce - BigCommerce JavaScript API
在 BigCommerce 中,我可以使用 JavaScript 访问当前客户的记录吗?
我想根据当前客户所在的客户群更改产品页面上的某些内容。
bigcommerce - Bigcommerce - Side Cart Total 始终显示 $29.00
我遇到了 BigCommerce 主题的一些问题。它是工作主题的精确副本,但在新站点上,无论购物车中有什么,迷你购物车/购物车始终显示 29.00 美元(站点也设置为使用英镑)
问题在于 %%LNG_SideCartTotalCost%%。
奇怪的是,我检查了语言文件(通过 url),这个变量的文本应该是:
然而它的出现是:
我不确定这是谁改变的(该网站是一个客户,其他开发人员已经完成了工作)
有人将如何在 BigCommerce 中更改此语言变量?我的印象是你只能编辑主题,不能编辑代码?
那么,关于如何解决这个问题的任何想法?
谢谢!
api - 在 BigCommerce 中创建货件时使用哪种日期格式
我正在尝试为BigCommerce
使用中的订单创建新货件BigCommerce API
。
我正在传递这样的所有参数:
我得到的回应是:
谁能告诉我传递“ order_date
”参数值的正确方法是什么?
html - 如何在此处获取页眉,与页脚相同的样式和全宽
我现在正在玩 bigcommerce,我正在尝试为页眉重新创建页脚结构。你可以在这里看到:
http://thespeedfactory.mybigcommerce.com/
如果你看一下页脚,它是全宽的,但内容是它的中心。
我希望标题完全相同,黑色带有粉红色/白色高光。
我尝试过在 bigcommerce 中移动结构,但我在让它完成并查看我想要的方式时遇到了大脑故障,尽管我知道它是基于容器和利润的。
任何指导表示赞赏。
bigcommerce - 以反向日期顺序获取 bigcommerce 订单
使用 PHP Bigcommerce 库,我想获取我所有订单的列表,最新订单位于顶部。这是我用来获取订单的:
它列出了从最旧到最新的所有订单。在 API 文档中,它说有一个名为“date_created”的订单过滤器:
“如果您的应用程序依赖于新订单的到来,您可能需要同时检查 date_created 和 status 字段(或 status_id)。”
我试过像这样通过过滤器传递日期:
以及其他格式,例如 01-04-13 等。但它们都没有为我返回任何订单。
bigcommerce - Creating a Bigcommerce Shipment
Using the Bigcommerce PHP library I want to create a new shipment for a specific order.
It is returning: Uncaught Client Error (400): The required field 'order_product_id' was not supplied.
The Bigcommerce console says to pass items like this: [{"order_product_id":3,"quantity":1}]
I have tried passing JSON objects and stdClass objects to the items field, but none of them are working for me. Is there a more efficient way to create a shipment?