DigitalMcGrath
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Source index Page?What are the changes you need to make?
Forum: Fixing WordPress
In reply to: Source index Page?All your theme source files are located in wp-content/themes/~Your Theme~/
You can open these in any editor and work with them. The main page is index.php. This is the page you want if you want to make changes to the main content section of the page.
If you are needing to make changes to the side of the page, look for sidebar.php.
Forum: Fixing WordPress
In reply to: Terrifying newbie login problem *shudder*In the future if you have that problem, you could have gone into the wp_users table and edited the user record. Change the user_pass field and set the function to MD5.
Forum: Fixing WordPress
In reply to: Terrifying newbie login problem *shudder*Are you having trouble accessing the WordPress admin tool AND the PHPMyAdmin tool?
Forum: Fixing WordPress
In reply to: Posting extraHave you installed any plug-ins recently?
Forum: Fixing WordPress
In reply to: Source index Page?Can you provide a link? and what theme are you using?
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected ‘<‘Can you provide a link? And have you made any changes to the theme you are using?
Forum: Fixing WordPress
In reply to: Remove Page TitlesIn your CSS file you could try changing:
#container { float: left; margin: 0 -240px 0 0; width: 100%; } ' to:
#container {
float: left;
margin: -10px -240px 0 0;
width: 100%;
}
`
If the ‘-10px’ is not enough, just keep adjusting it until it lines up where you want it to.Forum: Fixing WordPress
In reply to: Remove Page TitlesAfter looking at the source code view of your home page it looks like you are using the onecolumn-page.php file for the page. Edit this page and look for:
<h1 class="entry-title"><?php the_title(); ?></h1>
and change it to:
<h1 class="entry-title"><?php //the_title(); ?></h1>
Forum: Fixing WordPress
In reply to: Remove Page TitlesDid you create the page in question as a page? Or a post? If it is a page the code should look like this:
<?php if ( is_front_page() ) { ?> <h2 class="entry-title"><?php //the_title(); ?></h2> <?php } else { ?> <h1 class="entry-title"><?php //the_title(); ?></h1> <?php } ?>
Forum: Fixing WordPress
In reply to: No Post Found PageEdit the search.php page and remove the ‘<?php get_sidebar(); ?>’ line of code if you don’t want to display the sidebar.
Forum: Fixing WordPress
In reply to: Can’t post as admin?Try the suggestion at the following link:
Forum: Fixing WordPress
In reply to: Source index Page?I am not quite sure I understand the question. Is there a problem with your sub directory? Or are you just looking for the location of the index page? If it is the latter, the index page is location in wp-content/themes/~Your Theme~/index.php.
Forum: Fixing WordPress
In reply to: Remove Page TitlesIf you are going to comment it out, the comment should look like:
<?php //the_title(); ?>
Forum: Fixing WordPress
In reply to: Remove Page TitlesOh, ok. To remove that all you need to do is edit your page.php file and remove the following line:
<h1 class="title"><?php the_title(); ?></h1>