Support » Plugin: Pinterest "Pin It" Button » Award points if someone pinned

  • Resolved monitor

    (@oomskaap)


    Hello,

    We would like to reward users who pins something using your plugin with points. We use CubePoints to awards points once an action is performed.

    The function that rewards a user with 1000 points are

    <?php
    if( function_exists('cp_alterPoints') && is_user_logged_in() ){ cp_alterPoints(cp_currentUser(), 1000); } ?>

    or—-

    cp_points('type_of_activity', cp_currentUser(), 1000, 'optional_data');

    I was hoping you could tell me where to paste the code so that it fires everytime a pin action is performed.

    Thanks!

    http://wordpress.org/extend/plugins/pinterest-pin-it-button/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter monitor

    (@oomskaap)

    I think it would probably be within this code? But i would like it to fire once someone acctually shared it, and not just click the pin button, since they can just close the window and still get the points

    //User selects image (default)
        //$pib_options['button_style'] == 'user_selects_image' (or blank)
        else {
            //Fire off Pinterest's pinmarklet.js
            wp_enqueue_script( 'pin-it-button-user-selects-image', PIB_JS_URL . 'pin-it-button-user-selects-image.js', array( 'jquery' ) );
    
            //User selects image AND use Custom image button
            if ( (bool)$pib_options['use_custom_img_btn'] ) {
                //Do nothing
            }
    
            //User selects image AND use Stock button
            else {
                //Do nothing
            }
        }
    Plugin Contributor Phil Derksen

    (@pderksen)

    I’m not familiar with CubePoints but if you get something working please share. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Award points if someone pinned’ is closed to new replies.