Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter AdRock952

    (@adrock952)

    Hi Dan

    I added some code where I could add taxonomies to media file. I’ve added a taxonomy to each of my media files and because there could be loads each for a different page, i created a taxonomy. I’ve only got one so far.

    These ones i’m trying to add is for a page called Application Forms.

    Could it be because the taxonomy and the page have the same name?

    Thanks Boris

    I’ve been struggling with this problem all morning and your question was exactly the same as mine.

    I too had to calls to jQuery and removing the one in the foot solved my problem.

    Was driving me nuts!!!!

    Thread Starter AdRock952

    (@adrock952)

    I just gave up with this and reinstalled wordpress version 3.8 and did no updates, installed all plugins and everything works fine now. Must have been some update that screwed it up

    Thread Starter AdRock952

    (@adrock952)

    I have now got it to display on the front page and the posts page (news-page.php and single.php).

    The content block is still in footer.php where it should be but won’t display on page.php or any other custom page

    This is my footer.php

    <div class="container">
    		<div id="quick-links" class="quick-links">
    			<?php the_block( 'Quick Links' ); ?>
    		</div>
    	</div>
    	<footer>
    
        </footer>
    
        <!-- Le javascript
        ================================================== -->
        <script src="../assets/js/jquery.js"></script>
        <script src="../assets/js/bootstrap.js"></script>
    
      </body>
    </html>

    and this is my news-page.php

    <?php
    /*
    Template Name: News Page
    */
    ?>
    <?php get_header(); ?>
    <div class="container">
    	<div class="row">
    		<div class="span12">
    			<?php if ( function_exists('yoast_breadcrumb') ) {
    				yoast_breadcrumb('<p id="breadcrumbs">Your\'re here: ','</p>');
    			} ?>
    			<hr />
    		</div>
    	</div>
    	<div class="row">
    		<div class="span8">
    
    			<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    				<?php the_content(); ?>
    
    			<?php endwhile; else: ?>
    				<p><?php _e('Sorry, this page does not exist.'); ?></p>
    			<?php endif; ?>
    
    		</div>
    		<div class="span4">
    			<?php get_sidebar(); ?>
    		</div>
    	</div>
    </div>
    <?php get_footer(); ?>
    <?php wp_footer(); ?>

    My page.php is EXACTLY the same as this without the comments but news-page.php shows the content block but page.php or any other page template the same as news.page.php doesn’t show the content block

    Thread Starter AdRock952

    (@adrock952)

    Thanks for your quick reply.

    Where i have pasted the code to display the block in the footer, it creates the div but it’s empty.

    I’m testing this on localhost on a local machine.

    I haven’t changed anything apart from doing updates when WordPress displays any.

    If i show inactive blocks, i can see the block that I want but it doesn’t display

Viewing 5 replies - 1 through 5 (of 5 total)