ghanshyamgadhiya
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Replacing ‘the_content()’ with ‘the_excerpt()’try to put in index.php on line no.14 :-).
bcoz index.php is main page. while single.php is detail page.Forum: Fixing WordPress
In reply to: How to rectify this Database problem??https://paulstamatiou.com/2006/05/31/how-to-quickie-repair-mysql-tables-in-phpmyadmin/
check out this link if you are beginner.
Forum: Fixing WordPress
In reply to: How to rectify this Database problem??You have to fire this query in your sql editor.
REPAIR TABLE wp_comments. simply copy paste this line.MySQL error code 145: Table was marked as crashed and should be repaired
MySQL error code 144: Table is crashed and last repair failed.If error 144 will be handled by auto-repair, you can get infinite loop of
unsuccessfull repairs.Forum: Fixing WordPress
In reply to: Changing datethe simple thing is search this text the_time(‘F jS, Y’) in all your file and just remove s.
Forum: Plugins
In reply to: Insert MYCODE between POST and COMMENTok, You are always welcome. ??
Forum: Plugins
In reply to: Insert MYCODE between POST and COMMENTi m not aware with classic theme so i m just give you advise.
insert your code in comments.php (on line no. 10 or 4).
just search you will find proper place.
??
Forum: Fixing WordPress
In reply to: Changing datefiles are in wp-content/themes/default/
index.php,
single.phpForum: Plugins
In reply to: Insert MYCODE between POST and COMMENTyou have to modify single.php file in themes\default.
just add your content before
<?php comments_template(); ?> (on line no. 55)
??
Forum: Fixing WordPress
In reply to: Changing datein php date() function
S = English ordinal suffix for the day of the month, 2 characters st, nd, rd or th.
so find that date(‘s’)(here function is
=> the_time(‘F jS, Y’); ) function and remove s from it.
:-}Forum: Themes and Templates
In reply to: Replacing the default header (oh yes, I’ve searched)ok,
I get this line in view source
<!–#header { background: url(‘https://www.aliastex.com/wp-content/themes/default/images/header-img.php?upper=000000&lower=000000’) no-repeat bottom center; }
but it is wrong it should be
<!–#header { background: url(‘https://www.aliastex.com/wp-content/themes/default/images/kubrickheader.jpg’) no-repeat bottom center; }
like this.
I think you have to check your functions.php( line no 281),
header-img.php files.otherwise replace them with original files.
I just guess it.
it may help you. ??Forum: Themes and Templates
In reply to: Site layout totally screwed – sidebar slipping to bottomI have checked.
you have made change in your header.php file thats way you face this problem.
just replace your <style> tag in you header.php file with this code.
<style type=”text/css” media=”screen”>
<?php
// Checks to see whether it needs a sidebar or not
if ( !$withcomments && !is_single() ) {
?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.jpg”) repeat-y top; border: none; }
<?php } else { // No sidebar ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; }
<?php } ?></style>
ok ! ??
Forum: Themes and Templates
In reply to: How to remove »You are always welcome. ??
Forum: Themes and Templates
In reply to: How to remove »just remove that code.
.entry ul li:before, #sidebar ul ul li:before {
content: “”;
}Forum: Themes and Templates
In reply to: How to remove »just check out this in your style.css
.entry ul li:before, #sidebar ul ul li:before {
content: “0BB 020”;
}Forum: Themes and Templates
In reply to: Replacing the default header (oh yes, I’ve searched)i checked.
just replace this line in header.php<!–#header { background: url(‘https://www.aliastex.com/wp-content/themes/default/images/header-img.php?upper=000000&lower=000000’) no-repeat bottom center; }
with
<!–#header { background: url(‘https://www.aliastex.com/wp-content/themes/default/images/kubrickheader.jpg’) no-repeat bottom center; }