Add Facebook's Custom Audience Pixel Code into Magento












0














I need to add a Custom Audience Pixel Code for Facebook into my Magento site. The instructions say to paste this inbetween the tags, which is simple with basic websites but a lot more complex with Magento.



Any idea where to add this?










share|improve this question
















bumped to the homepage by Community yesterday


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    0














    I need to add a Custom Audience Pixel Code for Facebook into my Magento site. The instructions say to paste this inbetween the tags, which is simple with basic websites but a lot more complex with Magento.



    Any idea where to add this?










    share|improve this question
















    bumped to the homepage by Community yesterday


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      0












      0








      0







      I need to add a Custom Audience Pixel Code for Facebook into my Magento site. The instructions say to paste this inbetween the tags, which is simple with basic websites but a lot more complex with Magento.



      Any idea where to add this?










      share|improve this question















      I need to add a Custom Audience Pixel Code for Facebook into my Magento site. The instructions say to paste this inbetween the tags, which is simple with basic websites but a lot more complex with Magento.



      Any idea where to add this?







      magento-1.9 ecommerce-tracking






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jul 28 '15 at 23:30









      7ochem

      5,72193668




      5,72193668










      asked Jul 28 '15 at 22:28









      user28587

      11




      11





      bumped to the homepage by Community yesterday


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community yesterday


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          3 Answers
          3






          active

          oldest

          votes


















          0














          I would make a module - let's say Yourcompany_FbCode



          app/code/local/Yourcompany/FbCode/etc/config.xml :



          <?xml version="1.0"?>
          <config>
          <modules>
          <Yourcompany_FbCode>
          <version>0.1.0</version>
          </Yourcompany_FbCode>
          </modules>
          <global>
          <helpers>
          <yourcompany_fbcode>
          <class>Yourcompany_FbCode_Helper</class>
          </yourcompany_fbcode>
          </helpers>
          </global>
          <frontend>
          <layout>
          <updates>
          <yourcompany_fbcode>
          <file>yourcompany_fbcode.xml</file>
          </yourcompany_fbcode>
          </updates>
          </layout>
          </frontend>
          </config>


          app/design/frontend/base/default/layout/yourcompany_fbcode.xml :



          <layout version="1.0.0">
          <default>
          <reference name="before_body_end">
          <block type="core/template" name="fbpixel.block" after="-" template="yourcompany/fbcode/fbpixel.phtml">
          <action method="setCacheLifetime"><s>0</s></action>
          </block>
          </reference>
          </default>
          </layout>


          app/design/frontend/base/default/template/yourcompany/fbcode/fbpixel.phtml :



          (Your fb pixel code goes in here - this is the example code from fb)



          <!-- Custom Audience Pixel Code -->
          <script>
          !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
          n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
          n.push=n;n.loaded=!0;n.version='2.0';n.queue=;t=b.createElement(e);t.async=!0;
          t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
          document,'script','//connect.facebook.net/en_US/fbevents.js');
          // Insert Your Custom Audience Pixel ID below.
          fbq('init', '<FB_PIXEL_ID>');
          fbq('track', 'PageView');
          </script>
          <!-- Insert Your Custom Audience Pixel ID below. -->
          <noscript><img height="1" width="1" style="display:none"
          src="https://www.facebook.com/tr?id=<FB_PIXEL_ID>&ev=PageView&noscript=1"
          /></noscript>
          <!-- End Custom Audience Pixel Code -->


          app/etc/modules/Yourcompany_FbCode.xml :



          <?xml version="1.0"?>
          <config>
          <modules>
          <Yourcompany_FbCode>
          <active>true</active>
          <codePool>local</codePool>
          </Yourcompany_FbCode>
          </modules>
          </config>


          app/code/local/Yourcompany/FbCode/Helper/Data.php :



          <?php

          class Yourcompany_FbCode_Helper_Data extends Mage_Core_Helper_Abstract {


          }


          And that's it - your pixel will be inserted into every page on the site, at the bottom to help with loading speed.






          share|improve this answer





















          • how about just adding it to a custom page/html/footer.phtml ?
            – paj
            Aug 31 '15 at 8:21










          • What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
            – Mujahidh
            Mar 10 '16 at 9:02



















          0














          It depends upon what do you want to achieve, there are several ways you can do it in Magento. Either you can create a custom module or copy paste the given pixel tracking code in head.phtml or footer.phtml. Both these methods will install your custom audience pixel tracking on your Magento site.



          If you chose latter, just make sure you add this in your custom theme instead of base theme because base theme will be overwritten with your next Magento upgrade.



          But bear in mind that custom facebook audience pixel tracking does come with standard and custom events which is far more work than adding pixel tracking code in head or footer section of your Magento site. For more information regarding these events use the following link



          https://developers.facebook.com/docs/ads-for-websites/tag-api



          And if you are interested in implementing all the events, the below module can help you achieve this on your Magento store -:



          http://www.scommerce-mage.co.uk/magento-facebook-conversion-audience-tracking.html



          Hope it helps



          Cheers
          S






          share|improve this answer





























            0














            I added the same code code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. I add this as an answer if some one can see this and explain is it a good practice.






            share|improve this answer





















              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "479"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f75958%2fadd-facebooks-custom-audience-pixel-code-into-magento%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              I would make a module - let's say Yourcompany_FbCode



              app/code/local/Yourcompany/FbCode/etc/config.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <version>0.1.0</version>
              </Yourcompany_FbCode>
              </modules>
              <global>
              <helpers>
              <yourcompany_fbcode>
              <class>Yourcompany_FbCode_Helper</class>
              </yourcompany_fbcode>
              </helpers>
              </global>
              <frontend>
              <layout>
              <updates>
              <yourcompany_fbcode>
              <file>yourcompany_fbcode.xml</file>
              </yourcompany_fbcode>
              </updates>
              </layout>
              </frontend>
              </config>


              app/design/frontend/base/default/layout/yourcompany_fbcode.xml :



              <layout version="1.0.0">
              <default>
              <reference name="before_body_end">
              <block type="core/template" name="fbpixel.block" after="-" template="yourcompany/fbcode/fbpixel.phtml">
              <action method="setCacheLifetime"><s>0</s></action>
              </block>
              </reference>
              </default>
              </layout>


              app/design/frontend/base/default/template/yourcompany/fbcode/fbpixel.phtml :



              (Your fb pixel code goes in here - this is the example code from fb)



              <!-- Custom Audience Pixel Code -->
              <script>
              !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
              n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
              n.push=n;n.loaded=!0;n.version='2.0';n.queue=;t=b.createElement(e);t.async=!0;
              t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
              document,'script','//connect.facebook.net/en_US/fbevents.js');
              // Insert Your Custom Audience Pixel ID below.
              fbq('init', '<FB_PIXEL_ID>');
              fbq('track', 'PageView');
              </script>
              <!-- Insert Your Custom Audience Pixel ID below. -->
              <noscript><img height="1" width="1" style="display:none"
              src="https://www.facebook.com/tr?id=<FB_PIXEL_ID>&ev=PageView&noscript=1"
              /></noscript>
              <!-- End Custom Audience Pixel Code -->


              app/etc/modules/Yourcompany_FbCode.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <active>true</active>
              <codePool>local</codePool>
              </Yourcompany_FbCode>
              </modules>
              </config>


              app/code/local/Yourcompany/FbCode/Helper/Data.php :



              <?php

              class Yourcompany_FbCode_Helper_Data extends Mage_Core_Helper_Abstract {


              }


              And that's it - your pixel will be inserted into every page on the site, at the bottom to help with loading speed.






              share|improve this answer





















              • how about just adding it to a custom page/html/footer.phtml ?
                – paj
                Aug 31 '15 at 8:21










              • What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
                – Mujahidh
                Mar 10 '16 at 9:02
















              0














              I would make a module - let's say Yourcompany_FbCode



              app/code/local/Yourcompany/FbCode/etc/config.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <version>0.1.0</version>
              </Yourcompany_FbCode>
              </modules>
              <global>
              <helpers>
              <yourcompany_fbcode>
              <class>Yourcompany_FbCode_Helper</class>
              </yourcompany_fbcode>
              </helpers>
              </global>
              <frontend>
              <layout>
              <updates>
              <yourcompany_fbcode>
              <file>yourcompany_fbcode.xml</file>
              </yourcompany_fbcode>
              </updates>
              </layout>
              </frontend>
              </config>


              app/design/frontend/base/default/layout/yourcompany_fbcode.xml :



              <layout version="1.0.0">
              <default>
              <reference name="before_body_end">
              <block type="core/template" name="fbpixel.block" after="-" template="yourcompany/fbcode/fbpixel.phtml">
              <action method="setCacheLifetime"><s>0</s></action>
              </block>
              </reference>
              </default>
              </layout>


              app/design/frontend/base/default/template/yourcompany/fbcode/fbpixel.phtml :



              (Your fb pixel code goes in here - this is the example code from fb)



              <!-- Custom Audience Pixel Code -->
              <script>
              !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
              n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
              n.push=n;n.loaded=!0;n.version='2.0';n.queue=;t=b.createElement(e);t.async=!0;
              t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
              document,'script','//connect.facebook.net/en_US/fbevents.js');
              // Insert Your Custom Audience Pixel ID below.
              fbq('init', '<FB_PIXEL_ID>');
              fbq('track', 'PageView');
              </script>
              <!-- Insert Your Custom Audience Pixel ID below. -->
              <noscript><img height="1" width="1" style="display:none"
              src="https://www.facebook.com/tr?id=<FB_PIXEL_ID>&ev=PageView&noscript=1"
              /></noscript>
              <!-- End Custom Audience Pixel Code -->


              app/etc/modules/Yourcompany_FbCode.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <active>true</active>
              <codePool>local</codePool>
              </Yourcompany_FbCode>
              </modules>
              </config>


              app/code/local/Yourcompany/FbCode/Helper/Data.php :



              <?php

              class Yourcompany_FbCode_Helper_Data extends Mage_Core_Helper_Abstract {


              }


              And that's it - your pixel will be inserted into every page on the site, at the bottom to help with loading speed.






              share|improve this answer





















              • how about just adding it to a custom page/html/footer.phtml ?
                – paj
                Aug 31 '15 at 8:21










              • What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
                – Mujahidh
                Mar 10 '16 at 9:02














              0












              0








              0






              I would make a module - let's say Yourcompany_FbCode



              app/code/local/Yourcompany/FbCode/etc/config.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <version>0.1.0</version>
              </Yourcompany_FbCode>
              </modules>
              <global>
              <helpers>
              <yourcompany_fbcode>
              <class>Yourcompany_FbCode_Helper</class>
              </yourcompany_fbcode>
              </helpers>
              </global>
              <frontend>
              <layout>
              <updates>
              <yourcompany_fbcode>
              <file>yourcompany_fbcode.xml</file>
              </yourcompany_fbcode>
              </updates>
              </layout>
              </frontend>
              </config>


              app/design/frontend/base/default/layout/yourcompany_fbcode.xml :



              <layout version="1.0.0">
              <default>
              <reference name="before_body_end">
              <block type="core/template" name="fbpixel.block" after="-" template="yourcompany/fbcode/fbpixel.phtml">
              <action method="setCacheLifetime"><s>0</s></action>
              </block>
              </reference>
              </default>
              </layout>


              app/design/frontend/base/default/template/yourcompany/fbcode/fbpixel.phtml :



              (Your fb pixel code goes in here - this is the example code from fb)



              <!-- Custom Audience Pixel Code -->
              <script>
              !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
              n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
              n.push=n;n.loaded=!0;n.version='2.0';n.queue=;t=b.createElement(e);t.async=!0;
              t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
              document,'script','//connect.facebook.net/en_US/fbevents.js');
              // Insert Your Custom Audience Pixel ID below.
              fbq('init', '<FB_PIXEL_ID>');
              fbq('track', 'PageView');
              </script>
              <!-- Insert Your Custom Audience Pixel ID below. -->
              <noscript><img height="1" width="1" style="display:none"
              src="https://www.facebook.com/tr?id=<FB_PIXEL_ID>&ev=PageView&noscript=1"
              /></noscript>
              <!-- End Custom Audience Pixel Code -->


              app/etc/modules/Yourcompany_FbCode.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <active>true</active>
              <codePool>local</codePool>
              </Yourcompany_FbCode>
              </modules>
              </config>


              app/code/local/Yourcompany/FbCode/Helper/Data.php :



              <?php

              class Yourcompany_FbCode_Helper_Data extends Mage_Core_Helper_Abstract {


              }


              And that's it - your pixel will be inserted into every page on the site, at the bottom to help with loading speed.






              share|improve this answer












              I would make a module - let's say Yourcompany_FbCode



              app/code/local/Yourcompany/FbCode/etc/config.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <version>0.1.0</version>
              </Yourcompany_FbCode>
              </modules>
              <global>
              <helpers>
              <yourcompany_fbcode>
              <class>Yourcompany_FbCode_Helper</class>
              </yourcompany_fbcode>
              </helpers>
              </global>
              <frontend>
              <layout>
              <updates>
              <yourcompany_fbcode>
              <file>yourcompany_fbcode.xml</file>
              </yourcompany_fbcode>
              </updates>
              </layout>
              </frontend>
              </config>


              app/design/frontend/base/default/layout/yourcompany_fbcode.xml :



              <layout version="1.0.0">
              <default>
              <reference name="before_body_end">
              <block type="core/template" name="fbpixel.block" after="-" template="yourcompany/fbcode/fbpixel.phtml">
              <action method="setCacheLifetime"><s>0</s></action>
              </block>
              </reference>
              </default>
              </layout>


              app/design/frontend/base/default/template/yourcompany/fbcode/fbpixel.phtml :



              (Your fb pixel code goes in here - this is the example code from fb)



              <!-- Custom Audience Pixel Code -->
              <script>
              !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
              n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
              n.push=n;n.loaded=!0;n.version='2.0';n.queue=;t=b.createElement(e);t.async=!0;
              t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
              document,'script','//connect.facebook.net/en_US/fbevents.js');
              // Insert Your Custom Audience Pixel ID below.
              fbq('init', '<FB_PIXEL_ID>');
              fbq('track', 'PageView');
              </script>
              <!-- Insert Your Custom Audience Pixel ID below. -->
              <noscript><img height="1" width="1" style="display:none"
              src="https://www.facebook.com/tr?id=<FB_PIXEL_ID>&ev=PageView&noscript=1"
              /></noscript>
              <!-- End Custom Audience Pixel Code -->


              app/etc/modules/Yourcompany_FbCode.xml :



              <?xml version="1.0"?>
              <config>
              <modules>
              <Yourcompany_FbCode>
              <active>true</active>
              <codePool>local</codePool>
              </Yourcompany_FbCode>
              </modules>
              </config>


              app/code/local/Yourcompany/FbCode/Helper/Data.php :



              <?php

              class Yourcompany_FbCode_Helper_Data extends Mage_Core_Helper_Abstract {


              }


              And that's it - your pixel will be inserted into every page on the site, at the bottom to help with loading speed.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Jul 28 '15 at 22:56









              AreDubya

              1,22911022




              1,22911022












              • how about just adding it to a custom page/html/footer.phtml ?
                – paj
                Aug 31 '15 at 8:21










              • What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
                – Mujahidh
                Mar 10 '16 at 9:02


















              • how about just adding it to a custom page/html/footer.phtml ?
                – paj
                Aug 31 '15 at 8:21










              • What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
                – Mujahidh
                Mar 10 '16 at 9:02
















              how about just adding it to a custom page/html/footer.phtml ?
              – paj
              Aug 31 '15 at 8:21




              how about just adding it to a custom page/html/footer.phtml ?
              – paj
              Aug 31 '15 at 8:21












              What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
              – Mujahidh
              Mar 10 '16 at 9:02




              What about adding this code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. Isn't it a good practice?
              – Mujahidh
              Mar 10 '16 at 9:02













              0














              It depends upon what do you want to achieve, there are several ways you can do it in Magento. Either you can create a custom module or copy paste the given pixel tracking code in head.phtml or footer.phtml. Both these methods will install your custom audience pixel tracking on your Magento site.



              If you chose latter, just make sure you add this in your custom theme instead of base theme because base theme will be overwritten with your next Magento upgrade.



              But bear in mind that custom facebook audience pixel tracking does come with standard and custom events which is far more work than adding pixel tracking code in head or footer section of your Magento site. For more information regarding these events use the following link



              https://developers.facebook.com/docs/ads-for-websites/tag-api



              And if you are interested in implementing all the events, the below module can help you achieve this on your Magento store -:



              http://www.scommerce-mage.co.uk/magento-facebook-conversion-audience-tracking.html



              Hope it helps



              Cheers
              S






              share|improve this answer


























                0














                It depends upon what do you want to achieve, there are several ways you can do it in Magento. Either you can create a custom module or copy paste the given pixel tracking code in head.phtml or footer.phtml. Both these methods will install your custom audience pixel tracking on your Magento site.



                If you chose latter, just make sure you add this in your custom theme instead of base theme because base theme will be overwritten with your next Magento upgrade.



                But bear in mind that custom facebook audience pixel tracking does come with standard and custom events which is far more work than adding pixel tracking code in head or footer section of your Magento site. For more information regarding these events use the following link



                https://developers.facebook.com/docs/ads-for-websites/tag-api



                And if you are interested in implementing all the events, the below module can help you achieve this on your Magento store -:



                http://www.scommerce-mage.co.uk/magento-facebook-conversion-audience-tracking.html



                Hope it helps



                Cheers
                S






                share|improve this answer
























                  0












                  0








                  0






                  It depends upon what do you want to achieve, there are several ways you can do it in Magento. Either you can create a custom module or copy paste the given pixel tracking code in head.phtml or footer.phtml. Both these methods will install your custom audience pixel tracking on your Magento site.



                  If you chose latter, just make sure you add this in your custom theme instead of base theme because base theme will be overwritten with your next Magento upgrade.



                  But bear in mind that custom facebook audience pixel tracking does come with standard and custom events which is far more work than adding pixel tracking code in head or footer section of your Magento site. For more information regarding these events use the following link



                  https://developers.facebook.com/docs/ads-for-websites/tag-api



                  And if you are interested in implementing all the events, the below module can help you achieve this on your Magento store -:



                  http://www.scommerce-mage.co.uk/magento-facebook-conversion-audience-tracking.html



                  Hope it helps



                  Cheers
                  S






                  share|improve this answer












                  It depends upon what do you want to achieve, there are several ways you can do it in Magento. Either you can create a custom module or copy paste the given pixel tracking code in head.phtml or footer.phtml. Both these methods will install your custom audience pixel tracking on your Magento site.



                  If you chose latter, just make sure you add this in your custom theme instead of base theme because base theme will be overwritten with your next Magento upgrade.



                  But bear in mind that custom facebook audience pixel tracking does come with standard and custom events which is far more work than adding pixel tracking code in head or footer section of your Magento site. For more information regarding these events use the following link



                  https://developers.facebook.com/docs/ads-for-websites/tag-api



                  And if you are interested in implementing all the events, the below module can help you achieve this on your Magento store -:



                  http://www.scommerce-mage.co.uk/magento-facebook-conversion-audience-tracking.html



                  Hope it helps



                  Cheers
                  S







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Sep 1 '15 at 21:57









                  stevensagaar

                  733521




                  733521























                      0














                      I added the same code code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. I add this as an answer if some one can see this and explain is it a good practice.






                      share|improve this answer


























                        0














                        I added the same code code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. I add this as an answer if some one can see this and explain is it a good practice.






                        share|improve this answer
























                          0












                          0








                          0






                          I added the same code code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. I add this as an answer if some one can see this and explain is it a good practice.






                          share|improve this answer












                          I added the same code code to "Miscellaneous Scripts" in the admin panel system->Configuration->Design->HTML Head. I add this as an answer if some one can see this and explain is it a good practice.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Mar 10 '16 at 9:04









                          Mujahidh

                          1,3821935




                          1,3821935






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Magento Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f75958%2fadd-facebooks-custom-audience-pixel-code-into-magento%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              An IMO inspired problem

                              Management

                              Has there ever been an instance of an active nuclear power plant within or near a war zone?