Adding Facebook Pixel Conversion Code In Cscart Version 4.2.4

Hello,

I want to add the facebook pixel conversion code for my registration page.I want to add code in head section of registration page.Please could you guide me how to achieve this.It would be a great help.









Thank You

you can do it with module “my changes” (by default it is disabled so enable it) by adding the “design/themes/%THEME%/templates/addons/my_changes/hooks/index/scripts.post.tpl” file

where %THEME% is theme of your store front (by default - responsive)



The file content will be:

```php

{if $smarty.request.dispatch == “profile.add”}


{/if}

```



after that don't forget to clean up cs-cart template and browser cache

[quote name='Damir (WSA-team)' timestamp='1427130463' post='208777']

you can do it with module “my changes” (by default it is disabled so enable it) by adding the “design/themes/%THEME%/templates/addons/my_changes/hooks/index/scripts.post.tpl” file

where %THEME% is theme of your store front (by default - responsive)



The file content will be:

```php

{if $smarty.request.dispatch == “profile.add”}


{/if}

```



after that don't forget to clean up cs-cart template and browser cache

[/quote]



There is an error in the code. The content should be


```php

{if $smarty.request.dispatch == “profiles.add”}


{/if}

```

[color=#282828][font=arial, verdana, tahoma, sans-serif]There is an error in the code. The content should be[/font][/color]

thanks for correction

[quote name='Damir (WSA-team)' timestamp='1427219821' post='208912']

[color=#282828][font=arial, verdana, tahoma, sans-serif]There is an error in the code. The content should be[/font][/color]

thanks for correction

[/quote]



Welcome!