wpd_ecommerce_checkout_email_subject_patient

/** * Change checkout email subject for patients */ function acme_checkout_email_subject_patient() { $email_subject_text = ‘Thank you for your order.’; // Change this text. return $email_subject_text; } add_filter( ‘wpd_ecommerce_checkout_email_subject_patient’, ‘acme_checkout_email_subject_patient’ );

 

wpd_ecommerce_single_item_price

<?php /** * Hide single item price display for non-logged in users * * @param string $display_price */ function acme_single_item_price_display( $display_price ) { // Get WPD settings from General tab. $wpdas_general = get_option( ‘wpdas_general’ ); // Check if user is required to be logged in to shop. if ( isset( $wpdas_general[‘wpd_ecommerce_cart_require_login_to_shop’] ) ) { $login_to_shop […]

 

wpd_ecommerce_account_admin_patients_text

<?php /** * Change "Patients" text on admin Account page. */ function acme_vendors_text() { $vendors_text = ‘Vendors’; // Change this text. return $vendors_text; } add_filter( ‘wpd_ecommerce_account_admin_patients_text’, ‘acme_vendors_text’ );

 

CannaBiz Logo image max width

.site-branding img { max-width: 60px; } @media screen and (max-width: 767px) { .site-branding img { max-width: 180px; } }

 

CannaBizWeek – Add Categories to WP Dispensary Shortcodes

function cannabiz_wpd_shortcode_categories() { if ( in_array( get_post_type(), array( ‘flowers’, ‘prerolls’ ) ) ) { ?> <div class="cannabiz-categories"><?php echo get_the_term_list( get_the_id(), ‘flowers_category’, ”, ‘, ‘ ); ?></div> <?php } if ( in_array( get_post_type(), array( ‘concentrates’ ) ) ) { ?> <div class="cannabiz-categories"><?php echo get_the_term_list( get_the_id(), ‘concentrates_category’, ”, ‘, ‘ ); ?></div> <?php } if ( in_array( […]

 

CannaBizWeek – Add Categories to WP Dispensary Shortcodes Style

.cannabiz-categories { position: absolute; top: 10px; left: 10px; } .cannabiz-categories a, .cannabiz-categories a:visited { color: #FFF; background: #76BD1D; padding: 5px; border-radius: 3px; font-size: 13px; } .cannabiz-categories a:hover { color: #FFF; background: #8224e3; }

 

CannaBizWeek – Advertisements 2

function custom_ad_box_sidebar() { echo "<p><a href=’CUSTOMURL’><img src=’IMAGEURL’ alt=” /></a></p>"; } add_action( "cannabiz_sidebar_inside_bottom", "custom_ad_box_sidebar" );

 

CannaBizWeek – Advertisements 1

function custom_ad_box() { echo "<p><a href=’CUSTOMURL’><img src=’IMAGEURL’ alt=” /></a></p>"; } add_action( "cannabiz_single_after", "custom_ad_box" );