Bluetera
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: problems with login page not working… help??Yeah that’s what I mentioned earlier. Not sure how to solve this.
Forum: Fixing WordPress
In reply to: problems with login page not working… help??what role do you need? The registration process seems to be what’s having trouble now.
Forum: Fixing WordPress
In reply to: problems with login page not working… help??Sorry I wasn’t trying to bump. I was just testing and coming up with new info. ??
Thanks for looking into this. Here is the site…
https://www.lifetoday4women.com
I am using a custom theme that uses BuddyPress and wp-e-commerce.
Forum: Fixing WordPress
In reply to: problems with login page not working… help??Hmm.. ok so old users appear to have something causing the issue with the login. Any new users created via admin are able to log in just fine. However, if I try to use the registration form on the public site, I get the following error…
Fatal error: Cannot redeclare class PHPMailer in /home/content/g/i/r/girlz411/html/wp-includes/class-phpmailer.php on line 34
Forum: Fixing WordPress
In reply to: problems with login page not working… help??It does appear to have added the user though.
Forum: Fixing WordPress
In reply to: problems with login page not working… help??I tried to add a new user just now and when I tried to submit it, I just got a blank white page here…
https://www.lifetoday4women.com/wp-admin/user-new.php#add-new-user
Forum: Fixing WordPress
In reply to: problems with login page not working… help??Hmmm… so strange. I can log in as the admin via wp-login.php in any browser now. But I cannot log in with any other user. I created a second admin user and no matter how I try to log in or even using a new browser with all cookies cleared, I cannot log in. Can only log in with the primary admin.
Forum: Fixing WordPress
In reply to: problems with login page not working… help??Can anyone PLEASE help me with this???
It’s really strange because now I was able to use a login widget in the sidebar in IE to log in as the admin, but when I logged out and tried to log back in on the wo-login.php page… still had the same problem with it not logging me in. Just refreshed the login page with no errors.
PLEASE PLEASE HELP!!
This is the site…
Forum: Themes and Templates
In reply to: Display child posts of a category?heeellllp??? please?
Forum: Themes and Templates
In reply to: custom image menu to show subpages in drop downheeellllp??? please?
Forum: Themes and Templates
In reply to: custom image menu to show subpages in drop downanyone? help?
Forum: Themes and Templates
In reply to: Display child posts of a category?This is the whole bit of code I currently have. I cannot figure out how to make this show subcategories as well as the parent category. Can anyone help with this?? I tried using the above, but it displayed ALL posts from ALL categories. I’m sure I just didn’t have it set up right. An example would be much appreciated. Thanks!
<?php // page id 21 will get category ID 12 posts, page 16 will get category 32 posts, page 28 will get category 17 posts if (is_page('44') ) { $cat = array(6); } else { $cat = ''; } $showposts = -1; // -1 shows all posts $do_not_show_stickies = 1; // 0 to show stickies $args=array( 'category__in' => $cat, 'showposts' => $showposts, 'caller_get_posts' => $do_not_show_stickies ); $my_query = new WP_Query($args); ?> <?php if( $my_query->have_posts() ) : ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <?php //necessary to show the tags global $wp_query; $wp_query->in_the_loop = true; ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2><?php the_time('F j, Y') ?> <div class="entry-excerpt"> <?php the_excerpt(); ?> </div> <p class="postmetadata"><?php edit_post_link('Edit', '', ' | '); ?> Comments: <?php comments_popup_link('No Comments (leave a comment) ?', '1 Comment ?', '% Comments ?'); ?></p> </div><hr color="#ff9bbc" /> <?php endwhile; ?> <?php else : ?>
Forum: Themes and Templates
In reply to: Display child posts of a category?Thanks, but I am having issues with the code they list in that link. I tried the code below, but it displays ALL category posts, not the selected category and it’s subcategories.
query_posts('cat=4');
Any ideas?
Forum: Hacks
In reply to: change this code to random post?Thanks!
Forum: Hacks
In reply to: change this code to random post?Or would be something like this…
if (is_page('224') ) { $cat = array(7,8); } else { $cat = ''; }