WordPress comments and Facebook comments

I’ve used these two plugins: 1) Disqus Commenting Plugin – the easiest way to add facebook functionality to your wordpress blog: They allow a whole host of features including facebook, twitter, google login/commenting and some other cool stuff. It will probably be more than you need but you might like the extras and the easy … Read more

Hide comments column in WordPress backend

Try this: add_filter(“manage_edit-page_columns”, “my_page_edit_columns”); function my_page_edit_columns($columns){ unset($columns[‘comments’]); return $columns; } If you need it for posts instead of pages, use manage_edit-post_columns instead. The same goes for any post type, really, as manage_edit-{post_type}_columns.

WordPress custom form action url

simple with jQuery: //first make sure you have jQuery on that page add_action(‘wp_enqueue_scripts’,’make_sure_i_have_jquery’); function make_sure_i_have_jquery(){ if (!is_admin()) wp_enqueue_script( ‘jquery’ ); } //then just change the url to you own add_action(‘wp_footer’,’change_comment_form’); function make_sure_i_have_jquery(){ if (!is_admin() && (is_page() || is_single())) echo ‘<script> $(“#commentform”).attr(“action”, “http://yourUrl.com”); </script>’; } just paste this in your theme’s functions.php or the plugin your … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)