We have installed the plugin for brand identification on our wordpress website. After using woo-commerce APIs we are unable to identify brand of the product as there is no key or value which will help us identify it. Does this plugin add a key or value to the product in products json which we get from woo-commerce APIs.
]]>Hi guys,
I’ve noticed that Premmerce Brands for WooCommerce is showing as: “Incompatible with ‘High-Performance order storage'”.
Is this sometuong you are aware of?
]]>Hello,
I added a blog prefix to the WordPress permalink for the internal pages of the posts. But this case is also applied to the address of brand category pages.
…….com/blog/product_brand/…….
If it shouldn’t be like this because it will ruin the SEO of the site.
Please check this and release an update to fix this problem.
Thanks.
Hello everyone,
Am I right that your plugin creates a custom taxonomy for products and then displays a list of brands on a page using a shortcode?
I just want to create one more custom taxonomy called “Retailers” and then display it on the page, but I don’t know how to create a shortcode for the “brands” taxonomy. Can you please explain how to create a shortcode using the “brands” taxonomy?
]]>Have been looking into FAQs and the forums but havent found a how to guide for translating brands and their slugs with WPML
]]>Hi,
is it a bug coming from some other plugin, or yours: when using with Polylang, set the taxonomy to be translatable, create the translation, both brands (two languages) can be viewed.
Then when it is in the second language it is OK to switch to the default one; HOWEVER when switching from the default to the second, it goes to the home page (i.e. doesn’t detect there is a translation).
I.e. have you tested it with Polylang?
Question 2: where it is set what URL to use for the breadcrumbs (“Brands”), is it hardcoded or can be set (same apply when trying to “translate” the slug used for the URL of brands).
]]>Подробности ошибки =================================== Ошибка с типом E_ERROR возникла на строке 23 файла /home/public_html/wp-content/plugins/premmerce-woocommerce-brands/freemius/templates/forms/deactivation/retry-skip.php.
Сообщение об ошибке: Uncaught ValueError: Unknown format specifier ??? in /home/public_html/wp-content/plugins/premmerce-woocommerce-brands/freemius/templates/forms/deactivation/retry-skip.php:23 Stack trace: #0 /home/public_html/wp-content/plugins/premmerce-woocommerce-brands/freemius/templates/forms/deactivation/retry-skip.php(23): sprintf() #1 /home/public_html/wp-content/plugins/premmerce-woocommerce-brands/freemius/includes/fs-core-functions.php(57): require(‘/home/…’) #2 /home/public_html/wp-content/plugins/premmerce-woocommerce-brands/freemius/includes/class-freemius.php(2619): fs_get_template() #3 /home/public_html/wp-content/plugins/premmerce-woocommerce-brands/freemius/includes/class-freemius.php(2498): Freemius->_get_uninstall_reasons() #4 /home/public_html/wp-includes/class-wp-hook.php(307): Freemius->_add_deactivation_feedback_dialog_box() #5 /home/public_html/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters() #6 /home/public_html/wp-includes/plugin.php(474): WP_Hook->do_action() #7 /home/public_html/wp-admin/admin-footer.php(78): do_action() #8 /home/public_html/wp-admin/plugins.php(784): require_once(‘/home/…’) #9 {main} thrown
]]>This website shows that this version of the plugin is insecure. This plugin shows recently updated. Any ideas why they have a different version number? https://wpscan.com/plugin/premmerce-woocommerce-brands
Or is the plugin still insecure?
]]>The plugin does not work on PHP 8.
Error:
domains\wp-content\plugins\premmerce-woocommerce-brands\freemius\templates\forms\deactivation\retry-skip.php on line 23
Hi, how to hide empty Brands and only show which has products under it on the brand page?
]]>Using the shortcode [brands_page]
Any way to use product lazy loading to avoid pagination of products?
Such as: [brands_page lazy_load=”true”]
Also any other shortcode options, I didn’t see any in the documentation page.
]]>The URL exists as a page but it is redirected a product. We have tried:
– Changing the slug
– Saving permalinks
– Saving premmerce settings
The redirected URL doesn’t make sense either, it’s not a logical permalink structure.
How can we debug this?
]]>I’m looking for a code to output some brands/pictures on my front page.
how can i achieve this?
Hi, please update plugin changelog.
Thanks.
Hi,
While duplicating a product, I get this error:
id was called incorrectly. Product properties should not be accessed directly.
I noticed that you are using an outdated way to get the product id in src -> Admin -> addBrandToDuplicatedProduct (line 63):
$terms = wp_get_object_terms($product->id, 'product_brand');
This line should be replaced by the following:
$terms = wp_get_object_terms( $product->get_id(), 'product_brand' );
Hope this fixes this error.
Regards,
Svitozar Lys
]]>Is there a way to only list brands that have active inventory on the brands page?
]]>Hi,
Your plugin is nice, but what I need is to have the brand recognized by search console, which is not happening.
]]>Hi,
In the WordPress Permalink settings we have a custom common settings “/newsroom/%postname%/” The problem is brand page is adding the permalink prefix for posts to all the brand links.
For example the brands page link has this url structure https://www.corporatearmor.com/newsroom/product_brand/arista-networks/ instead of https://www.corporatearmor.com/product_brand/arista-networks/
I had added a piece of code to function.php to remove newsroom from brand page urls but it gives a 404 when trying to go to a page without newsroom in the url.
Anything I can add to funtions.php to get this to resolve? Or a way to get Brands plugin to ignore custom settings permalink for blog posts?
Thanks!
]]>Здравствуйте!
Перешел на ваш плагин с аналогичного по функционалу, НО в Google Search Console в подразделе “Продукты” с вашим плагином появились ошибки, а именно:
Предупреждение Отсутствует поле “brand” Ошибка
Ваш плагин не обновлялся 3 месяца, эта ошибка будет исправлена в последующих обновлениях?
Спасибо.
Any chance you all could release an update that checks network activated plugins for WooCommerce as well? Right now I’m receiving a message from the plugin about WooCommerce activation being required when it already is. Thank you!
May I suggest modifying the validateRequiredPlugins function to be similar to the following:
private function validateRequiredPlugins() {
$plugins = array();
/**
* Check if WooCommerce is active
**/
$plugin = 'woocommerce/woocommerce.php';
$subsite_active_plugins = apply_filters('active_plugins', get_option('active_plugins'));
$network_active_plugins = apply_filters('active_plugins', get_site_option('active_sitewide_plugins'));
if((empty($subsite_active_plugins) || !in_array($plugin, $subsite_active_plugins)) && (empty($network_active_plugins) || !array_key_exists($plugin, $network_active_plugins))) {
$plugins[] = '<a target="_blank" href="https://www.ads-software.com/plugins/woocommerce/">WooCommerce</a>';
}
return $plugins;
}
]]>
Hi,
How can I display the Brand name above the product title on my Shop page?
Please advise, many thanks.
]]>Hi, my store sells motorcycle products, I’m using the Premmerce Brands plugin in combination with a Products Filter. Unfortunately the Premmerce Filter wouldn’t work with the theme, so I had to use one from a different company. I’ve now got a problem where I’m trying to filter the tyres-search by sizes and Brand, but when I use the taxonomy ‘Brand’ it lists all the clothing and spares brand-names, as well as the tyres brands.
If the Brands could be sub-categorised (parent/child brands), I could set the filter to only display the ‘Tyre Brands’ (parent Category).
I saw another support request on a similar topic, where you mentioned this feature may be worked-on for next release, how soon is that likely to be available please?
]]>I have recently installed Premmerce Woocommerce Brands. I have 600+ products, over 10-something brands. Is there an option to assign multiple products to a brand at the same time?
]]>Is there a recommended premium plugin that would allow for the Premmerce brands to be indexed/searchable in WordPress/WooCommerce website search?
Having difficulty determining best method for brand names appear in searches.
]]>Hi,
How can I display the brand’s name in single product page?
Kindly help.
]]>Curious to see what methods or best practices there might be either within the plugin or separately for having older/out of stock items sub-listed within a brand page. Essentially would like to have a separate section or additional page link within a brand page that displays the older items.
]]>Hi Guys
when applying the brand widget to a sidebar, the text of the brand plugin is grey, how can I get the widget to keep the same colour as the rest of the widgets on my site?
I’m using the flatsom theme and I have configured widget header and text colour, but the plugin is not honouring these, instead, the text is grey
many thanks
steve
]]>Hello
Firstly I want to say thank You for all your work. Your plugin is awesome.
But could you add “structured data”? Google search console show me warning can not found a brand field.
Hi
It would be great to have functions “is_brand()” and “is_brand_list” (similar to is_shop() , is_product_category() etc..).
To check if the user is on brand page or on brand listing.
To make it abstract over is_tax(‘product_brand’, $term )
Thanks!
]]>I have created a shop with 400 products and created 125 brands using woocommerce attributes and these are listed against products. Can I import the list of the brands already created and reassign products to the new brand rather than the attribute? Or do they need to be individually created?
]]>