Was wondering I have the facebook comments app for wordpress.. On my posts it has a facebook comment box.. After the user comments I want them to be redirected to a sales page within my site. Anyone know how to do that?
Was wondering I have the facebook comments app for wordpress.. On my posts it has a facebook comment box.. After the user comments I want them to be redirected to a sales page within my site. Anyone know how to do that?
do you know javascript?
not really.. really wish i knew how to do this

whats the wordpress plugin called?
this one maybe?
http://wordpress.org/extend/plugins/...for-wordpress/
Last edited by tb303; 01-20-2012 at 08:50 PM.


Listen for the comment.create event.
Insert the following within fbAsyncInit: window.fbAsyncInit = function() { // HERE // }
Code:FB.Event.subscribe('comment.create', function () { top.location.href = 'http://your-redirect-page.com/'; });
Bookmarks