wprock
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Disable Thumbnail Regeneration not workingare you put the code inside the init action?
- This reply was modified 6 years, 7 months ago by wprock.
Forum: Plugins
In reply to: [WooCommerce] Changing the City Field on the Cart PageYou will get the at this location plugins/woocommerce/templates/cart
Forum: Plugins
In reply to: [WooCommerce] id=”gallery-2″need duplicate gallery items multiple times? I think that you will remove it from one section.
Forum: Plugins
In reply to: [WooCommerce] Sale price remains after sale endsIt is not a bug. You will do this manually. There have no any automatic option. But you can do with custom code.
Forum: Plugins
In reply to: [WooCommerce] Sale price remains after sale endsEdit the product and remove the price value from sales price input box.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce cannot detect SSL certificateEnable the force SSL option for checkout page from WooCommerce Settings page. Then all will be fine.
Forum: Plugins
In reply to: [WooCommerce] Thumbnails | Using Jetpack Photon insteadYou can add into the functions.php file or your custom plugin’s file
Forum: Plugins
In reply to: [WooCommerce] How to Export Product ReviewsYou can try this plugin Product Reviews Import Export for WooCommerce
Forum: Plugins
In reply to: [WooCommerce] After your woocommerce_order_action_ completesYou can use woocommerce_process_shop_order_meta hook with 51 priority
Forum: Plugins
In reply to: [WooCommerce] Order post metaTarget the save_post_shop_order hook and write the custom PHP snippet there. Small example:
add_action( 'save_post_shop_order', 'paulc_add_post_meta' ); function paulc_add_post_meta( $post_id ) { //* $post_id is your order ID //* Write your code here }I am not getting this function wc_product_meta_lookup() into the WooCommerce plugin.
Forum: Plugins
In reply to: [WooCommerce] can I delete classic editorYou can remove your classic editor plugin if it is not require for your site. Gutenberg editor will not enable for WooCommerce single product layout. They forcefully disabled it. Right now Gutenberg editor will be the bad option for WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Currency Help!! Urgent!!!You can try PayPal or Authorize.net payment gateway
Forum: Plugins
In reply to: [WooCommerce] add company field in “shipping calculator”Why you need this field there? This field is already available on checkout page.
Forum: Plugins
In reply to: [Beaver Lister] Identify modules vendorsWe can’t identify the UABB module or any other third party plugins. If third party plugin’s developer will use the unique name for their modules, that would be the good option for these scenario.