Thejas Kamath
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding Background Image to Theme@
Open Style.CSS file of your WP theme and make changes in the codes.
In stylesheet, under /* LAYOUT */
add
body { background: #fff url(enter the path of the background image) top left repeat-x; }
The thing you have to do is just entering the path of the background image in the bracket. (NOTE: Don’t remove the brackets)
Thanks
ThejasForum: Fixing WordPress
In reply to: Side bar gone from home pageDid you edit the style sheet or sidebar.php file of your design?
I think you must reduce the width of your sidebar objects. You can change the width from the CSS (Style Sheet) of your design.
Thanks
ThejasForum: Fixing WordPress
In reply to: Use less memory when uploading image?Ohhh! Sorry for the mistake. But what if you upload your image in a different host with a huge file size and just add the link in the WordPress admin Panel while adding a new post?
Did you backup your files and settings before. If you do that, you can restore the settings.
Forum: Fixing WordPress
In reply to: Getting a Notice: at top of pageCheck whether there are some blank lines before the code <?php or after it.
Forum: Fixing WordPress
In reply to: Use less memory when uploading image?I did not tell you to move to a new host. An image may be maximum 20 mb of size which can be uploaded to your host from the file manager and not from WP admin Panel.
This may solve your problem!
Thanks
ThejasForum: Fixing WordPress
In reply to: Single site search in multi-site setup?I think you may have solved your problem. If its so, then please mark this thread as RESOLVED, so that our WordPress experts don’t attempt this thread.
Thanks
ThejasForum: Fixing WordPress
In reply to: Use less memory when uploading image?There is one solution!
You told that you have a minimum file size in your host is 32mb. So you can upload all the images directly to upload folder of your wordpress theme. Then, it would allow you to add images directly to post as you upload the image while posting a new article.
Thanks
ThejasForum: Fixing WordPress
In reply to: "Older Posts" not showing older postsFind the following code
</div><!--/post-<?php the_ID(); ?>--> </div>
and
replace it with following code
<?php endwhile; ?> <div class="navigation"> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <div class="alignleft"><?php next_posts_link('? Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries ?') ?></div> <?php } ?>
Thanks
[Moderated: Sig link removed. Stop it.]Forum: Fixing WordPress
In reply to: Hacked? Random .php links…Are you sure that your site has been hacked?
Forum: Fixing WordPress
In reply to: Hacked? Random .php links…Ohhh k, This is the poblem with your footer. You can edit the links from footer.php file. You can edit the file from your WordPress admin panel.
If you are using the free design, then it may be sponsorers which you are not allowed to remove. I you do so, your wordpress theme will stop working.
One more thing, is are the links at the footer strange or you already know the links and are in your site branch?
Forum: Fixing WordPress
In reply to: Can't Access wp-adminOkay! First of all check whether you have “admin” folder in your web host. If its there, then please check whether there is index.php inside the folder. Please list your site url in the next reply!
Thank you!
Forum: Fixing WordPress
In reply to: Subdomain Not Working ProperlyYes the subdomain is working properly. I was redirected to https://feeds.feedburner.com/CindyHsu
What is the problem you are facing now? If there is some, please let me know it.
Forum: Fixing WordPress
In reply to: displaying only one category posts in a sidebarDo u want to show all the postlinks in sidebar?
Forum: Fixing WordPress
In reply to: Displaying date of post on static page issue?<div id="container"> <span id="archives"> <h3 class="widget-title-left">LATEST NEWS //</h3> </span> <div id="content" role="main"> <?php query_posts('posts_per_page=3&cat=23'); if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php } ?> <div class="entry-content"><div class="postdate">Posted by <strong><?php the_author() ?></strong> on <?php the_time('F jS, Y') ?> <?php if (current_user_can('edit_post', $post->ID)) { ?> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?> </div><!-- .entry-content --> </div><!-- #post-## --> <?php comments_template( '', true ); ?> <?php endwhile; ?> </div><!-- #content --> </div>
Paste the following code in singles.php file. I have edited the code which will show the Posted by and Posted on. If the code does not work, please feel free to contact me