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 | |
$settings = array( | |
'store-domain' => 'YOUR SHOPIFY DOMAIN HERE', | |
'api-key' => 'YOUR API KEY HERE', | |
'api-secret' => 'YOUR API SECRET HERE', | |
'webhook-url' => 'YOUR WEBHOOK URL HERE, INCLUDING "KEY" PARAMETER IF APPLICABLE', | |
); | |
ini_set('display_errors', 'On'); | |
error_reporting(-1); |
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
<html> | |
<head> | |
<link rel="stylesheet" href="http://musicasacra.com/wordpress/wp-content/themes/thesis/style.css?101409-232152" type="text/css" media="screen, projection" /> | |
<link rel="stylesheet" href="http://musicasacra.com/wordpress/wp-content/themes/thesis/custom/layout.css?061010-201105" type="text/css" media="screen, projection" /> | |
<!--[if lte IE 7]><link rel="stylesheet" href="http://musicasacra.com/wordpress/wp-content/themes/thesis/lib/css/ie.css?090909-05006" type="text/css" media="screen, projection" /><![endif]--> | |
<link rel="stylesheet" href="http://musicasacra.com/wordpress/wp-content/themes/thesis/custom/custom.css" type="text/css" media="screen, projection" /> | |
</head> | |
<body class="page page-template-default"> | |
<div id="container"> | |
<div id="page"> |
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 | |
define('API_KEY', 'YOUR API KEY HERE'); | |
define('SECRET', 'YOUR SECRET HERE'); | |
define('STORE_DOMAIN', 'YOUR STORE DOMAIN HERE'); | |
define('WEBHOOK_TARGET', 'your webhook URL here'); | |
ini_set('display_errors', 'On'); | |
ini_set('html_errors', 'Off'); | |
error_reporting(-1); |