Masquer les attributs
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page pleaseIf you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
Quote from Herve30900 on December 11, 2022, 12:04Bonjour, je suis désolé de revenir sur ce sujet
J’ai changé d’hébergeur et le problème est à nouveau là :
J'utilise la version
BEAR - WooCommerce Bulk Editor Professional v.2.1.1
Actualized for WooCommerce v.7.1.1Je voudrai masquer tous les attributs pour tout le monde comme avant avec le code :
$WOOBE global ; if (intval($WOOBE->settings->get_shop_manager_visibility()[$t->name]) === 0) { continuer }
J’ai bien suivi vos instructions mais cela ne marche pas
Je vous ai laissé l'accès FTP
Merci pour votre aide
Hello, I'm sorry to come back to this topic.
I changed host and the problem is again here:
I use the version
BEAR - WooCommerce Bulk Editor Professional v.2.1.1
Updated for WooCommerce v.7.1.1I would like to hide all attributes for everyone like before with the code:
overall $WOOBE; if (intval($WOOBE->settings->get_shop_manager_visibility()[$t->name]) === 0) {continue}
I followed your instructions but it doesn't work.
I left you the FTP access
Thanks for your help
Bonjour, je suis désolé de revenir sur ce sujet
J’ai changé d’hébergeur et le problème est à nouveau là :
J'utilise la version
BEAR - WooCommerce Bulk Editor Professional v.2.1.1
Actualized for WooCommerce v.7.1.1
Je voudrai masquer tous les attributs pour tout le monde comme avant avec le code :
$WOOBE global ;
if (intval($WOOBE->settings->get_shop_manager_visibility()[$t->name]) === 0) {
continuer
}
J’ai bien suivi vos instructions mais cela ne marche pas
Je vous ai laissé l'accès FTP
Merci pour votre aide
Hello, I'm sorry to come back to this topic.
I changed host and the problem is again here:
I use the version
BEAR - WooCommerce Bulk Editor Professional v.2.1.1
Updated for WooCommerce v.7.1.1
I would like to hide all attributes for everyone like before with the code:
overall $WOOBE; if (intval($WOOBE->settings->get_shop_manager_visibility()[$t->name]) === 0) {continue}
I followed your instructions but it doesn't work.
I left you the FTP access
Thanks for your help
Quote from Pablo Borysenco on December 12, 2022, 17:18Hello
Please do a test
Hello
Please do a test
Quote from Herve30900 on December 12, 2022, 18:30Bonjour,
C'est Parfait !
Merci
Bonjour,
C'est Parfait !
Merci
Quote from Pablo Borysenco on December 13, 2022, 12:16Hello
Welcome;)
Hello
Welcome;)
Quote from Herve30900 on March 4, 2023, 19:17Hello,
I'm so sorry to come back to you again
I changed my host and my problem still persists:
my version
BEAR - WooCommerce Bulk Editor Professional v.2.1.3
Updated for WooCommerce v. 6.1.1I would like to hide all attributes for everyone with the code:
Global $WOOBE; if (intval($WOOBE->settings->get_shop_manager_visibility()[$t->name]) === 0) {continue}
...and I still can't get it to work
I left you the FTP access
Thanks for your help
Hello,
I'm so sorry to come back to you again
I changed my host and my problem still persists:
my version
BEAR - WooCommerce Bulk Editor Professional v.2.1.3
Updated for WooCommerce v. 6.1.1
I would like to hide all attributes for everyone with the code:
Global $WOOBE; if (intval($WOOBE->settings->get_shop_manager_visibility()[$t->name]) === 0) {continue}
...and I still can't get it to work
I left you the FTP access
Thanks for your help
Quote from Pablo Borysenco on March 6, 2023, 13:36Hello
Please clear all cache and do a test
Hello
Please clear all cache and do a test
Quote from Herve30900 on March 6, 2023, 15:58Thanks again !
So as not to bore you again... Can you explain to me what has been changed?
Sincerely
Herve
Thanks again !
So as not to bore you again... Can you explain to me what has been changed?
Sincerely
Herve
Quote from Herve30900 on March 6, 2023, 18:42Hello
I would like with this function to sort only the seller accounts who have created a shop on my site:
add_filter('woobe_users_args', function ($args) { return array('fields' => array('ID', 'display_name'), 'who' => 'vendors'); });
In my WooCommerce accounts they are listed as "Propriétaire du Magasin (Vendeur)" or as "vendor" and I noted in 'who' => 'vendor' but it's the whole list of accounts that shows...How to modify this function please
Sincerely
Hello
I would like with this function to sort only the seller accounts who have created a shop on my site:
add_filter('woobe_users_args', function ($args) { return array('fields' => array('ID', 'display_name'), 'who' => 'vendors'); });
In my WooCommerce accounts they are listed as"Propriétaire du Magasin (Vendeur)" or as"vendor" and I noted in 'who' => 'vendor' but it's the whole list of accounts that shows...
How to modify this function please
Sincerely
Quote from Herve30900 on March 6, 2023, 19:33"Vendor" has just been removed from User Roles it is "Propriétaire du Magasin (Vendeur)" who remains as seller .
"Vendor" has just been removed from User Roles it is"Propriétaire du Magasin (Vendeur)" who remains as seller .
Quote from Pablo Borysenco on March 7, 2023, 12:19Hello Herve
Can you explain to me what has been changed? - https://share.pluginus.net/image/i20230307120956.png
In file - \wp-content\plugins\woocommerce-bulk-editor\ext\filters\views\panel.php - https://share.pluginus.net/image/i20220823103404.png
Try to use this code:
add_filter('woobe_users_args', function($args){
if (isset($args['role__in'])) {
$args['role__in'] = ['vendor']; // add slug of the role
}
return $args;
});You need to find the correct role slug and paste it here - https://share.pluginus.net/image/i20230307121857.png
Hello Herve
Can you explain to me what has been changed? - https://share.pluginus.net/image/i20230307120956.png
In file - \wp-content\plugins\woocommerce-bulk-editor\ext\filters\views\panel.php - https://share.pluginus.net/image/i20220823103404.png
Try to use this code:
add_filter('woobe_users_args', function($args){
if (isset($args['role__in'])) {
$args['role__in'] = ['vendor']; // add slug of the role
}
return $args;
});
You need to find the correct role slug and paste it here - https://share.pluginus.net/image/i20230307121857.png
Quote from Herve30900 on March 7, 2023, 12:56Message d'erreur : syntax error, unexpected token "$"
dans :
add_filter('woobe_users_args', function($args){
if (isset($args['role__in'])) {
$args['role__in'] = ['vendeur'] ; // c'est le bon slug du rôle
}
retourne $ args;
});
Message d'erreur : syntax error, unexpected token"$"
dans :
add_filter('woobe_users_args', function($args){
if (isset($args['role__in'])) {
$args['role__in'] = ['vendeur'] ; // c'est le bon slug du rôle
}
retourne $ args;
});
Quote from Pablo Borysenco on March 7, 2023, 13:31https://share.pluginus.net/image/i20230307132942.png - auto-translator changes the code - this is not correct
https://share.pluginus.net/image/i20230307132942.png - auto-translator changes the code - this is not correct
Quote from Herve30900 on March 7, 2023, 15:35I hadn't paid attention...
Great, everything is perfect!
THANKS
I hadn't paid attention...
Great, everything is perfect!
THANKS
Quote from Herve30900 on March 7, 2023, 16:30Please,
Is Bear compatible with the extension : WCFM - WooCommerce Multivendor Marketplace ?
https://wclovers.com/knowledgebase_category/wcfm-marketplace/
Please,
Is Bear compatible with the extension : WCFM - WooCommerce Multivendor Marketplace ?
https://wclovers.com/knowledgebase_category/wcfm-marketplace/
Quote from Pablo Borysenco on March 8, 2023, 11:34Hello
Unfortunately, we do not have such information.
It all depends on how these third-party plugins store data.
Hello
Unfortunately, we do not have such information.
It all depends on how these third-party plugins store data.
Quote from Herve30900 on March 8, 2023, 15:46Merci Pablo
Je vais me renseigner chez " WCFM - WooCommerce Multivendor Marketplace"
Cordialement
Merci Pablo
Je vais me renseigner chez" WCFM - WooCommerce Multivendor Marketplace"
Cordialement