chore: copy changes on WCS banner
This commit is contained in:
parent
19bdc1c35b
commit
e445918c8e
|
@ -154,11 +154,21 @@
|
||||||
border: 1px solid #e6e6e6;
|
border: 1px solid #e6e6e6;
|
||||||
margin-right: 2em;
|
margin-right: 2em;
|
||||||
padding: 4em;
|
padding: 4em;
|
||||||
|
max-width: 200px;
|
||||||
|
|
||||||
.addons-img {
|
.addons-img {
|
||||||
max-height: 86px;
|
max-height: 86px;
|
||||||
max-width: 97px;
|
max-width: 97px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.is-full-image {
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
.addons-img {
|
||||||
|
max-height: 100%;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.addons-promotion-block {
|
.addons-promotion-block {
|
||||||
|
@ -219,6 +229,20 @@
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.wcs-logos-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: row;
|
||||||
|
|
||||||
|
li {
|
||||||
|
margin-right: 8px;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.wcs-service-logo {
|
.wcs-service-logo {
|
||||||
max-width: 40px;
|
max-width: 40px;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
Binary file not shown.
After Width: | Height: | Size: 467 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB |
|
@ -393,10 +393,10 @@ class WC_Admin_Addons {
|
||||||
);
|
);
|
||||||
|
|
||||||
$defaults = array(
|
$defaults = array(
|
||||||
'image' => WC()->plugin_url() . '/assets/images/wcs-extensions-banner-3x.png',
|
'image' => WC()->plugin_url() . '/assets/images/wcs-extensions-banner-3x.jpg',
|
||||||
'image_alt' => __( 'WooCommerce Shipping', 'woocommerce' ),
|
'image_alt' => __( 'WooCommerce Shipping', 'woocommerce' ),
|
||||||
'title' => __( 'Buy discounted shipping labels — then print them from your dashboard.', 'woocommerce' ),
|
'title' => __( 'Save time and money with WooCommerce Shipping', 'woocommerce' ),
|
||||||
'description' => __( 'Integrate your store with USPS to buy discounted shipping labels, and print them directly from your WooCommerce dashboard. Powered by WooCommerce Shipping.', 'woocommerce' ),
|
'description' => __( 'Print discounted USPS and DHL labels straight from your WooCommerce dashboard and save on shipping.', 'woocommerce' ),
|
||||||
'button' => __( 'Free - Install now', 'woocommerce' ),
|
'button' => __( 'Free - Install now', 'woocommerce' ),
|
||||||
'href' => $button_url,
|
'href' => $button_url,
|
||||||
'logos' => array(),
|
'logos' => array(),
|
||||||
|
@ -428,6 +428,10 @@ class WC_Admin_Addons {
|
||||||
'link' => WC()->plugin_url() . '/assets/images/wcs-usps-logo.png',
|
'link' => WC()->plugin_url() . '/assets/images/wcs-usps-logo.png',
|
||||||
'alt' => 'USPS logo',
|
'alt' => 'USPS logo',
|
||||||
),
|
),
|
||||||
|
array(
|
||||||
|
'link' => WC()->plugin_url() . '/assets/images/wcs-dhlexpress-logo.png',
|
||||||
|
'alt' => 'DHL Express logo',
|
||||||
|
),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
@ -439,7 +443,7 @@ class WC_Admin_Addons {
|
||||||
$block_data = array_merge( $defaults, $local_defaults, $block );
|
$block_data = array_merge( $defaults, $local_defaults, $block );
|
||||||
?>
|
?>
|
||||||
<div class="addons-wcs-banner-block">
|
<div class="addons-wcs-banner-block">
|
||||||
<div class="addons-wcs-banner-block-image">
|
<div class="addons-wcs-banner-block-image is-full-image">
|
||||||
<img
|
<img
|
||||||
class="addons-img"
|
class="addons-img"
|
||||||
src="<?php echo esc_url( $block_data['image'] ); ?>"
|
src="<?php echo esc_url( $block_data['image'] ); ?>"
|
||||||
|
@ -449,7 +453,7 @@ class WC_Admin_Addons {
|
||||||
<div class="addons-wcs-banner-block-content">
|
<div class="addons-wcs-banner-block-content">
|
||||||
<h1><?php echo esc_html( $block_data['title'] ); ?></h1>
|
<h1><?php echo esc_html( $block_data['title'] ); ?></h1>
|
||||||
<p><?php echo esc_html( $block_data['description'] ); ?></p>
|
<p><?php echo esc_html( $block_data['description'] ); ?></p>
|
||||||
<ul>
|
<ul class="wcs-logos-container">
|
||||||
<?php foreach ( $block_data['logos'] as $logo ) : ?>
|
<?php foreach ( $block_data['logos'] as $logo ) : ?>
|
||||||
<li>
|
<li>
|
||||||
<img
|
<img
|
||||||
|
|
Loading…
Reference in New Issue