WP Native
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Order quantity: per 6 piecesHello @jeedieray,
1. Create a variable product
2. Create attributes like 1 Box (6 Pcs), 2 Box (12 Pcs) and so forthCheers,
NazForum: Plugins
In reply to: [WooCommerce] choice of a single variable thumb woocommerceAdding your site link might helps to look into the problem further. Meantime, add the below code on your themes fuctions.php. Alternatively use plugin like Code Snippet to add the code safely without breaking your site. Let me know if the problem still persist.
/** * Fix for issue where too many variations causes the front end to not pre-load * all variations and rely on AJAX. */ function custom_wc_ajax_variation_threshold( $qty, $product ) { return 200; } add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );Forum: Plugins
In reply to: [WooCommerce] Probable bug in VariablesGlad that solved your problem ๐
Cheers ๐ป
Naz.Forum: Plugins
In reply to: [WooCommerce] Probable bug in VariablesAh! Got your problem. Add the below code on your themes fuctions.php. Alternatively use plugin like Code Snippet to add the code safely without breaking your site. Let me know if the problem still persist.
/** * Fix for issue where too many variations causes the front end to not pre-load * all variations and rely on AJAX. */ function custom_wc_ajax_variation_threshold( $qty, $product ) { return 200; } add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );- This reply was modified 4 years, 3 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Probable bug in VariablesAre you using plugin like Variation swatches? If yes, go to attributes/colors and just rename and save some attributes to see if that helps. This exact had happened in the past and it was solved by doing the above.
Naz.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce stock analyticsMy bad. I’d suggest you to use like Stock manager for WooCommerce which will help you to manage stock much faster.
Cheers.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce stock analyticsHello @trakesh16,
Hint:
Use WooCommerce > Reports > Sales by products > Search products. Much faster than Analytics.Cheers.
Forum: Plugins
In reply to: [WooCommerce] Probable bug in VariablesHello @babrees,
Navigate to WooCommerce > Status > Tools and do the followings to see if that helps.
1. Delete all Orphaned variations
2. Regenerate Product lookup tables
3. Update databaseCheers,
Naz.`Forum: Plugins
In reply to: [WooCommerce] Product rename automaticallyHi @prabhath_amila,
Navigate to WooCommerce > Status > Tools and do the followings to see if that helps.
1. Delete all Orphaned variations
2. Regenerate Product lookup tablesCheers,
Naz.Forum: Plugins
In reply to: [WooCommerce] Customise page not loadingHello,
Your theme might be the culprit. Some of the WooCommerce components that is related to WooCommerce may havenโt been updated/outdated.
1. Disable your current theme
2. Install shopfront theme from Woo and if that makes any difference.Cheers,
Naz.Forum: Plugins
In reply to: [WooCommerce] Add Button to My Orders PageHi ๐
Check this out:
https://www.damiencarbery.com/2020/01/add-tracking-info-to-woocommerce-order/
Forum: Plugins
In reply to: [Custom Post Type UI] Taxonomy doesnโt show in rest apiHere’s the code for reference
function cptui_register_my_taxes() { /** * Taxonomy: Country of origins. */ $labels = [ "name" => __( "Country of origins", "martfury" ), "singular_name" => __( "Country of origin", "martfury" ), ]; $args = [ "label" => __( "Country of origins", "martfury" ), "labels" => $labels, "public" => true, "publicly_queryable" => true, "hierarchical" => true, "show_ui" => true, "show_in_menu" => true, "show_in_nav_menus" => true, "query_var" => true, "rewrite" => [ 'slug' => 'country_of_origin', 'with_front' => true, ], "show_admin_column" => true, "show_in_rest" => true, "show_tagcloud" => true, "rest_base" => "Country", "rest_controller_class" => "WP_REST_Terms_Controller", "show_in_quick_edit" => true, "show_in_graphql" => false, "meta_box_cb" => "country_of_origin", ]; register_taxonomy( "country_of_origin", [ "product" ], $args ); } add_action( 'init', 'cptui_register_my_taxes' );Forum: Plugins
In reply to: [Advanced Custom Fields (ACFยฎ)] Thumbnail not shown in the API responsesAppreciate if you can show an example.
Forum: Plugins
In reply to: [Cart PDF for WooCommerce] Create an invoice number@dkjensen Thank you once again. We do operate an e-comm website which is exclusively for building materials. Most of our customers are companies and they need a quotation as a part of their procurement process. This plugin literally saved us in that context where customer themself can generate quote. Thank you so much for making this free and we will be the first to support you if you launch this commercially.
Thanks,
Nazreen.Forum: Plugins
In reply to: [Cart PDF for WooCommerce] Create an invoice numberWOW. This is awesome! Great plugin, even great support. one correction above. think
wp_login_urltakes to the wp login page, instead how do we send to/my-account?Thank you so much ๐๐
- This reply was modified 4 years, 7 months ago by WP Native.