You can modify to the function
public function rewrite_products( $permalink, $post ) {
if ( $post->post_type !== ‘product’ ) {
return $permalink;
}
to
public function rewrite_products( $permalink, $post ) {
if($post->post_status==”draft”){
return;
}
if ( $post->post_type !== ‘product’ ) {
return $permalink;
}
Regards, Carlos
-
This reply was modified 4 years, 10 months ago by carloscggb.