It can be possible order list of product view?
]]>how I can do it %20 all my WooCommerce price
]]>I am struggling to display any item to chang its price. No item shows.
I checked and I have items in Products, all are Simple products.
What seems to be an issue?
]]>While varying the large number of items (about 600), then the price change is not saved for all, but only where that 20%.
In a plugin have any restrictions or search for a problem somewhere else?
]]>The plugin is very easy to change the prices.
But I would like to add the ability to display “sku” and “stock”, as well as their editing and saving.
I changed the files and the output achieved “sku” and “stock” of the table along with prices, but when you save the table, “sku” and “stock” of the goods is retained in the void.
Tell me that I did not consider please.
My code:
woocommerce-prices.php
$posts = get_posts($args);
// Build grid data
$data = array();
$url = plugins_url('images/delete.png', __FILE__);
foreach ($posts as $post) {
$sku = get_post_meta($post->ID, '_sku', true);
$stock = get_post_meta($post->ID, '_stock', true);
// Get prices
$regular_price = get_post_meta($post->ID, '_regular_price', true);
if ('' != $regular_price) {
$regular_price = wc_format_localized_price($regular_price);
}
......
// Create row object
$product = new stdClass();
$product->ID = $post->ID;
$product->sku = $sku;
$product->stock = $stock;
$product->title = $post->post_title;
....
$products = $_POST['products'];
// Update sale price and dates
foreach ($products as $product) {
$ID = $product['ID'];
$sku = $product['sku'];
$stock = $product['stock'];
$regular_price = wc_format_decimal($product['regular_price']);
$sale_price = wc_format_decimal($product['sale_price']);
$sale_from = strtotime($product['sale_from']);
$sale_to = strtotime($product['sale_to']);
// Update prices
update_post_meta($ID, '_sku', $sku);
update_post_meta($ID, '_stock', $stock);
update_post_meta($ID, '_regular_price', $regular_price);
update_post_meta($ID, '_sale_price', $sale_price);
....
script.js:
var gridColumns = [
checkboxSelector.getColumnDefinition(),
{id: 'sku', name: 'Арт.', field: 'sku', width: 60, editor: Slick.Editors.Text},
{id: 'stock', name: 'Кол-во', field: 'stock', width:60, editor: Slick.Editors.Text},
{id: 'title', name: 'Товар', field: 'title', width: 290},
{id: 'regular_price', name: 'Цена', field: 'regular_price', editor: Slick.Editors.Text, width: 60},
{id: 'sale_price', name: 'Цена распр.', field: 'sale_price', editor: Slick.Editors.Text, width: 100},
{id: 'sale_from', name: 'Распр. с', field: 'sale_from', editor: customDateEditor, width: 100},
{id: 'sale_to', name: 'Распр. до', field: 'sale_to', editor: customDateEditor, width: 100}
];
....
]]>
It is impossible to translate the plugin. I create a files .po and .mo with the prefix -ru_RU, but the translation is why it does not apply.
]]>increase regular price for IDR is not work.
example : product A price : 150.000
action : increase regular price (+)
value : 30000
note : i need to markup the price +30000
it should be : 150000 + 30000 = 180000
after make a change. i get : 18000000
how to fix this?
my setting currency :
currency : Indonesian rupiah (Rp)
currency position : Left with space : (Rp 99.99)
thousand separator : .
Decimal Separator :
Number of Decimals : 0
Hello,
I installed your plugin 1.0.1.
But under the Prices tab, no products are showing.
I see the spinning gif, and then the tabs Pricing, Regular Price etc, but none of my products.
Any idea whats the problem?
Here are some numbers for you.
WC Versie: 2.1.9
WC Database Versie: 2.1.9
WP Versie: 3.9.1
WP Multisite Ingeschakeld: Nee
Webserver info: Apache/2
PHP Versie: 5.2.17
MySQL versie: 5.1.54
WordPress Memory Limit: 64 MB
WordPress Debug Modus: Nee
WP Taal: nl_NL
WordPress Max Upload Size: 8 MB
PHP Post Max Size: 8 MB
PHP Time Limit: 30
Hope there is a fix ??
]]>Hi sydcode,
There is a problem in the calculation of percent.
I’ve resolved the problem.
You can look;
https://github.com/tarikcayir/woocommerce-prices/blob/master/script.js#L447
YouTube Video: https://www.youtube.com/watch?v=IvhTDGUfdbc
https://www.ads-software.com/plugins/woocommerce-prices/
It appears access to plugin functionality is limited to the administrator role. Please extend access to the shop manager role. Thanks!
]]>Hello,
i want to add a search field for product, because searching for any products in listed products is difficult.How can i do that.
Thanks.
Hello:
We have a client, the kegster.com, who makes custom keg covers, $79.99 each. He also offers 2 custom keg products, one you design the art $30, the other they design it for you $45, which is in addition to the $79.99.
We want people to be able to purchase multiple custom keg covers at $79.99, but only be charged ONCE for the design option they chose [either $30 or $45].
Do you know of a way to do this with your plugin? We are DESPERATE for assistance! If you can email me at [email protected] or call me directly 602-538-4504?
]]>Hello:
We have a client who makes custom keg covers, $79.99 each. He also offers 2 custom keg products, one you design the art $30, the other they design it for you $45, which is in addition to the $79.99.
We want people to be able to purchase multiple custom keg covers at $79.99, but only be charged ONCE for the design option they chose [either $30 or $45].
Do you know of a way to do this with your plugin? We are DESPERATE for assistance! If you can email me at [email protected] or call me directly 602-538-4504?
]]>Hello,
I increased regular product prices for all products for testing purpose and I can’t get prices to previous state. No matter what amount I enter to decrease prices, It sets price for all products to zero. If I try to increase regular price, it sets prices to amount which I entered and adds 1. (I enter increase by 100 and it gives me 101). Please help me to get my normal prices back. It would be torture to edit every single product. I need to decrease regular price by 1000 for all products. Thank you.
When entering a four digit price like 2.200,99 USD, the plugin converts it to 2,00.99 USD. I think there is a bug with thousand seperator.
]]>I cant seem to get the prices I already have to show. The little spinning icon just sits there and spins forever. Is there something special I need to have in the php5.ini file maybe?
]]>The plugin does not show variable-type products.
Only the simple-type products appear.
Do you know the solution?
Hi, when entering a percentage such as 35%
into the value field when making a new sale price I receive a NaN error in the sale columns for all of the product records.
Here is an image of what I’m seeing: https://i.imgur.com/g0YxGZs.png
What is causing this? Is this the correct way of entering a percentage? Entering a number works just fine however so there must be an issue with the %
symbol?
Thank you for your time!
]]>