- 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
<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
<?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
<?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) |
OlderNewer