wpdwc_weight_half

/** Filter to change the half ounce weight name in WooConnect */ function acme_weight_half( $weighthalf ) { $weighthalf = ’14g’; return $weighthalf; } add_filter( ‘wpdwc_weight_half’, ‘acme_weight_half’ );

 

wpdwc_weight_quarter

/** Filter to change the quarter ounce weight name in WooConnect */ function acme_weight_quarter( $weightquarter ) { $weightquarter = ‘7g’; return $weightquarter; } add_filter( ‘wpdwc_weight_quarter’, ‘acme_weight_quarter’ );

 

wpdwc_weight_eighth

/** Filter to change the eighth weight name in WooConnect */ function acme_weight_eighth( $weighteighth ) { $weighteighth = ‘3.5g’; return $weighteighth; } add_filter( ‘wpdwc_weight_eighth’, ‘acme_weight_eighth’ );

 

wpdcwc_weight_gram

/** Filter to change the gram weight name in WooConnect */ function acme_weight_gram( $weightgram ) { $weightgram = ‘1g’; return $weightgram; } add_filter( ‘wpdwc_weight_gram’, ‘acme_weight_gram’ );

 

cannabiz_navigation_after

function acme_nav_search() { /* Your codes here */ } add_action( ‘cannabiz_navigation_after’, ‘acme_nav_search’ );

 

cannabiz_footer_designedby

add_filter( "cannabiz_footer_designedby","cannabiz_footer" ); function cannabiz_footer() { $cannabiz_footer_designedby = " Your text here"; return $cannabiz_footer_designedby; }

 

wpd_growers_widget_inside_bottom

/* Add custom code inside the bottom of the Growers widget */ add_action( ‘wpd_growers_widget_inside_bottom’, ‘acme_growers_widget_inside_bottom’ ); function acme_growers_widget_inside_bottom() { // Place your custom code here }

 

wpd_growers_widget_inside_top

/* Add custom code inside the top of the Growers widget */ add_action( ‘wpd_growers_widget_inside_top’, ‘acme_growers_widget_inside_top’ ); function acme_growers_widget_inside_top() { // Place your custom code here }