PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

Not responsive in mobile view

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
12

yes working now.

how to show as dropdown field?

 

Hello

Please  read  my message - https://c2n.me/4hHFrnG.png

there is no such filter type for metadata

Hi,

i need to display acf field as this format like this (indian money format) ₹57,25,000 and ₹1,60,53,000

how to add code ? kindly help me

my page https://chennaibankauction.com/search/

Hello

Read this please - https://posts-table.com/how-to-add-custom-column-to-the-tables/

Hi,

i added this php in functions.php file

add_action('tableon_profile_extend', function($profile, $action_name)

{

if ($action_name === 'tableon_default_tables') {

if (isset($profile['priceacf'])) {
$profile['priceacf']['action'] = function($post_id) {
return number_format(get_post_meta($post_id, 'priceacf', true));

};
}

}

return $profile;
}, 10, 2);

 

output showing like this field name RESERVE PRICE link https://chennaibankauction.com/search/

84,400,000

but i need output like indian money format with symbol -- example  ₹1000, ₹10,000 ₹1,00,000  ₹ 10,00,000 ₹1,00,00,000

 

1
10
100
1,000
10,000
1,00,000
10,00,000
1,00,00,000
10,00,00,000

please help me

Hello

Try  to  use this  code - https://c2n.me/4iojJ61.png

$price =  number_format(get_post_meta($post_id, 'priceacf', true));

return '₹' . $price

Hi, i try this code but facing page error

 

Hello

Please give me full code

full code for functions.php?

Hello

Yes! The code you changed and added to functions.php

12