245 lines
7.7 KiB
PHP
245 lines
7.7 KiB
PHP
<?php
|
|
/* Template Name: Coffee Label */
|
|
if(!is_user_logged_in()){
|
|
auth_redirect();
|
|
}
|
|
|
|
?>
|
|
<!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">
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
<style>
|
|
@page {
|
|
size: 7cm 7cm;
|
|
margin: 0;
|
|
}
|
|
|
|
/* acumin-variable-concept */
|
|
@font-face {
|
|
font-family: Acumin Variable Concept;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local("Acumin Variable Concept"), local("AcuminVariableConcept"), url(<?php echo get_theme_file_uri('/fonts/acumin-variable-concept.woff2'); ?>) format("woff2");
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.label {
|
|
width: 6.8cm;
|
|
height: 6.8cm;
|
|
border-radius: 50%;
|
|
margin: 0.05cm;
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: relative;
|
|
background: linear-gradient(
|
|
0deg,
|
|
rgba(255, 255, 255, 1) 28%,
|
|
rgba(231, 184, 32, 1) 28%
|
|
);
|
|
/* border: 1px solid black; */
|
|
}
|
|
|
|
.label .product-details {
|
|
font-family: 'Acumin Variable Concept', sans-serif;
|
|
letter-spacing: 0.23mm;
|
|
text-transform: uppercase;
|
|
margin-top: 0.6cm;
|
|
font-weight: bold;
|
|
font-variation-settings: 'wdth' 58, 'wght' 600;
|
|
font-size: 4mm;
|
|
}
|
|
|
|
.label .product-details p {
|
|
margin-block: 1.5mm;
|
|
}
|
|
|
|
.label .product-details .origin {
|
|
font-size: 4mm; /* so that 20 char names fit on one line */
|
|
font-weight: 700;
|
|
letter-spacing: calc(0.4 * 4px);
|
|
margin-block: 3mm;
|
|
min-height: 3mm;
|
|
font-variation-settings: 'wdth' 70, 'wght' 600;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.label .product-details .origin.non-coffee {
|
|
margin-top: 2.3cm;
|
|
}
|
|
|
|
.label .product-details .weight {
|
|
text-transform: lowercase;
|
|
font-weight: bold;
|
|
font-size: 4mm;
|
|
}
|
|
|
|
.label .product-details .code {
|
|
min-height: 6mm;
|
|
letter-spacing: calc(0.4 * 10px);
|
|
margin-top: 2mm;
|
|
font-size: 4mm;
|
|
}
|
|
|
|
.label .order-details {
|
|
text-align: center;
|
|
width: 100%;
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
font-size: 2.9mm; /* so that names as long as 50 characters stay on one line */
|
|
margin-top: 4.6mm; /* to center text inside white area */
|
|
position: absolute;
|
|
bottom: 5.9mm; /* Adjust this value to set the distance from the bottom of the label */
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.label .order-details p {
|
|
margin-block: 0.5mm;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<?php
|
|
foreach ($_GET["order_ids"] as $order_id) {
|
|
$order = wc_get_order($order_id);
|
|
|
|
// Check if shipping details exist
|
|
$shipping_first_name = $order->get_shipping_first_name();
|
|
$shipping_last_name = $order->get_shipping_last_name();
|
|
$shipping_postcode = $order->get_shipping_postcode();
|
|
|
|
// If any shipping detail is empty, use billing details
|
|
if (empty($shipping_first_name) || empty($shipping_last_name) || empty($shipping_postcode)) {
|
|
$first_name = $order->get_billing_first_name();
|
|
$last_name = $order->get_billing_last_name();
|
|
$postcode = $order->get_billing_postcode();
|
|
} else {
|
|
$first_name = $shipping_first_name;
|
|
$last_name = $shipping_last_name;
|
|
$postcode = $shipping_postcode;
|
|
}
|
|
|
|
$items = $order->get_items();
|
|
$total_items = $order->get_item_count();
|
|
$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);
|
|
|
|
$is_new = false;
|
|
|
|
foreach ($items as $item) {
|
|
$j = 0;
|
|
|
|
// 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;
|
|
$is_organic = 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;
|
|
}
|
|
}
|
|
}
|
|
|
|
$product_name = '';
|
|
$roast = '';
|
|
|
|
if ($is_coffee || $is_subscription) {
|
|
$brew_method = $item->get_meta("pa_brew-method");
|
|
$weight = $item->get_meta("weight");
|
|
} else {
|
|
$product_name = $item->get_name();
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
$quantity = $item->get_quantity();
|
|
for ($i = 0; $i < $quantity; $i++) {
|
|
if ($is_subscription) {
|
|
if (($order_subscription_coffees !== null)
|
|
&& (is_object($order_subscription_coffees[$i + $j]["coffee"]))){
|
|
$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);
|
|
}
|
|
} ?>
|
|
|
|
<div class="label">
|
|
<div>
|
|
<div class="product-details">
|
|
<?php if ($is_coffee || $is_subscription) { ?>
|
|
<p class="weight"><?php echo $weight; ?></p>
|
|
<?php } ?>
|
|
<p class="origin<?php echo ($is_coffee || $is_subscription) ? "" : " non-coffee"; ?>"><?php echo $product_name; ?></p>
|
|
<?php if ($is_coffee || $is_subscription) { ?>
|
|
<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 } ?>
|
|
<p class="code"><?php
|
|
echo $is_new ? "N" : "";
|
|
echo $gift_message ? "G" : "";
|
|
echo $is_organic ? "O" : "";
|
|
?></p>
|
|
</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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
}
|
|
$j++; // increment counter
|
|
}
|
|
} ?>
|
|
</div>
|
|
</body>
|
|
</html>
|