m-u-r
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme updates not showing up…I think one of the plug-ins was causing the problem. THANK YOU! I never would have thought that would be the solution.
Forum: Fixing WordPress
In reply to: WP-Stats plug-inReally? That seems really strange….but yes, it is 2.9.2.
Forum: Themes and Templates
In reply to: (more) on the default themeI downloaded a fresh wordpress pack and looked at the archive.php file. Where do I modify the “more” part? Am I crazy? I don’t see anything.
Forum: Themes and Templates
In reply to: conditionalsIt seems to need a refresh after the first visit to each of the pages/categories to the search query replace thing to work. The header is an .swf, so there are two places where the url is given. This is what I have in those places:
<?php if(is_home()){ echo '<param name="movie" value="https://mydomain.com/file.swf" />';} else if(is_category(array(4, 7, 8, 9))){ echo '<param name="movie" value="https://mydomain.com/file.swf?portfolio=1" />';} else if(in_category(array(4, 7, 8, 9))){ echo '<param name="movie" value="https://mydomain.com/file.swf?portfolio=1" />';} else if(is_page(array("Skills", 2))){ echo '<param name="movie" value="https://mydomain.com/file.swf?about=1" />';} else { echo '<param name="movie" value="https://mydomain.com/file.swf" />';}?>
and
<?php if(is_home()){ echo '<object type="application/x-shockwave-flash" data="https://mydomain.com/file.swf" width="575" height="28">';} else if(is_category(array(3, 4, 7, 8, 9))){ echo '<object type="application/x-shockwave-flash" data="https://mydomain.com/file.swf?portfolio=1" width="575" height="28">';} else if(in_category(array(3, 4, 7, 8, 9))){ echo '<object type="application/x-shockwave-flash" data="https://mydomain.com/file.swf?portfolio=1" width="575" height="28">';} else if(is_page(array("Skills", 2))){ echo '<object type="application/x-shockwave-flash" data="https://mydomain.com/file.swf?about=1" width="575" height="28">';} else { echo '<object type="application/x-shockwave-flash" data="https://mydomain.com/file.swf" width="575" height="28">';} ?>
Forum: Themes and Templates
In reply to: Flash parametersI figured it out. Thanks. Sorry. There was a post just below that explained conditional variables which worked great.
Forum: Fixing WordPress
In reply to: HELP needed. Can’t make WP work.same problem.
Forum: Themes and Templates
In reply to: The amount of excerpt text on the front page…Sorry, but where in functions.php?
Isn’t there a way to modify the excerpt function as it already exists? Where is it told to put 9 lines?