This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Moving Path Handles</title> | |
<script type="text/javascript" src="http://paperjs.org/static/js/paper.js"></script> | |
<script type="text/paperscript" canvas="canvas"> | |
var handle; | |
// Create a circle shaped path at the center of the view, | |
// with a radius of 100: |
This file contains 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
<!-- functions.php --> | |
<?php | |
add_action('wp_enqueue_scripts', function () { | |
wp_enqueue_script('main', plugins_url( 'main.js', __FILE__ ), ['jquery'], '1'); | |
wp_localize_script('main', 'php_vars', [ | |
'ajax_url' => admin_url('admin-ajax.php'), | |
'ajax_nonce' => wp_create_nonce('horses-outsmarting-sharks'), | |
]); | |
}); |
This file contains 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
<!-- theme.liquid - add asset before </body> Make sure the js file exists --> | |
{{ 'bcpo-collection-variants.js' | asset_url | script_tag }} | |
<!-- sections/collection-template.liquid - inside .products --> | |
<script style="display: none"> | |
var bcpo_qv_products = []; | |
</script> | |
<!-- snippets/product-grid-item.liquid - add class to .box.product --> | |
id-{{ product.id }} |
This file contains 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
<!-- | |
Below are some CSS snippets that you can put in your theme. | |
To add them, navigate to your Shopify admin page. | |
Click Online Store | |
Click the Actions dropdown | |
Choose Edit code. This will take you to a code editor. | |
We recommend copying the code snippet to your theme.liquid file between the <head> and </head> tags. | |
--> |