Techno Tim
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Pitch theme – adding images to footer:)Brain Fart I will use that on my kids, they will love it…
Forum: Fixing WordPress
In reply to: Pitch theme – adding images to footeryou would expect image files to have a file link such as https://www.gilracemasonryboston.com/wp-content/uploads/2013/02/bbb.jpg
Forum: Fixing WordPress
In reply to: Exclude Page From MenuAnother way is to make the page private under Publish visability on the page editor, you can still link to these pages manually, I use this for footer links, and other content pages that I do not want in the main menu.
Forum: Fixing WordPress
In reply to: Exclude Page From MenuWith creating a custom menu you can select which is your primary menu, so I cannot see how you can break it, if it does not work switch it back.
Forum: Themes and Templates
In reply to: How to remove page name in twentytwelve themeHiding with Css display:none; is meant to be a no no if over-used on a site.
If you want to remove page name from all pages then use<article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if(!is_page()): ?>
<header class=”entry-header”>
<h1 class=”entry-title”><?php the_title(); ?></h1>
</header>
<?php endif; ?>
This should be in child theme in Twenty Twelve content-page.php, and if it is just the home page then as dbeja say’s use is_front_page…Forum: Plugins
In reply to: [Social Media Feather | social media sharing] Adding extra meta property='og:In answer to my own question, I have just realised that the Yoast Seo plugin has this functionallity already added so I have added to this…
Forum: Themes and Templates
In reply to: Disable Featured Image as Header in Twenty TwelveThank’s Gary That helped me, Don’t appoligise when you have not done anything wrong ??
I just commented out <?php the_post_thumbnail();?> under article id in the content.php that solved it simply.
I wanted to still use the thumbnail for other areas but not on the post pages…..