Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter Spnkmyr

    (@spnkmyr)

    Actually, https://wmmi.ca/2015/04/ which is the archive page for posts in April has the following code removed
    <?php get_template_part( 'content', get_post_format() );?>

    which calls

    <article class="post-listing">
      <div class="post-top">
        <h3 class="post-title"> <a href="<?php the_permalink(); ?>">
          <?php the_title(); ?>
          </a></h3>
        <div class="postlisting-meta"> Posted on
          <?php the_time('F jS, Y') ?>
          by
          <?php the_author(); ?>
          and is filed under
          <?php the_category(', ') ?>
        </div>
      </div>
      <div class="post-content">
        <div class="featured-post"> <a href="<?php the_permalink();?>">
          <?php the_post_thumbnail(); ?>
          </a> </div>
        <div class="post-excerpt">
          <?php the_excerpt(); ?>
          <br>
          <span><a href="<?php the_permalink();?>">| Read More </a> |
          <?php edit_post_link(); ?>
          </span> </div>
      </div>
    </article>
    <br>

    and it appears normal. As soon as I replace it, the problem comes back. You would think there is some kind of problem with the html/css referring to the content call, but as far as i can tell there isn’t.

    Forum: Fixing WordPress
    In reply to: CSS problem

    You can do two things. The rule you have above is a global rule for all hyperlinks. You can either remove that and create rules for each type of hyperlink by adding a class to it, or, keep those global rules and then make other rules for the hyperlinks you don’t want to change, again by assigning classes.

    Thread Starter Spnkmyr

    (@spnkmyr)

    Thanks

    Thread Starter Spnkmyr

    (@spnkmyr)

    Collapsing Archives – I should note that it was untested with a previous version of wordpress and worked fine

    Thread Starter Spnkmyr

    (@spnkmyr)

    I’m going to do a couple other tests, but perhaps because it is untested with this version of wordpress..Although previously, I attempted to edit the settings for contact form 7 and it did the same thing… I’ll get back to you.

    Thread Starter Spnkmyr

    (@spnkmyr)

    Hey, tried manually resetting – no luck. Even deleted the plugin folder completely, remade it, re-downloaded the plugin (in this case it was collapsing archives) and when I click on options and settings, I still get the error. I do not however get that error with plugins such as meta-slider that add their own link to the dashboard.

    I am using the default theme that comes with wordpress. No luck.

    I have verified the above steps via putty in Mysql, still no luck.

    Any other ideas?

    I’m not too sure about the featured images – haven’t fooled around with it too much. What do you mean when you say it dominates the post?

    Verify that your content-single.php is the same as below

    <?php
    /**
     * Displays
     *
     * @package vantage
     * @since vantage 1.0
     * @license GPL 2.0
     */
    ?>
    
    <article id="post-<?php the_ID(); ?>" <?php post_class('post'); ?>>
    
    	<div class="entry-main">
    
    		<?php do_action('vantage_entry_main_top') ?>
    
    		<header class="entry-header">
    
    			<?php if( has_post_thumbnail() && siteorigin_setting('blog_featured_image') ): ?>
    				<div class="entry-thumbnail"><?php the_post_thumbnail( is_active_sidebar('sidebar-1') ? 'post-thumbnail' : 'vantage-thumbnail-no-sidebar' ) ?></div>
    			<?php endif; ?>
    
    			<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'vantage' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    
    			<?php if ( get_post_type() == 'post' ) : ?>
    				<div class="entry-meta">
    					<?php vantage_posted_on(); ?>
    				</div><!-- .entry-meta -->
    			<?php endif; ?>
    
    		</header><!-- .entry-header -->
    
    		<div class="entry-content">
    			<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'vantage' ) ); ?>
    			<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'vantage' ), 'after' => '</div>' ) ); ?>
    		</div><!-- .entry-content -->
    
    		<?php if(vantage_get_post_categories()) : ?>
    			<div class="entry-categories">
    				<?php echo vantage_get_post_categories() ?>
    			</div>
    		<?php endif; ?>
    
    		<?php do_action('vantage_entry_main_bottom') ?>
    
    	</div>
    
    </article><!-- #post-<?php the_ID(); ?> -->
Viewing 8 replies - 1 through 8 (of 8 total)