Enabling the deprecated addon feature fixed [product_brands_info type=’name,description‘] for me.
However, the shortcode ignores the type filter and displays ALL information including the name, banner image, categories, image (in a huge size for some reason) and the description. I only want the some of the info displayed and not all of it.
Is there a fix to the deprecated shortcut?
I also tried just showing the banner and description with the new shortcode but it’s not showing anything on the product page. I’ve tried these iterations):
[brb_description]
[brb_description banner_display=1 display_description=1]
[brb_description banner_display=’1′ display_description=’1′]
[brb_description banner_display=”1″ display_description=”1″]
Where the ID of the Product tied to the brand I want to show on the single product page is 865:
[brb_description brand_id=865 banner_display=1 display_description=1]
[brb_description brand_id=’865′ banner_display=’1′ display_description=’1′]
[brb_description brand_id=”865″ banner_display=”1″ display_description=”1″]
Where the Tag_ID of the brand I want to show on the single product page is 278 (The BrandID is not shown anywhere so I took the tagID from the URL of the particular brand I want to show, but I would rather it could automatically show the brand tied to the product on the single product page view)
[brb_description brand_id=278 banner_display=1 display_description=1]
[brb_description brand_id=’278′ banner_display=’1′ display_description=’1′]
[brb_description brand_id=”278″ banner_display=”1″ display_description=”1″]
Am I using this shortcode correctly?