wprock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: unable to access wp-admin pagewhat is your site URL?
Forum: Fixing WordPress
In reply to: Cannot install plugins (any)there have plugins folder inside the wp-content folder? Check once this.
Forum: Fixing WordPress
In reply to: 404 Not FoundAre you extract the zip file and upload all files and folders on server? Try to re-upload again via FTP
Forum: Fixing WordPress
In reply to: Error establishing a database connectionHave you any database backup? Then you can restore the database again and you will not loss any data.
Forum: Fixing WordPress
In reply to: social icons in headerMay be you will hire a person from http://jobs.wordpress.net/ or any Freelancer site like Elance if you have no enough idea about coding and wordpress
Forum: Fixing WordPress
In reply to: No Visual Editorcheck your ‘Your Profile’ page. Are you check the Visual editor checkbox?
Forum: Fixing WordPress
In reply to: how to add social buttons to "powered by wordpress" footerYou will work in this block
<div id="site-generator"> <?php do_action( 'twentyeleven_credits' ); ?> <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a> </div>Remove this part
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>And place your social icons there
Forum: Fixing WordPress
In reply to: how to add social buttons to "powered by wordpress" footerok…copy the code from footer.php file and upload in pastebin.com. Next share the link. We will try to give you a direction.
Forum: Fixing WordPress
In reply to: My site disappearedOk… Copy this new code from here http://pastebin.com/UBmVzUXv and replace with your old code of functions.php file. Then problem will be solved
Forum: Fixing WordPress
In reply to: Sites are not beeing published or saved as Draftcheck once it after disable the plugins
little mistake . use it
if (is_front_page() || is_home() ) { // if not work then is_home
return ‘LIMIT 0, 10’;
}remove this filter
add_filter('pre_option_posts_per_page', 'limit_posts_per_page');and try this filteradd_filter('post_limits', 'postsperpage'); function postsperpage($limits) { global $wp_query; if (is_front_page()) { // if not work then is_home $wp_query->query_vars['posts_per_page'] = 10; } return $limits; }Forum: Fixing WordPress
In reply to: how to add social buttons to "powered by wordpress" footersee the doc http://codex.wordpress.org/Child_Themes
Forum: Fixing WordPress
In reply to: how to add social buttons to "powered by wordpress" footercreate a child theme first and then move the footer.php file from parent theme to child theme and edit that file.
are you did this settings -> reading -> posts per page -> 4 ?