You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've never actually been able to test the theme update process as a customer, since Themeforest doesn't add your own theme to your account.
I noticed this code here and it made me wonder, when a client updates the theme through the Envato Market plugin, will they be prompted to run the setup wizard again?
/**
* After a theme update we clear the setup_complete option. This prompts the user to visit the update page again.
*
* @since 1.1.8
* @access public
*/
public function upgrader_post_install( $return, $theme ) {
if ( is_wp_error( $return ) ) {
return $return;
}
if ( $theme != get_stylesheet() ) {
return $return;
}
update_option( 'envato_setup_complete', false );
return $return;
}
The text was updated successfully, but these errors were encountered:
I've never actually been able to test the theme update process as a customer, since Themeforest doesn't add your own theme to your account.
I noticed this code here and it made me wonder, when a client updates the theme through the Envato Market plugin, will they be prompted to run the setup wizard again?
The text was updated successfully, but these errors were encountered: