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" );

 

CannaBizWeek – Newsletter Box

function custom_newsletter_box() { echo "<div class=’hentry newsletter-box’> <h2>Join our Newsletter</h2> <p>Add some more text here to convince people that signing up is worth it.</p> <form> <input type=’text’ class=’newsletter-email’ value=” placeholder=’Email Address’ /> <input type=’submit’ class=’newsletter-submit’ value=’JOIN NOW!’ /> </form> </div>"; } add_action( "cannabiz_single_after", "custom_newsletter_box" );

 

CannaBizWeek – Newsletter Box Style

.hentry.newsletter-box { background: #454545; color: #FFF; overflow: auto; padding: 24px; text-align: center; } .hentry.newsletter-box h2 { font-size: 48px; margin: 0; padding-top: 0; } .hentry.newsletter-box p { margin: 0 0 24px 0; } .hentry.newsletter-box input.newsletter-email { border: 1px solid #FFF; float: left; margin-right: 1%; padding: 18px; width: 68%; } .hentry.newsletter-box input.newsletter-submit { float: left; width: 30%; […]

 

CannaBizWeek – Top Bar Link

function custom_topbar_link() { echo "<a href=’#’ class=’topbar-link’><i class=’fa fa-globe’ aria-hidden=’true’></i> New Link</a> "; } add_action( "cannabiz_topbar_inside_before_email", "custom_topbar_link" );

 

CannaBizWeek – Designed by Footer Copyright

function custom_cannabiz_footer() { $cannabiz_footer_designedby = "| Designed by <a href=’http://www.robertdevore.com’>Robert DeVore</a>"; return $cannabiz_footer_designedby; } add_filter( "cannabiz_footer_designedby", "custom_cannabiz_footer" );