dhruwal
Forum Replies Created
-
Forum: Plugins
In reply to: [Three Column Screen Layout] WordPress 4.4 CompatibilityOption 2 suggested above worked.
2- replace the new render_screen_layout by the old one (quick, dirty, but it works!)just goto wp-admin/includes/class-wp-screen.php
Replace entire render_screen_layout function with this old version which works.
public function render_screen_layout() { if ( ! $this->get_option('layout_columns') ) return; $screen_layout_columns = $this->get_columns(); $num = $this->get_option( 'layout_columns', 'max' ); ?> <h5 class="screen-layout"><?php _e('Screen Layout'); ?></h5> <div class='columns-prefs'><?php _e('Number of Columns:'); for ( $i = 1; $i <= $num; ++$i ): ?> <label class="columns-prefs-<?php echo $i; ?>"> <input type='radio' name='screen_columns' value='<?php echo esc_attr( $i ); ?>' <?php checked( $screen_layout_columns, $i ); ?> /> <?php echo esc_html( $i ); ?> </label> <?php endfor; ?> </div> <?php }Great news Rob. Thanks. Goodluck.
Forum: Plugins
In reply to: [WP Server Date Time] Timezone is shown incorrectIf its your own hosted server, do you have date.timezone setup correctly in your php.ini file? You should have that there.
If its a 3rd party hosting server, it should already have it.Let me know.
I had same issues, reverted back to 2.6 and worked great. Any update when 2.8 will be out?
Forum: Plugins
In reply to: [SharDB] Few QuestionsI thought you already had a script like you mentioned in guide as shardb-back.
Also the original database gets copied to global database, should we delete original database? As I believe nothing will be updated in that one anymore right?
Forum: Plugins
In reply to: [StatPress Visitors] Latest undefined agentsGreat, thanks a lot. This was only update i had done, so really doesnt matter if it gets updated with yours in new update.
Forum: Plugins
In reply to: [StatPress Visitors] Latest undefined agentsYes it is spider.
But later i did read how to add in spiders file.
so i added an entry there, and also created a small logo and saved as pinteres.png, and all worked well.
But you can simply add it to you next updates as it is quite a famous site now.Thanks.