Merge branch 'main' of ssh://git.autonomic.zone:2222/autonomic-cooperative/mont58-theme
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
commit
ad65b5a4b8
@ -197,7 +197,7 @@ function mont58_coffee_label_add_sidepanel()
|
||||
{
|
||||
add_meta_box(
|
||||
"mont58_coffee_label_sidepanel",
|
||||
"Coffee Label",
|
||||
"Label",
|
||||
"mont58_coffee_label_render_sidepanel",
|
||||
"shop_order",
|
||||
"side",
|
||||
|
@ -39,6 +39,7 @@ if(!is_user_logged_in()){
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
background: linear-gradient(
|
||||
0deg,
|
||||
rgba(255, 255, 255, 1) 28%,
|
||||
@ -82,7 +83,10 @@ if(!is_user_logged_in()){
|
||||
}
|
||||
|
||||
.label .order-details {
|
||||
padding-bottom: 1em;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
width: 88%;
|
||||
top: 120px;
|
||||
font-size: calc(0.35 * 17px);
|
||||
}
|
||||
|
||||
@ -130,12 +134,12 @@ if(!is_user_logged_in()){
|
||||
}
|
||||
}
|
||||
|
||||
if (!$is_coffee && !$is_subscription) {
|
||||
continue;
|
||||
}
|
||||
|
||||
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
|
||||
@ -167,11 +171,15 @@ if(!is_user_logged_in()){
|
||||
<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 $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" : "";
|
||||
|
Loading…
Reference in New Issue
Block a user