Home › Forums › Support › Change ownership of an element This topic has 3 replies, 2 voices, and was last updated 4 years, 11 months ago by Tom. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts April 13, 2021 at 4:26 am #1732312 George Is there a way to change ownership of a GP element somehow? Basically, I want to change the author of one of the right side block elements and I can’t find an author metabox to do it. April 13, 2021 at 8:23 am #1732868 TomLead Developer Lead Developer Hi there, You could try this: add_filter( 'register_post_type_args', function( $args, $post_type ) { if ( 'gp_elements' === $post_type ) { $args['supports'][] = 'author'; } return $args; }, 10, 2 ); April 13, 2021 at 8:44 am #1732893 George Thanks, Tom! April 13, 2021 at 11:12 am #1733070 TomLead Developer Lead Developer No problem 🙂 Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In