Thejas Kamath
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal Error During Photo UploadTry to use a plugin. The name of the plugin is Flexible Upload. This may solve your upload problem.
Thanks
Forum: Fixing WordPress
In reply to: Front page fails to update in 3.0.1Okay, Hope you have found the problem, You try using a different Browser like the best one :Google Chrome.
Thanks
You can solve your problem only if you contact the Author of the plugin. Hope they may help you!
Thanks
Forum: Fixing WordPress
In reply to: Front page fails to update in 3.0.1Deactivate all the plugins (if you want donot activate necessary plugins) and then try to update. If this works, try to activate plugins one by one till you find the cause.
Thanks
Forum: Fixing WordPress
In reply to: comments in pagesYou are absolutely right!
Forum: Fixing WordPress
In reply to: Limit Posts on Category PageAdd up the following code in your functions.php file. Make sure that you have a copy of the file on your computer or somewhere before attempting to edit the file.
function limit_posts_per_archive_page() { if ( is_category() ) set_query_var('posts_per_archive_page', 2); // or use variable key: posts_per_page } add_filter('pre_get_posts', 'limit_posts_per_archive_page');
In the above code the post limit is set to 2. You can change it from the above code as shown below.
set_query_var('posts_per_archive_page', enter the number of post limit here);
Thanks
Forum: Fixing WordPress
In reply to: How to; Place a banner between a blog and the comments?Find the following code in single.php file.
<?php the_content(); ?>
Now, you can enter the code of the banner (you wish to display between the content and comments) right after the
<?php the_content(); ?>
code.Thank You
Forum: Fixing WordPress
In reply to: Fatal Error During Photo UploadYou try to increase the memory size limit. You can follow the steps below which was posted by Samuel B in different Thread.
1. Try adding this line to your wp-config.php file: define('WP_MEMORY_LIMIT', '128M'); 2. If you have access to your PHP.ini file, change the line in PHP.ini If your line shows 32M try 128M: memory_limit = 64M ; Maximum amount of memory a script may consume (64MB) 3. If you don't have access to PHP.ini try adding this to an .htaccess file: php_value memory_limit 128M 4. Talk to your host.
Thanks
Forum: Fixing WordPress
In reply to: Archives/Catergories and Search not displaying correctlySince I don’t know more about PHP programming, I suggest you to use style.CSS sheets for the categories to show as Heading.
Thanks
Forum: Fixing WordPress
In reply to: Comments form not showing – strange situation.You can replace your single.php code with the code which I have got for you below. Make sure that you have a copy of your single.php file in your computer or in your host.
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content('<p class="serif">Read the rest of this page ?</p>'); ?> <?php comments_template(); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> <?php get_footer(); ?>
Thanks
Forum: Fixing WordPress
In reply to: Help with an img sliderAs Samuel B said, I too can see the it in both the places. (One man is lifting a black weight and other is lifting yellow weight). Am I right?
Forum: Fixing WordPress
In reply to: comments in pagesInstead of entering just
<?php comments_template(); ?>
in page.php, try to paste the code which I have added up below.<?php comments_template('exclude=enter the page id here'); ?>
Thanks
Forum: Fixing WordPress
In reply to: Can't login to site for admin – no login buttonIts absolutely simple. Just visit this link where you can login to admin account and also other accounts as well.
The link from which you can login is https://cornerstonebookkeepers.com/wp-login.php.
Forum: Fixing WordPress
In reply to: Author AvatarThank You Chinmoy!