dwbelliveau
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Random lines on siteDone and done!
Forum: Fixing WordPress
In reply to: Random lines on siteWoo, that did it! Thank you guys so much for your help. You have no idea how terrible I am at this, so you just saved me days of agony. ??
Forum: Fixing WordPress
In reply to: Random lines on siteHmm, I added that, but it didn’t change anything. Do you think it’s because it’s a page, not a post?
Forum: Fixing WordPress
In reply to: Random lines on siteI have no idea if this will help at all, but the code for the page.php is as follows:
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other ‘pages’ on your WordPress site will use a
* different template.
*
* @package coherent
*/get_header(); ?>
<div id=”primary” class=”content-area”>
<main id=”main” class=”site-main” role=”main”><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘page’ ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?><?php endwhile; // end of the loop. ?>
</main><!– #main –>
</div><!– #primary –>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Random lines on siteThanks for the help! I added the first CSS that @santeven posted, and it got rid of the line, however the box is still there. @christystjohn, I’m trying to figure out what you’re saying to get rid of the box.
This is actually on the page level, but for some reason, this theme seems to treat pages similar to posts, with the date and everything included. Knowing what I know now, I probably would’ve chose a different theme, but at this point, the last thing I need to do just get rid of the box to have it looking like I would like.
Thanks again for taking the time to help. If you could clarify how to get rid of the box, I’d really appreciate it!
Forum: Plugins
In reply to: [OnePress Social Locker] Not working when publishedNevermind, resolved it ??