andsfdf3
Forum Replies Created
Viewing 2 replies - 1 through 2 (of 2 total)
-
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Description, image and bannerNow everything works for me on the local server. And on the hosting does not work. Shortcode displays nothing. What could be the reason?
<?php echo do_shortcode('[custom_pwb_brand_info]') ?>- This reply was modified 7 years, 6 months ago by andsfdf3.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Description, image and banner//Brand hero page shortcode function custom_pwb_brand_info() { if( is_product_taxonomy() ){ $brands = wp_get_post_terms( get_the_ID(), 'pwb-brand' ); foreach( $brands as $brand ) { $attachment_id = get_term_meta( $brand->term_id, 'pwb_brand_image', true ); $attachment_src = wp_get_attachment_image_src( $attachment_id,'full' ); $brand_banner_id = get_term_meta($brand->term_id, 'pwb_brand_banner', true); $brand_banner_src = wp_get_attachment_image_src( $brand_banner_id,'full' ); echo '<div class="row align-items-center">'; echo '<div class="col-12 col-sm-6 text-center">'; echo '<img src="'.$attachment_src[0].'" alt="">'; echo '<p>'.$brand->description.'</p>'; echo '</div>'; echo '<div class="col-12 col-sm-6">'; echo '<img src="'.$brand_banner_src[0].'" alt="">'; echo '</div>'; echo '</div>'; } } } add_shortcode( 'custom_pwb_brand_info', 'custom_pwb_brand_info' );
Viewing 2 replies - 1 through 2 (of 2 total)