shopify Api を使用してスクリプトタグを作成しました
$src = "http://localhost/shopifyplugin/shopify.js";
$script = $sc->call('POST', '/admin/script_tags.json', array(
"script_tag"=> array(
"event"=>"onload", "src"=>"$src"
)));
js ファイルのコード:
console.log("Coming here...");
alert("coming here...");
jQuery("form[action='/cart/add']").each(function() {
console.log("I'm in product page");
});
しかし、ストアでは何も表示されていません。はいの場合、jqueryを含める必要がありますか?次に、どのファイルに含める必要がありますか?index.phpファイルにスクリプトタグを作成しています。