• Resolved SplashMedia

    (@keith679)


    is it possible to put the getpaid edit “Billing Address” into the profile tabs?

    as I just want everything workable from the profile page.

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Contributor Paolo

    (@paoltaia)

    Hi, sorry, but that is not possible without customization.

    Thanks,

    Thread Starter SplashMedia

    (@keith679)

    im up for a bit of customization ?? any pointers of where to attack first? ??

    Plugin Contributor Paolo

    (@paoltaia)

    I asked to the dev team to chime in, we’ll get back to you asap.

    Thread Starter SplashMedia

    (@keith679)

    Thank you Paolo

    Very much appreciated. ??

    Plugin Support alexrollin

    (@alexrollin)

    It requires custom code to do that. You can add shortcode tab from the profile tab builder and add the shortcode [uwp_gp_edit_address_tab] in tab content and make sure you select Privacy to Author only.add_shortcode(‘uwp_gp_edit_address_tab’, ‘uwp_gp_edit_address_tab_cb’);function uwp_gp_edit_address_tab_cb(){ return getpaid_display_address_edit_tab();}Add above code in functions.php file of currently active theme or via code snippet plugin and let me know if it works for you or not.

    Thread Starter SplashMedia

    (@keith679)

    Perfect ?? thank you and it works a treat.

    Im basically doing away with the account page as such and having everything on the profile with tabs for access, all I need to do now is remove the billing address from the side bar and the logout option too. ive used a snippet to hide the others :

    unset($tabs[‘notifications’]);
    unset($tabs[‘privacy’]);
    return $tabs;
    }

    etc. what are the snippet names to hide the billing address and logout?

    Thread Starter SplashMedia

    (@keith679)

    sorry just the logout as already did billing address with :

    unset($tabs[‘gp-edit-address’]);

    Thread Starter SplashMedia

    (@keith679)

    or a snippet to remove the whole column ?

    Plugin Contributor Paolo

    (@paoltaia)

    CSS?

    Plugin Contributor Paolo

    (@paoltaia)

    This should do it:

    .uwp_widget_account .col-lg-3 {
        display: none;
    }
    Thread Starter SplashMedia

    (@keith679)

    Fantastic! Works a treat.

    Thanks again Paolo ??

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘profile tabs & getpaid’ is closed to new replies.