Viewing 1 replies (of 1 total)
  • Plugin Author smashballoon

    (@smashballoon)

    Hey imaginemonkey,

    I think I responded to you via email but I’ll respond here too in case that was someone else asking the same question: If you request and store the user’s Facebook ID when they sign up then you could retrieve it from the database on their profile page and add it into the shortcode of our plugin on the page. As a rough example:

    <?php
    $facebook_id = $user->facebook_id;
    
    echo do_shortcode('[custom-facebook-feed id=' . $facebook_id . ']');
    ?>

    The feed would display the posts from the Facebook ID. You’d need to use the correct call to assign the user’s ID to the $facebook_id variable, but hopefully the above demonstrates the basic idea.

    Let me know whether that makes sense and whether it answers your question.

    John

Viewing 1 replies (of 1 total)
  • The topic ‘Integrating with membership plugin?’ is closed to new replies.