Skip to content
Snippets Groups Projects

Pobieranie zawartości pola Opis produktu z innego źródła niż domyślne pole wtyczki

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Krzysztof Dyszczyk
    snippetfile1.txt 273 B
    add_filter( 'wpdesk_ceneo_product_meta_woocommerce_ceneo_alternative_desc', function ( $value, $product_id ) {
    	$result = get_post_meta( $product_id, 'woocommerce_nokaut_alternative_desc', true );
    	if ( !empty( $result ) ) {
    		return $result;
    	}
    
    	return $value;
    }, 10, 2 )
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment