I am not familiar with creating the Facebook aspect of this. Any help would be greatly appreciated.
I am not understanding what is required based on the .jpg of the Facebook app setup pages.
Thanks
https://www.ads-software.com/plugins/facebook-events-importer/
]]>I discovered that unless you have
short_open_tag = On
This plugin won’t activiate saying that there is an Parse error: syntax error, “unexpected end of file” in the file simple-follow-me-social-buttons-widget/includes/widget.php
This experience was on 3.9.2
https://www.ads-software.com/plugins/social-media-icons-widget/
]]>Any chance you could change to use the normal tags (the long ones) please?
Kind Regards
Katrina
Parse error: syntax error, unexpected $end
You can manually edit the plugin files that cause the errors by changing every occurence of ‘<? ‘ to ‘<?php’
You can turn short_open_tag on in php.ini.
short_open_tag = 1
You can set it in the .htaccess file
php_flag short_open_tag on
Parse error: syntax error, unexpected $end in C:\wamp\www\steudel.org\steudel.org\blog2\wp-content\plugins\obsocialbookmarker.php on line 670
CAUSE:
On my server this happened because I don’t have short-code tags enabled
SOLUTION:
If you open up the obsocialbookmarker.php file and head down to line 208, change <? to <?php.
OR
You can enable php short tags in your php.ini by changing the following line:
short_open_tag = Off
TO
short_open_tag = On
Hope this helps.
Mark
]]>