Ervan Erfian
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Page Widget] WordPress 3.8 CSS ConflictPlease follow this.
Forum: Plugins
In reply to: [WP Page Widget] Admin broken in WP 3.8Please follow this.
Forum: Plugins
In reply to: [WP Page Widget] not working in WP 3.8You can try add this into your functions.php
// Custom Admin Style
function admin_style() {
wp_register_style( 'admin_style', get_stylesheet_directory_uri() . '/css/admin.css' );
wp_enqueue_style( 'admin_style' );
}
add_action( 'admin_enqueue_scripts', 'admin_style' );
Replace
get_stylesheet_directory_uri()usingget_template_directory_uri()if your site not running via child theme.You’ll also need to create a stylesheet in the /css directory in your themes folder.. let say admin.css and put this code http://pastebin.com/b2PyDqLC and the result http://pbrd.co/1eaHWJ0
Forum: Plugins
In reply to: [Plugin: Real-Time Find and Replace] Missing js folder on V 1.1No prob Marios.. Anyway thanks for your plugin, donation soon 🙂
Working now..
I think we should still choosing the Post Type: Both.. if you want to using Custom Post Type, just a little thing that bother is a Custom Field Templates box will always exist in any regular Post & Page, although it doesn’t contain fields that we’ve created for specific Custom Post Type.
Forum: Plugins
In reply to: [Plugin: Customize Your Community] Not compatible with all themesMaybe you can using trick with the others layout for using it.. Not tested.