dineshkrish
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Not receiving emailshow you resolve it please explain, it will save my day please.
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Results FoundHello @realmag777
Sounds Good.. 🙂
Forum: Plugins
In reply to: [WooCommerce] issue on admin new orderit looks not an server problem how can you check it please explain.
Forum: Plugins
In reply to: [WooCommerce] issue on admin new orderSorry, It occurs my fresh setup to please create an product and make with some options as Veriable Product and then just delete the product.
Now, Go to add order in woocommerce order page and click add item and search with the product name which one was we deleted the options of the product was shown. please confirm meForum: Plugins
In reply to: [WooCommerce] issue on admin new orderNo, If I delete a variable product parent only was changed the post status trash and all the others still as publish.
1. If we need to set while trash an product and their sub too,
2. else get product and options when the parent as published status.if i wrong please advice.
Forum: Plugins
In reply to: [WooCommerce] issue on admin new orderI deleted my variable product on edit screen by “Move to Trash” link, how ever I deleted the parent then on add item popup search results all the variation of the parent are displaying,
Forum: Plugins
In reply to: [WooCommerce] issue on admin new orderYes it takes the result from post table but i was search with the woocommerce_json_search_products_and_variations so the parent was not coming but the variation of the product was coming can you get my point Mike?
the product id – 23924 was deleted.
But the Variation of product – 23925,23926,23927 are coming on the search resultForum: Plugins
In reply to: [WooCommerce] issue on admin new orderbut in search result will not to place the trashed products right?
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Results FoundOk Real and One more thing, If we already have the price filter and then change the color by check box it generates the min and max price for the slider, example on query var max_price=7000&min_price=4000 and i check color it has 4 products and min and max rate for the products are 50 to 400 on slider and i cant get the results coz query was min and max price was 4000 to 7000. i was customized your slider section on views/shortcodes/woof_price_filter_slider.php
if ($preset_max < $max_price) { $max = $max_price; }else { $max = $preset_max; } if ($preset_min > $min_price) { $min = $min_price; }else { $min = $preset_min; } ?> <input class="woof_range_slider" id="<?php echo $uniqid ?>" data-min="<?php echo $min ?>" data-max="<?php echo $max ?>" data-min-now="<?php echo $min_price ?>" data-max-now="<?php echo $max_price ?>" data-step="<?php echo $slider_step ?>" data-slider-prefix="<?php echo $slider_prefix ?>" data-slider-postfix="<?php echo $slider_postfix ?>" value="" />please update these to..
Forum: Plugins
In reply to: [WooCommerce] Order table emptySorry it my problem i solve it, while i upgrade woocommerce after downgraded, it cause no problem
Yes I did… Thanks…
Forum: Plugins
In reply to: [WooCommerce] Admin views edit from themeYes That is the problem on my code.. I have worked it… Thanks Mike…
Forum: Plugins
In reply to: [WooCommerce] Admin views edit from themeI am just using “add_action” function how can i do it on ajax events let me know. please advice
Forum: Plugins
In reply to: [WooCommerce] Admin views edit from themeYes I have Hooked woocommerce_admin_order_item_headers from my plugin on page load it was working fine but not working after click save. it returns old format (“item, cost, qty and total”).
Forum: Plugins
In reply to: [WooCommerce] Admin views edit from themeI was used html-order-item.php page i want to add another column next to qty and i had added if the plugin get upgrade it will overwrite the default new plugin’s html-order-item.php. so my code will be overwritten. Is there any other option please advice.