Ryan Sutana
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Removing 'Select options' button from categories pageAnyway we can disable this by using hook or filter?
Forum: Fixing WordPress
In reply to: error on update_metadataSame here it didn’t save even I applied filter and action after add function, would be great is WP provide more sample and documentation, don’t have time to try and dig in myself 🙂
Forum: Plugins
In reply to: [BackUpWordPress] Disk quota exceeded, errno 122Hi @tom thanks for the reply,
yeah I already did and they already remove the quota limit and we can put it unlimited etc. and still same issue, to bad I love this plugin, no choice but to use other plugin.
Forum: Themes and Templates
In reply to: Responsive templateFor me, the best thing to do is buy or ask someone to develop responsive design for your business site, so it can be flexible in all devices, phone, tab, laptop desktop or even printer.
If ever you want to buy additional plugin to detect and display mobile theme you don’t need to duplicate content.
[Please do not solicit here – that’s not the purpose of these forums]I have implementing Event Management plugin too and when I use #_BOOKINGTICKETPRICE #_BOOKINGPRICE placeholder nothing happen it only display those placehoder 🙁
Any idea?
Forum: Hacks
In reply to: WordPress get_results from custom tableYour code above could not work in other table prefix like wps_, s12_ etc.
Here’s the code below that works in all table prefix 😉
$row_object = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}testdatabase" ) );Hope that helps.