leatherbarrow
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Supersized] Use only on Home pageMy mistake guys. The tabs down the bottom of each page are buttons. Doh!
Forum: Plugins
In reply to: [WP Supersized] Use only on Home pageHi guys,
Can someone please help with this.
Any help would be greatly appreciated!Forum: Plugins
In reply to: [WP Supersized] [Plugin: WP Supersized] Not turning off for Home template?Can anyone help here? I have the same problem. I just want to use it on the homepage. I’ve selected only the homepage in settings and it doesn’t work. Can anyone reccomend a better plugin to do the same thing?
Thanks guys.
Forum: Plugins
In reply to: [Contact Form 7] Style File Upload Button and FieldHi Tasha,
I ended up going with fast secure contact form. Much better plugin.
I hope this helps.Adam.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Remove "*required field" textHi Chad. Thank you so much for the help. Sorry about the late reply, been away. All the best!
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Remove "*required field" textWTF?
Someone took the time to delete some of my posts but not to offer support. Is there anyone willing to help?Forum: Themes and Templates
In reply to: Posts Page Ignoring TemplateJust to further clarify.
I originally decided to take the “banner” div out of the “header.php” file and place it at the top of each template page and just change the image link on each page to achieve the different banner images.
That’s when I realised that the “news” page which was selected in my Reading settings as my posts page wasn’t displaying the header, hence the original question.
I hope this is clear enough to help anyone else in a similar situation.
Thanks.
Forum: Themes and Templates
In reply to: Posts Page Ignoring TemplateThanks guys
Forum: Themes and Templates
In reply to: Posts Page Ignoring TemplateHi Doug,
Thanks so much for your prompt and helpful reply. I’ve actually worked it out. I will try to clarify for others in the same situation.
I am building a site with a custom theme I have built from scratch. I wanted to use a fading slideshow (bannerspace plugin) in the header of the home page only, which is a static page. I then wanted to use a different static banner on every other page. In essence every page would have a different banner.
The way I achieved it was with conditionals. The code is as follows:
I placed this code inside the “banner” div on the “header.php” page:
<div id=”banner”>
<?php if( is_front_page() )
{echo do_shortcode(‘[bannerspace]’); }
?><?php if( is_page( ‘about-us’ ) )
{echo “<img src=’https://mysite.com/wp-content/themes/mytheme/ images/aboutBanner.jpg’/>”; }
?><?php if( is_page( ‘contact-us’ ) )
{echo “<img src=’https://mysite.com/wp-content/themes/mytheme/ images/contactBanner.jpg’/>”; }
?></div><!–END banner–>