Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix unclosed tag #29

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Helper/Data.php
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ public function getPackageBreakdownText($packages, $carrierGroupName = false)
$boxText .= ' Value='.$box['declaredValue']. ':';
$boxText .= $this->getProductBreakdownText($box);
}
$boxText .= '</br>';
$boxText .= '<br/>';
}
return $boxText;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<div class="order-shipping-method-summary">
<strong class="order-shipping-method-not-available"><?php /* @escapeNotVerified */ echo __('Sorry, no quotes are available for this order.') ?></strong>
</div>
</br>
<br/>
<!--SHQ16-2159 allow custom admin shipping when no rates are displayed -->
<?php if($helper->adminShippingEnabled()): ?>
<dt class="admin__order-shipment-methods-title"><?php echo 'Custom Shipping'; ?></dt>
Expand Down
14 changes: 7 additions & 7 deletions src/view/adminhtml/templates/order/view/shq_info.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -34,34 +34,34 @@
<div class="order-shipping-additional">
<?php if($carrierGroup['pickup_location'] != ''): ?>
<?php echo __('Location') .': ' .$block->escapeHtml($carrierGroup['pickup_location']) ?>
</br>
<br/>
<?php endif; ?>
<?php if($carrierGroup['delivery_date'] != ''): ?>
<?php echo __('Delivery date') .': ' .$block->escapeHtml($block->getFormattedDate($carrierGroup['delivery_date'], $carrierGroup['carrier_group_detail'])) ?>
<?php endif; ?>
<?php if($carrierGroup['dispatch_date'] != ''): ?>
</br>
<br/>
<?php echo __('Dispatch date') .': ' .$block->escapeHtml($block->getFormattedDate($carrierGroup['dispatch_date'], $carrierGroup['carrier_group_detail'])) ?>
<?php endif; ?>
<?php if($carrierGroup['time_slot'] != ''): ?>
</br>
<br/>
<?php echo __('Time slot') .': ' .$block->escapeHtml($block->getFormattedTimeSlot($carrierGroup['time_slot'])) ?>
<?php endif; ?>
<?php if($carrierGroup['liftgate_required'] === '1'): ?>
<?php echo __('Liftgate required'); ?>
</br>
<br/>
<?php endif; ?>
<?php if($carrierGroup['inside_delivery'] === '1'): ?>
<?php echo __('Inside Delivery'); ?>
</br>
<br/>
<?php endif; ?>
<?php if($carrierGroup['limited_delivery'] === '1'): ?>
<?php echo __('Limited Access Delivery'); ?>
</br>
<br/>
<?php endif; ?>
<?php if($carrierGroup['notify_required'] === '1'): ?>
<?php echo __('Scheduled Appointment'); ?>
</br>
<br/>
<?php endif; ?>
</div>
<?php endforeach; ?>
Expand Down