geno/wp-content/plugins/cartflows/modules/thankyou/includes/thankyou-dynamic-css.php
2024-02-01 11:54:18 +00:00

40 lines
1,017 B
PHP

<?php
/**
* Dynamic Thank you css.
*
* @package CartFlows
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$output = "
.wcf-thankyou-wrap{
color: {$text_color};
font-family: {$text_font_family};
max-width:{$container_width}px;
font-size: {$text_font_size}px;
}
.woocommerce-order h2.woocommerce-column__title,
.woocommerce-order h2.woocommerce-order-details__title,
.woocommerce-order .woocommerce-thankyou-order-received,
.woocommerce-order-details h2,
.woocommerce-order h2.wc-bacs-bank-details-heading,
.woocommerce-order h2.woocommerce-order-downloads__title {
color: {$heading_text_color};
font-family: {$heading_font_family};
font-weight: {$heading_font_weight};
}
.woocommerce-order ul.order_details,
.woocommerce-order .woocommerce-order-details,
.woocommerce-order .woocommerce-customer-details,
.woocommerce-order .woocommerce-bacs-bank-details,
.woocommerce-order .woocommerce-order-downloads{
background-color: {$section_bg_color}
}
img.emoji, img.wp-smiley {}
";