Jam Castro
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Job Board Registration not workingHello Gaurav, I checked my phpmyadmin and everything is fine. I only have 3 registered users including me.
What I meant was, if someone visited my site.. decided and tries to register. It will show him the error “User Name already exists. Please select a different User Name.” after filling up the necessary information(email,username,etc) and clicking the Register Now button.
Is there a way to fix this so visitors who would like to register to my job board site can register without having a problem.
Forum: Fixing WordPress
In reply to: Next Page Not WorkingHere’s what I have in my page.php
<?php get_header(); ?> <div class="section"> <div class="section_content"> <?php appthemes_before_page_loop(); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <?php appthemes_before_page(); ?> <?php appthemes_before_page_title(); ?> <h1><?php the_title(); ?></h1> <?php appthemes_after_page_title(); ?> <?php appthemes_before_page_content(); ?> <?php the_content(); ?> <?php appthemes_after_page_content(); ?> <?php appthemes_after_page(); ?> <?php endwhile; ?> <?php appthemes_after_page_endwhile(); ?> <?php else: ?> <?php appthemes_page_loop_else(); ?> <?php endif; ?> <?php appthemes_after_page_loop(); ?> <div class="clear"></div> </div> </div> <?php if (comments_open()) comments_template('/comments-page.php'); ?> <div class="clear"></div> </div><!-- end main content --> <?php if (get_option('jr_show_sidebar')!=='no') get_sidebar('page'); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Can't access wp-admin of my site after installing a new themeThanks for the help esmi. I can now access my wp-admin page but how can I fix my new theme so I can use it as my theme for my site?
Forum: Themes and Templates
In reply to: Post box background not expanding :( ?Sorry about that, I just needed some help and nobody seems to notice it.
Anyway, I’ll try to solve it for myself.Forum: Themes and Templates
In reply to: background repeat not working :( ?Should it be the #postbox-bottom(“.)that will be repeated?
because this is a rounded corner located at the bottom.
I think it should be the #postbox-center that should be repeated.Forum: Themes and Templates
In reply to: double right side bar or adding left sidebarHi(“,)!
Check this link it might help you how to add another sidebar:
https://www.blogohblog.com/adding-extra-sidebar-to-your-wordpress-theme/Forum: Themes and Templates
In reply to: Expandable post box…where to put the loop, postmetadata, etc.?The large box at the center is my post box, just above the footer.
Forum: Themes and Templates
In reply to: Expandable post box…where to put the loop, postmetadata, etc.?Forum: Themes and Templates
In reply to: CSS coding not working :( ?YESSSSS(“,)!!! it’s finally working!!!
Thank you so much jrav001
You really help me out(“,), I really appreciate it a lot.Forum: Themes and Templates
In reply to: CSS coding not working :( ?Yap, it’s looking for the correct style sheet.
Here’s my header.php
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
“https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head>
<title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
<link rel=”style sheet” type=”text/css” href=”style.css”>
</head><body>
<div id=”wrapper”>
<div id=”header”>
<h1>“><?php bloginfo(‘name’); ?></h1>
<?php bloginfo(‘description’); ?>
</div><div id=”menu”>
HOME
NEWS
CONTACT
LINKS
</div><!– End header.php –>