baxley
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Virus on my wordpressGreat…. when I go to my dashboard, I get this warning….
virus Mal/obf JS-C
Virus URL: https://www.(myurl)/wp-admin/index.php
Virus ID: Mal/ObfJS-CForum: Plugins
In reply to: Widgets won’t configureI just had the same problem. Deactivate any plugins that you are not using or really don’t need. It worked for me.
Forum: Fixing WordPress
In reply to: index page questionIt says “Baxley is a friggin idiot!”
Thanks Handy!
Forum: Fixing WordPress
In reply to: index page questionI just checked, a new theme will still use the last page I made.
Forum: Fixing WordPress
In reply to: index page questionHere is my index.php Is there something I could change here?
<?php get_header(); ?> <div id="content_box"> <?php include (TEMPLATEPATH . '/l_sidebar.php'); ?> <div id="content" class="posts"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <h2><a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <h4><?php the_time('F jS, Y') ?><!-- by <?php the_author() ?> --> · <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></h4> <div class="entry"> <?php the_content('[Read more →]'); ?> </div> <p class="tagged"><span class="add_comment"><?php comments_popup_link('→ No Comments', '→ 1 Comment', '→ % Comments'); ?></span><strong>Tags:</strong> <?php the_category(' · ') ?></p> <div class="clear"></div> <?php endwhile; ?> <?php include (TEMPLATEPATH . '/navigation.php'); ?> <?php else : ?> <h2 class="page_header center">Not Found</h2> <div class="entry"> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> </div> <?php endif; ?> </div> <?php include (TEMPLATEPATH . '/r_sidebar.php'); ?> </div> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: index page questionIs there any way I could tell the index.php which page to “call”? It keeps picking the last page I make.
Forum: Fixing WordPress
In reply to: index page questionMorning bump, I really need my homepage back.
Forum: Fixing WordPress
In reply to: Ad area in sidebar -widget for this?Thanks that worked pretty good!
Forum: Fixing WordPress
In reply to: A few newbie questions…You are great thanks!
Forum: Fixing WordPress
In reply to: A few newbie questions…Ok now on to the page order.
When I change the page order by expanding and chosing the order, the order does change in my admin panel, but not on the pages themselves.
Forum: Fixing WordPress
In reply to: A few newbie questions…Super cool, it was your 1st part and giovannimcosta’s 2nd part. Thanks a lot you 2!
Forum: Fixing WordPress
In reply to: A few newbie questions…Yeah I saved the original, thanks I will try that!
Forum: Fixing WordPress
In reply to: A few newbie questions…Here is the page template with those parts taken out:
<?php get_header(); ?>
<div id=”content_box”>
<div id=”content” class=”pages”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p>Read the rest of this page →</p>’); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’,‘number’); ?>
</div><div class=”clear”></div>
<?php } else { ?>
<div class=”clear rule”></div>
<?php } ?><?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
Now I am getting an error on my page.
Parse error: parse error, unexpected ‘}’ in /home/richmo1/public_html/wp-content/themes/Cutline 1.1/page.php on line 18
What am I messing up?
Forum: Fixing WordPress
In reply to: A few newbie questions…Ok here is the page template, which part would I take out?
<?php get_header(); ?>
<div id=”content_box”>
<div id=”content” class=”pages”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p>Read the rest of this page →</p>’); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
</div>
<?php if (‘open’ == $post-> comment_status) { ?>
<p class=”tagged”>#comments”><?php comments_number(‘No Comments’, ‘1 Comment’, ‘% Comments’); ?></p>
<div class=”clear”></div>
<?php } else { ?>
<div class=”clear rule”></div>
<?php } ?><?php endwhile; endif; ?>
<?php if (‘open’ == $post-> comment_status) { comments_template(); } ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: A few newbie questions…Thanks a bunch, I`ll give that a try!