stephditt
Forum Replies Created
-
Forum: Plugins
In reply to: Meteor Slides – Can I have this?Thank you Josh,
Today I learned that the issue I was experiencing was due to a simple plugin I had installed on the site that caused conflict with the java-script Meteor Slides used.
Deactivate the bad plugin, and bingo… worked perfect.Josh I could not thank you enough,
Thank youForum: Plugins
In reply to: Meteor Slides – Can I have this?Hey Josh, I just shot you a facebook message, I did not care to post the site on this public support site. I hope that’s ok. Sorry it took so long, I’ve been busy at work. When they offer OT you gotta jump on it.
Forum: Plugins
In reply to: Meteor Slides – Can I have this?From what I have read the white screen is caused by a floating logo that covers up part of the header slideshow. 🙁 I don’t want to remove the logo, do you know is this is a known issue or even an issue at all?
Forum: Plugins
In reply to: Meteor Slides – Can I have this?I did not edit the .css page, just included it so you could see it. So I am doing it right. I’m getting a white banner, so I’m assuming its a settings issue. I’ll troll the forms and see if I can figure it out. :-S
Thanks for the help so farForum: Plugins
In reply to: Meteor Slides – Can I have this?The issue I’m running into here is
This is what I have, in the style.css file.site-masthead { width:100%; min-width:1200px;<body <?php body_class(); ?>> <div id="page" class="hfeed site"> <header id="masthead" class="site-header" role="banner"> <div id="site-header"> <img src="http://website.com/i/header2.jpg" class="site-masthead"/> <div id="site-logo-position"> <a href="http://website.com"><img src="http://website.com/i/site-logo.png" class="site-logo"/></a> </div>I’m replacing the header.php code with this…
<body <?php body_class(); ?>> <div id="page" class="hfeed site"> <header id="masthead" class="site-header" role="banner"> <div id="site-header"> <?php if ( function_exists( 'meteor_slideshow' ) ) { if ( is_page( 'about' ) ) { meteor_slideshow( "about", "" ); } else if ( is_page( 'contact' ) ) { meteor_slideshow( "contact", "" ); } else if ( is_page( 'page3' ) ) { meteor_slideshow( "page3", "" ); } else { meteor_slideshow( "default", "" ); } } ?> <div id="site-logo-position"> <a href="http://website.com"><img src="http://website.com/i/site-logo.png" class="site-logo"/></a> </div>And no go, Not sure what I’m doing wrong, I’m about ready to toss in the towel. lol Any clue what I’m not doing correct?
Forum: Plugins
In reply to: Meteor Slides – Can I have this?Sorry it took so long to give an update, My desktop took a dive so I’m stuck on my laptop. It can’t handle adobe CS.. So get to work with notepad, and GimpShop.
Just to clarify…
if ( is_page( 'webpage title' ) ) { meteor_slideshow( "slide slug name", "" );am I correct in my thinking?
Forum: Plugins
In reply to: Meteor Slides – Can I have this?Awesome, I’ll try that out tonight. Thank you, I’ll let you know if I can get it.
Forum: Plugins
In reply to: Meteor Slides – Can I have this?So if I were to have 6ish pages Something like this?
<?php if ( function_exists( 'meteor_slideshow' ) ) { if ( is_page( 'about' ) ) { meteor_slideshow( "about", "" ); } else { meteor_slideshow( "default", "" ); } if ( is_page( 'contact' ) ) { meteor_slideshow( "contact", "" ); } else { meteor_slideshow( "default", "" ); } if ( is_page( 'page3' ) ) { meteor_slideshow( "page3", "" ); } else { meteor_slideshow( "default", "" ); } } ?>And so on, rather then the code that I have in the header already from inside the header.php file?
Forum: Plugins
In reply to: Meteor Slides – Can I have this?FYI I used the hard-code option inside the template header.php file to add my slide show header using Meteor Slides