Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter pneudralics

    (@pneudralics)

    Also is it possible to redirect back to the post where they had to click the login link?

    Hi,

    I left a message to the developer of the plugin. He’ll get back to you in the next few days with a more profound answer, but basically you have to look at the code and see what happens in the sidebar widget after a user logs in and try to hook into that.

    Regarding the second question – at the moment you can only redirect to one specific page you choose (using Post Login Redirect in the plugin’s settings page) and not to the last page the user visited before logging in. This feature is already on our roadmap and hopefully will be ready soon.

    Regards,
    Miri Oliel,
    -Gigya

    I have done this by using a custom widget, here’s an example.

    In your theme functions.php add

    //custom widget
    	register_sidebar( array(
    		'name' => 'custom',
    		'id' => 'custom',
    		'before_widget' => '',
    		'after_widget' => '',
    		'before_title' => '',
    		'after_title' => ''
    	) );

    Then in your comments.php ( or whatever you want to put the widget ) call the custom widget using:

    <?php dynamic_sidebar("custom"); ?>

    Don’t forget to drop the widget in the new area “custom” in your widgets panels, also remember than the widget can be called only once, so you either call it on your sidebar or your comments form.

    Would be nice if you could duplicate the widget though, hopefully for the next version ??

    You can see it in action here: https://www.doble-h.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Gigya Socialize – Increase Registration and Engagement using Facebook Connect, Twitter and’ is closed to new replies.