Manigtvr
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Square] Variable product and custom product types not supportedHi Team,
We have updated the Square plugin, Woocommerce, and WordPress to its latest version. but now the site is very very slow. The users were unable to access the site.
SO now we have reverted the Woocommerce and Square plugins. if we deactivated the square plugin, site is working fine. we are using square plugin for products Syn.
So could you check and let us know your solutions.
Thanks,
- This reply was modified 10 months, 2 weeks ago by Manigtvr.
Forum: Plugins
In reply to: [WooCommerce Square] Variable product and custom product types not supportedHi Team ,
Please find below our inline reply.
System Status Report which you can find via WooCommerce > Status > Get system report > Copy for support.
https://pasteboard.co/ntHFYQNLk2z9.png
Fatal error logs : there is no fatal error.
Are SKUs set for your Square and WooCommerce products? This is how the plugin will match products between these systems
Yes. We are match product with SKU.
Is the Square product assigned to the Location that’s configured in the plugin settings? This plugin only supports one Square Location, so if some products aren’t syncing as expected, double-check to ensure they are in the same Square Location as defined in the plugin settings.
Yes. we are configured the business location Please refer the screenshot.
https://pasteboard.co/H3D8zIrIdMjO.jpg
Check it and let me know. now the simple products also do not Sync. Please refer to the screenshot below.
https://pasteboard.co/D4BbA7n1l4E9.jpg
Thanks
Forum: Plugins
In reply to: [WooCommerce Square] Variable product and custom product types not supportedHi @xue28,
We will check smart bundles product type with ?WPC Product Bundles for WooCommerce?support.
The default Woocommerce variable product is not Sync. Please check and update to us.
We have downgraded to version 2.1.0. now the issue is fixed.
Thanks for the team
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] validated before proceeding to PayPal pageHi @bottazzigiacomo ,
We have facing the same issue. did you find any solution on this?
Hi We can archive to add custom script and ajax functions.
Step 1: Create the option to upload image using ACF custom fields plugin in the 3D flip post type.
Step 2 : add this script to the footer.php in your active theme.
<script type="text/javascript"> (function($) { jQuery(document).ready(function() { var ajaxurl = "<?php echo admin_url('admin-ajax.php'); ?>"; jQuery("._3d-flip-book").each(function() { var El_img = jQuery(this ).find('img'); // El_img.addClass("test"); var post_id = jQuery(this ).data('id'); var data = { 'action': 'change_thumbnail_3d_flip', 'post_id': post_id, // 'security': '<?php //echo wp_create_nonce("changethumbnail3dflip"); ?>' }; $.post(ajaxurl, data, function(response) { if(response.success){ var result = $.parseJSON(response.data); console.log(result.image_url); if(result.image_url != 0){ El_img.attr('src', ''); El_img.attr('src', result.image_url); } } }); }); }); })(jQuery); </script>
Step 3 : Add this code to your functions.php file.
add_action('wp_ajax_change_thumbnail_3d_flip', 'change_thumbnail_3d_flip_callback'); add_action('wp_ajax_nopriv_change_thumbnail_3d_flip', 'change_thumbnail_3d_flip_callback'); function change_thumbnail_3d_flip_callback() { // check_ajax_referer('changethumbnail3dflip', 'security'); $post_id = $_REQUEST['post_id']; $image_url = 0; if(!empty($post_id)){ $image_obj = get_field('upload_thumbnail', $post_id); if( !empty( $image_obj ) ){ $image_url = $image_obj; } } $response['image_url'] = $image_url; $response = json_encode($response); wp_send_json_success($response); wp_die(); }
Step 4 : Upload your thumbnail in 3D flip
now it will working fine. i am using the same