PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Publish products issue

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 please
If 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.

Hello,

I am a pro user of the Bulk editor and have had a couple of issues slowing my work down for quite a while, these occur when I am publishing a product through the bulk editor and mean that I have to open each individual product to edit and then publish for these features to show or sync.

  • Firstly products when published through the bulk editor do not sync to facebook, the plugin used to do this is Facebook for Woocommerce.
  • Secondly I have code that shows delivering from city and country on each product on the frontend of my site but this does not show when publishing through the bulk editor and again I have to open each product individually and publish.

 

The code that I use to show this is:

add_action( 'woocommerce_single_product_summary', 'add_delivery_location_in_summary', 6 );
function add_delivery_location_in_summary () {
global $post;
$vendor_id = get_post_field( 'post_author', $post->ID );
$city = get_user_meta($vendor_id, '_vendor_city', true);
$country = get_user_meta($vendor_id, '_vendor_country', true);
$location ="";
if (!empty($city) && !empty($country)) {
$location ="<p>Delivering from:" . $city . ', ' . $country ."</p>";
}
echo $location;
}

Help to solve this or advice would be appreciated,
Thank you

Hello

Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png

After updating products my plugin calls standard hooks(events). It seems that these third-party features use other hooks (events) or do not work in Ajax mode

To solve this problem, you should find out what hooks this third-party functionality responds to for synchronizing product data

Thank you for your reply, I believe i've solved these issues now.

Hello

Great! Welcome;)