我必须使用以下代码才能在 Gitlab 票证中显示视频:

有什么方法可以将此视频限制为特定尺寸而不是全尺寸?
我必须使用以下代码才能在 Gitlab 票证中显示视频:

有什么方法可以将此视频限制为特定尺寸而不是全尺寸?
是否可以使用 Google Script 创建以下逻辑:
(if spreadsheet id is not equal to <id> and number of rows filled on sheet <name> < 100) {
runFunction()
}
else {
return dialog window to the user with <text>
}
当订单状态从待定变为取消时,我使用以下代码发送管理员电子邮件。
add_action('woocommerce_order_status_pending_to_cancelled', 'cancelled_send_an_email_notification', 10, 2 );
function cancelled_send_an_email_notification( $order_id, $order ){
// Getting all WC_emails objects
$email_notifications = WC()->mailer()->get_emails();
// Sending the email
$email_notifications['WC_Email_Cancelled_Order']->trigger( $order_id );
}
现在,每当订单停留在“待付款”状态时,我都希望实现同样的效果。
有人有解决这个问题的方法吗?
在 WooCommerce 中,我有以下代码将省份限制为仅瓦伦西亚(西班牙):
add_filter( 'woocommerce_states', 'tl45r_custom_woocommerce_states' );
function tl45r_custom_woocommerce_states( $states ) {
// Only show specific provinces (Madrid - MD and Barcelona - B) for Spain (ES)
$states['ES'] = array(
//'MD' => __( 'Madrid', 'woocommerce' ),
//'B' => __( 'Barcelona', 'woocommerce' ),
'V' => __( 'Valencia', 'woocommerce' ),
);
return $states;
}
但是,我希望此限制仅适用于运输领域,而不适用于帐单领域。
我怎样才能做到这一点?