questions again.
-
pulla 7 years ago
1. upload photos.
I think small photos are fine. but bigger size pictures are not uploaded. if file size is limited. there should be an error message. currently nothing shows up (with little bigger size).
btw, what’s the limited file size for images?2. bug : on mobile, when you leave a comment, the profile pictures are too big and it breaks layout.
bug : for modal.. if I added a big size photo3. I think there should be “block users” not to show private pics, friends information.
when someone keep talking to me, users may need to4. I need to know “hook” information or function name.
`
public function run() {
// Since we are running a single instance, we do not need to check
// if points are set to zero (disable). myCRED will check if this
// hook has been enabled before calling this method so no need to check
// that either.
/*add_action( ‘personal_options_update’, array( $this, ‘profile_update’ ) );
add_action( ‘edit_user_profile_update’, array( $this, ‘profile_update’ ) );*/
add_action( ‘wp_ajax_themex_update_user’, array( $this, ‘profile_update’ ) );
add_action( ‘wp_ajax_nopriv_themex_update_user’, array( $this, ‘profile_update’ ) );
}
`I added 2 hooks( wp_ajax… “). I thought these could be updating user information but it’s not working. I need to know what’s “your profile upload” hooks. (such as personal_options_update, edit_user_profile_update)
Is there anything you to show me hook functions?
I am trying to setup cubepoint module and tried wp default functions for update profile. but it’s not working.
You must be logged in to reply to this topic.