mont58-theme/wp-content/themes/mont58-coffee/template-order-label.php

193 lines
6.0 KiB
PHP
Raw Normal View History

2024-05-08 20:27:19 +00:00
<?php
/* Template Name: Coffee Label */
2024-06-10 17:46:24 +00:00
if(!is_user_logged_in()){
auth_redirect();
}
2024-05-08 20:15:09 +00:00
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffee Label</title>
<link rel="preconnect" href="https://api/fonts.coollabs.io">
2024-05-29 16:21:56 +00:00
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap" rel="stylesheet">
2024-06-27 14:40:39 +00:00
<link href="<?php echo get_theme_file_uri('/fonts/acumin-variable-concept.css') ?>" rel="stylesheet">
2024-05-08 20:15:09 +00:00
<link rel="stylesheet" href="style.css">
<style>
.container {
display: flex;
flex-wrap: wrap;
}
.label {
2024-06-03 16:41:23 +00:00
width: calc(0.35* 400px);
height: calc(0.35 *400px);
2024-05-08 20:15:09 +00:00
border-radius: 50%;
2024-06-03 16:41:23 +00:00
padding: calc(0.35 * 2rem);
/* margin: calc(0.35 * 2rem); */
2024-05-08 20:15:09 +00:00
text-align: center;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(
0deg,
rgba(255, 255, 255, 1) 28%,
rgba(231, 184, 32, 1) 28%
);
}
.label .product-details {
2024-06-27 14:35:05 +00:00
font-family: 'Acumin Variable Concept', sans-serif;
2024-06-03 16:41:23 +00:00
font-size: calc(0.35 * 21px);
letter-spacing: calc(0.35 * 2px);
2024-05-08 20:15:09 +00:00
text-transform: uppercase;
margin-top: 2.5em;
margin-bottom: 2em;
font-weight: 500;
}
.label .product-details p {
margin-block: 0.5em;
}
.label .product-details .origin {
2024-06-03 16:41:23 +00:00
font-size: calc(0.35 * 28px);
2024-05-08 20:15:09 +00:00
font-weight: 700;
2024-06-03 16:41:23 +00:00
letter-spacing: calc(0.35 * 4px);
2024-05-08 20:15:09 +00:00
margin-block: 1.2em 0.8em;
2024-06-03 16:41:23 +00:00
min-height: calc(0.35 * 33px);
2024-05-08 20:15:09 +00:00
}
.label .product-details .weight {
text-transform: lowercase;
font-weight: bold;
font-family: sans-serif;
2024-06-03 16:41:23 +00:00
font-size: calc(0.35 * 18px);
2024-05-08 20:15:09 +00:00
}
.label .product-details .code {
2024-06-03 16:41:23 +00:00
min-height: calc(0.35 * 20px);
letter-spacing: calc(0.35 * 10px);
2024-05-08 20:15:09 +00:00
margin-top: 1.5em;
2024-06-03 16:41:23 +00:00
font-size: calc(0.35 * 16px);
2024-05-08 20:15:09 +00:00
}
.label .order-details {
padding-bottom: 1em;
2024-06-03 16:41:23 +00:00
font-size: calc(0.35 * 17px);
2024-05-08 20:15:09 +00:00
}
.label .order-details p {
margin-block: 0.4em;
}
</style>
</head>
<body>
<div class="container">
2024-06-10 17:46:24 +00:00
<?php
$j = 0;
foreach ($_GET["order_ids"] as $order_id) {
2024-05-08 20:27:19 +00:00
$order = wc_get_order($order_id);
$first_name = $order->get_billing_first_name();
$last_name = $order->get_billing_last_name();
$postcode = $order->get_billing_postcode();
$items = $order->get_items();
$total_items = $order->get_item_count();
2024-05-08 20:27:19 +00:00
$roast_date = (new DateTime())->modify("-3 days")->format("d/m/Y");
$gift_message = $order->get_meta("_shipping_gift_message");
$order_subscription_coffees = get_field("coffees", $order_id);
foreach ($items as $item) {
// checking if product is a coffee
$product_id = $item->get_product_id();
$product_categories = get_the_terms($product_id, "product_cat");
$is_coffee = false;
$is_subscription = false;
if (
!empty($product_categories) &&
!is_wp_error($product_categories)
) {
foreach ($product_categories as $product_category) {
if ($product_category->slug == "coffee") {
$is_coffee = true;
break;
} elseif ($product_category->slug == "tasting") {
$is_subscription = true;
break;
}
}
2024-05-08 20:15:09 +00:00
}
if ($is_coffee || $is_subscription) {
$brew_method = $item->get_meta("pa_brew-method");
$weight = $item->get_meta("weight");
} else {
$product_name = $item->get_name();
2024-05-08 20:27:19 +00:00
}
2024-05-08 20:15:09 +00:00
2024-05-08 20:27:19 +00:00
if ($is_coffee) {
// Non-subscription order
$product_name = $item->get_name();
$roast = get_field("roast_level", $product_id);
$is_organic = get_field("is_organic", $product_id);
}
if ($is_subscription) {
$subscriptions = wcs_get_subscriptions_for_order($order_id, [
"order_type" => "any",
]);
// TODO log / admin warning if there are >1 subscriptions
$subscription = array_pop($subscriptions);
$orders = $subscription->get_related_orders("ids", "any");
if (sizeof($orders) == 1) {
$is_new = true;
}
}
2024-05-08 20:15:09 +00:00
2024-05-08 20:27:19 +00:00
$quantity = $item->get_quantity();
for ($i = 0; $i < $quantity; $i++) {
if ($is_subscription) {
$coffee = $order_subscription_coffees[$i + $j]["coffee"];
$product_name = $coffee->post_title;
$roast = get_field("roast_level", $coffee->ID);
$is_organic = get_field("is_organic", $coffee->ID);
} ?>
2024-05-08 20:15:09 +00:00
<div class="label">
<div>
<div class="product-details">
<?php if ($is_coffee || $is_subscription) { ?>
2024-05-08 20:15:09 +00:00
<p class="weight"><?php echo $weight; ?></p>
<?php } ?>
2024-05-08 20:15:09 +00:00
<p class="origin"><?php echo $product_name; ?></p>
<?php if ($is_coffee || $is_subscription) { ?>
2024-05-08 20:15:09 +00:00
<p class="bean-type"><?php echo $brew_method; ?></p>
<p class="roast"><?php echo $roast; ?> Roast</p>
<p class="date">Roasted on: <span><?php echo $roast_date; ?></span></p>
<?php } ?>
2024-05-08 20:27:19 +00:00
<p class="code"><?php
echo $is_new ? "N" : "";
echo $gift_message ? "G" : "";
echo $is_organic ? "O" : "";
?></p>
2024-05-08 20:15:09 +00:00
</div>
<div class="order-details">
<p class="customer-name"><?php echo "$first_name $last_name"; ?></p>
<p class="purchase-code"><?php echo $postcode; ?></p>
<p class="quantity"><?php echo $total_items; ?></p>
2024-05-08 20:15:09 +00:00
</div>
</div>
</div>
2024-05-08 20:27:19 +00:00
<?php
}
$j++; // increment counter
}
} ?>
2024-05-08 20:15:09 +00:00
</div>
</body>
</html>