Uncategorized

WP ARABIC WooCommerce Custom Thank You Pages Elementor

الكود المستعمل في الشرح

كود تغيير رابط صفحة thank you page

// Add a filter to customize the WooCommerce thank you page URL
function custom_thankyou_page_redirect($order_id) {
    // Replace 'custom-thankyou-page' with the slug or URL of your custom thank you page
    $thankyou_page_url = home_url('/thank-you-page/');
    return $thankyou_page_url;
}

add_filter('woocommerce_get_checkout_order_received_url', 'custom_thankyou_page_redirect');

// Optionally, you can add a message or content to your custom thank you page
function custom_thankyou_page_content() {
    echo '<h2>Thank You for Your Order</h2>';
    echo '<p>Your custom thank you message or content here.</p>';
}

add_action('woocommerce_thankyou_custom-thankyou-page', 'custom_thankyou_page_content');
تحميل صفحة المنتور
الاضافة المستعملة في الشرح
Confetti Fall Animation

Confetti Fall Animation

اترك تعليقاً

لن يتم نشر عنوان بريدك الإلكتروني. الحقول الإلزامية مشار إليها بـ *