hi there,
i am looking for neat WordPress code or function for integrating with google |or| yahoo api for money currency.
the code need to be update in about 2 times a day or so automatically,
it also must have the option to change <strong>all price in the same page</strong> by choosing the money-sign in the top of the page. $ USD or others... like in airbnb dot com
the code need to have some way that my costume fields meta_value will wrap in a div or so that will be able to change on the fly without refreshing the page.
same with inline content that have the shortcode wraping the number.
i am NOT looking for a convector that user input manually the price and the value from > to and submiting the form...
if any more details need jest ask me
josef
Vinod Dalvi answers:
I can develop it just send me the details.
josef comments:
hi Vinod, what kind of details you need, i did mantion all in the Question above...
Vinod Dalvi comments:
I need details on your this sentence "the code need to have some way that my costume fields meta_value will wrap in a div or so that will be able to change on the fly without refreshing the page. same with inline content that have the shortcode wraping the number."
Can you just provide the screenshot explaining it here.
josef comments:
yes,
with the above i point to a theory case like that:
<?php $pricecode = '€'; ?>
<?php $price_d = get_post_meta($post->ID, 'price_d', true); ?>
<?php $price_w = get_post_meta($post->ID, 'price_w', true); ?>
<?php echo $pricecode . $price_d ; ?>
<?php echo $pricecode . $price_w ; ?>
2 different way that i echo the values and i need to creat a function for this shortcode that will print like this
<div class=”price”>
<div class=“price_code”><?php echo $pricecode ; ?></div>
<div class=”price_value”><?php echo $price_d ; ?></div>
</div>
the base price is always $ USD
because i need to search in the table value for creating some querys...
if more details needed please say so.
josef