pauro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Topbar messed up in IE8+1.
Almost the same problem here, except in my ie8 the demo is working okay (with a little delay, perhaps it’s loading something else)
Strange thing is, in my case, the problem only appear when using child theme. With main theme all menu is in order.
Unfortunately my site is still in xampp so I can’t show it.
Ah, just realized there’s an older version there. Thanks. Forget the shared file then 🙂
@q292u older version that works:
https://docs.google.com/file/d/0B0NuQHzCxC96VGF1WklMTjNsd0U/editgot it, uninstall the plugin, delete all ad-rotate instance (table?) from the database, install the plugin, and it works again…
I’m using 3.7.4.2, the ‘Error, no or no valid AD ID set! Check your syntax!‘ problem still there. Cannot make new ad new group nor new block. Looks like the problem is because there are No ID’s. Strange thing is, works well in my other sites.
Nih bang…
add_filter( 'woocommerce_currencies', 'add_my_currency' ); function add_my_currency( $currencies ) { $currencies['IDR'] = __( 'Rupiah (Rp)', 'woocommerce' ); return $currencies; } add_filter('woocommerce_currency_symbol', 'add_my_currency_symbol', 10, 2); function add_my_currency_symbol( $currency_symbol, $currency ) { switch( $currency ) { case 'IDR': $currency_symbol = 'Rp'; break; } return $currency_symbol;di function.php ya
http://wcdocs.woothemes.com/snippets/add-a-custom-currency-symbol/
Just facing the same problem. Fixed by setting:
Screen Options > Screen Layout >> Number of Columns: 1
, that strangely disappear/un-clicked.
hope this will help
Thank you
Does not need it yet but I agree it would be great if admin can restrict user to some fields.
Tried to use remove meta box function but doesn’t workForum: Plugins
In reply to: [Time Machine] excluding post from certain categoryNicely done,perfect solution, thank you so much.
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Chained Select BoxHi Bren, thank you for the hint. Actually I did search for javascript alternatives but just say I haven’t found it yet. 🙂 Hopefully I will as I continue my search.
p
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Dynamic select listSo I assume that using “IN” is okay. I have to make sure because I am really a newbie in this SQL thing and this “IN” thing I have found by the help of uncle google 🙂 . Hopefully this will also help others.
Thank you Bren.
Next, I want to make this dynamic select function used as Chained Select Box. I have start a new thread here.
Hopefully you also can help cracking the codes.
thanks
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Dynamic select listHi Bren, thank you, it helps
For a sake of discussion, I have also tried:
and post_parent in (60,100,200)
and it also works (at least in my localhost).
I’m just a beginner so my silly question is, which is better or safer?required feature would be nice
Forum: Plugins
In reply to: [Custom Field Template] [Plugin: Custom Field Template] Dynamic select listHi,glad to found this thread
I have tried to use code from Bren (thank you), and change it a bit toglobal $wpdb; $items = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts where post_type = 'page' and post_status = 'publish' and post_parent = '60' order by post_title ASC"); $i = 0; foreach ($items as $item) { $values[$i] = $item->ID; $valueLabel[$i] = $item->post_title; $i++; }it works nice, showing page titles from parent ’60’ in the select box. Unfortunately I need to show more child pages from other parent. I have tried to do it like this:
and post_parent = '60,100'
and this
and post_parent = ('60' , '100')
but no luck. Any suggestion?