code suggestion

Home Forums Legacy Support 4.0 Bugs & Issues code suggestion

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #364982
    EduMEE2
    Participant
    i want to change the link of this create one button: https://share.getcloudapp.com/L1uB2Zer i want to redirect them on a google forms link not buddypress registrations. Note: i tried with JS codes. it does not work. so if there is hook and filter for create id then refer the best possible solution to redirect them to new page after clicking this button
    #365080
    Veronica
    Moderator
    hi just select custom registration page from wp-admin>>wplms>>buddypress then this link will redirect to that page
    #365129
    EduMEE2
    Participant
    This reply has been marked as private.
    #365232
    Veronica
    Moderator
    try this:
    add_filter('wplms_buddypress_registration_link','registration_link6');
    function registration_link6($link){
    		return 'googleforms link here';
    	}
    #365273
    EduMEE2
    Participant
    This reply has been marked as private.
    #365389
    Veronica
    Moderator
    try to use this
    add_filter('vibebp_enable_registration','registration_link_change',99);
    function registration_link_change($link){
    return 'http://localhost:8887/wordpress/register/';
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘code suggestion’ is closed to new replies.