Thejas Kamath
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments not showing on pagesYour welcome! My job is just helping you. However, if you have found out your answer, please change the status of this thread as RESOLVED!
Thanks
Forum: Fixing WordPress
In reply to: Comments not showing on pagesFind the following code in page.php file
<?php the_content(); ?>
and replace it with following one.
<?php the_content(); ?> <?php comments_template(); ?>
Thanks
Forum: Fixing WordPress
In reply to: Excerpt screwing text formtIf you limit texts using excerpts, you cannot show bold, italic, quotes, links and all.
Thanks
Forum: Fixing WordPress
In reply to: WordPress technical freelancer wantedPlease list out your site url!
Forum: Fixing WordPress
In reply to: Problem with post and picture!Check whether Some codes like “Featured” is there in index.php file or try to find featured.php file on your server.
Sometimes you may be able to disable featured posts from Your Theme Options.
Appearance >> Theme Options
Thanks
Forum: Fixing WordPress
In reply to: WordPress not resizing imagesThis link https://sightsinging.info/?page_id=41 does not take me to any page. It says -The Page Not Found.
You can use a plugin to resize the images. You can download the plugin from here. In this plugin,you can resize the images at upload.
Thanks
Forum: Fixing WordPress
In reply to: How to skip the first post?Okay. Then just add the following code.
<?php query_posts('offset=1'); if(have_posts()) ?> offset=1 indicates, which post you have to exclude.
If this don’t work, add the code which I have added in my previous reply.
Thanks
Forum: Fixing WordPress
In reply to: How to skip the first post?<?php query_posts('offset=1'); if(have_posts()) { the_post(); while(have_posts()) { the_post(); //Do whatever you need to here. } } ?>
Just add the above code instead of your code.
Thanks
Forum: Fixing WordPress
In reply to: comments in pagesHey If you wanna add comments in index.php, you must add the code in index.php file. If you add the code in page.php file, how comments will appear in index.php (ie, your site homepage).
Thanks
Forum: Fixing WordPress
In reply to: comments in pages@parfumio, Publishing IP address on blogs sounds like Spam. I suggest you not to do it.
Forum: Fixing WordPress
In reply to: Fatal Error During Photo UploadI will get to back to you soon.
Forum: Fixing WordPress
In reply to: unable to access siteDont use UPPERCASE characters in links. Use just https://sitename.com/wp-admin.
Thanks
Forum: Fixing WordPress
In reply to: 3.0.1 slowIf it is so, try to degrade back to WordPress 3.0. This may solve the problem. If you donot wish to degrade, you can use some cache plugins.
Thanks
Forum: Fixing WordPress
In reply to: unable to access siteHey, why have you post the same question by times?
Anyway, this is the answer from me:
Check whether the Wp-admin folder is there on your server or not. If its there, then the problem may be in the database. If it is not there, try to install wordpress again by keeping a copy of your theme files and posts.
Thanks
Forum: Fixing WordPress
In reply to: unable to access dashboardCheck whether the Wp-admin folder is there on your server or not. If its there, then the problem may be in the database. If it is not there, try to install wordpress again by keeping a copy of your theme files and posts.
Thanks