- hi
- hey whatsup
- hello morning are you there
- hello
- hi whatsup
- hello greetings how is it going
- good day how is it going
- hey good afternoon whatsup
- hi are you around
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: BC4WP > Customer Group Category Visibility | |
Description: Example plugin to hide BC categories based on customer group access | |
Author: BigCommerce | |
Version: 0.5 | |
*/ | |
// Set to -1 to not set a default customer group for visibility | |
// (using 0 will pull in the first customer group from BC) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: BC4WP: GeoIP Region Activation | |
* Plugin URI: http://www.bigcommerce.com/wordpress | |
* Description: Proof of concept for region activation by GeoIP | |
* Version: 0.5 | |
* Author: BigCommerce | |
* Author URI: http://www.bigcommerce.com | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function generateMarkup() { | |
const confirmation = document.querySelector('.orderConfirmation-section:last-of-type'); | |
confirmation.innerHTML += `<div id="shippingMap" > | |
<h2 id="mapHeader" style="margin-bottom: 15px;">We're sending your order to:</h3> | |
{{#if customer}} | |
<a href="/account.php?action=order_status" style="display:block;">Check my order status</a> | |
{{/if}} | |
<iframe id="map" width="450" height="300" ></iframe> | |
</div>`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function(win) { | |
'use strict'; | |
var listeners = [], | |
doc = win.document, | |
MutationObserver = win.MutationObserver || win.WebKitMutationObserver, | |
observer; | |
function ready(selector, fn) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "cab646e2-e893-4328-a909-93fee3db682c", | |
"name": "BigCommerce Cart to Checkout to Order (Token) - TEMPLATE", | |
"values": [ | |
{ | |
"key": "my-email", | |
"value": "TODO", | |
"description": { | |
"content": "", | |
"type": "text/plain" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { hooks } from '@bigcommerce/stencil-utils'; | |
import CatalogPage from './catalog'; | |
import $ from 'jquery'; | |
import FacetedSearch from './common/faceted-search'; | |
import InfiniteScroll from 'infinite-scroll'; | |
export default class Category extends CatalogPage { | |
loaded() { | |
function infiniteScroll() { | |
const elem = document.querySelector('.productGrid'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function(win) { | |
'use strict'; | |
var listeners = [], | |
doc = win.document, | |
MutationObserver = win.MutationObserver || win.WebKitMutationObserver, | |
observer; | |
function ready(selector, fn) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"quote_id": "sample_quote", | |
"messages": [], | |
"carrier_quotes": [ | |
{ | |
"carrier_info": { | |
"code": "usps_pitney_bowes", | |
"display_name": "USPS" | |
}, | |
"quotes": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[PHP] | |
;;;;;;;;;;;;;;;;;;; | |
; About php.ini ; | |
;;;;;;;;;;;;;;;;;;; | |
; PHP's initialization file, generally called php.ini, is responsible for | |
; configuring many of the aspects of PHP's behavior. | |
; PHP attempts to find and load this configuration from a number of locations. | |
; The following is a summary of its search order: |
NewerOlder