hello
i add code, but dont any text or pic send to telegram!!! but before add this code, It was sent only text.
this is all code i use in child theme’s functions.php :
///change ? to ,
add_filter( 'wcfm_pm_product_tags_before_save', function( $product_tags, $new_product_id ) {
$product_tags = str_replace( "?", ",", str_replace( " ", ",", $product_tags ) );
return $product_tags;
}, 50, 2 );
add_filter( 'wcfm_pm_product_tags_after_save', function( $product_tags, $new_product_id ) {
$product_tags = str_replace( ",", "?", $product_tags );
return $product_tags;
}, 50, 2 );
/////////////////////////////// telegram
add_action( 'after_wcfm_products_manage_meta_save', function( $new_product_id, $wcfm_products_manage_form_data ) {
$post = get_post( $new_product_id );
do_action( 'wptelegram_p2tg_send_post', $post, 'non_wp', false );
}, 50, 2 );