Untitled
unknown
plain_text
2 years ago
2.0 kB
13
Indexable
/***************************************************************************
******* افزودن راهنمای دریافت اکانت اپل آیدی بعد از خرید اپل آیدی *********
***************************************************************************/
add_action('woocommerce_thankyou', 'add_custom_html_to_order_details', 10);
function add_custom_html_to_order_details($order_id) {
$order = wc_get_order($order_id);
// Ensure the order object is valid
if (!$order) {
return;
}
// Check if the specific product ID is present in the order
$has_product_13786 = false;
foreach ($order->get_items() as $item) {
if ($item->get_product_id() === 13786) {
$has_product_13786 = true;
break; // Stop iterating once the product is found
}
}
// Proceed only if the product is included in the order
if (!$has_product_13786) {
return;
}
// Replace this with your desired HTML content, including classes or styling
$custom_html = '
<section class="woocommerce-customer-details">
<h2 class="woocommerce-column__title">راهنمایی برای دریافت اکانت</h2>
<address>
اطلاعات زیر را به پشتیبانی تلگرام ارسال کنید.
<br>
نام و نام خانوادگی - تاریخ تولد - شماره تلفن همراه
<br>
پشتیبانی : 09356729802 - 09154829802
<br>
آیدی تلگرام : RealSajadVafa@
</address>
</section>
';
// Output the script directly to the page
echo '<script type="text/javascript">
jQuery(document).ready(function($) {
var targetElement = $(".woocommerce-thankyou-order-details");
if (targetElement.length > 0) {
targetElement.after(`' . wp_kses_post($custom_html) . '`);
}
});
</script>';
}Editor is loading...
Leave a Comment