miowebdesigns
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] basic setupOK, fittingsites I get that part of the setup. Thank you. Here is what I am looking to do, as I load a page post entries I want to load a slide show that displays across the top of the page. Maybe it loads in the_loop, maybe I load an array and feed the slide show from the array. Can I do that using contact form 7 or some other plugin?
Forum: Fixing WordPress
In reply to: create button for page callI could like to be able to call my contact page from a button rather than a menu option.
Forum: Fixing WordPress
In reply to: Matching Page Style to Post StyleTo be more specific, that line puts a heading and the details out there but I want to style just the heading. Where is that magic place? If I add a line to style.css what might it look like?
Forum: Fixing WordPress
In reply to: Matching Page Style to Post StyleWhere is the styling for
<div <?php post_class();?> id="post-<?php the_ID();?>">
? I don’t want it centered and would like to maybe make other tweaks. Is there a hidden style sheet?Forum: Fixing WordPress
In reply to: email linkSamuel,
I looked into using contact form 7 but I have a custom contact page and I couldn’t find the documentation in contact form 7 how to make their form look like mine. I think it might work for me but I am having trouble with finding good documentation. Can you tell me where to find customizing the contact page and the mailto thing in their documentation? It sounds like you know something about contact form 7.Thanks.
Forum: Fixing WordPress
In reply to: single.php next and previous postsThe first example worked. Thanks.
Forum: Installing WordPress
In reply to: multiple "the Loop" not showing second postsOne small issue if that the date is not showing up after the first post.
Forum: Installing WordPress
In reply to: multiple "the Loop" not showing second postsThank you, thank you …That was it.
Forum: Installing WordPress
In reply to: multiple "the Loop" not showing second postsMaybe this will show up.
<!-- Start the Loop. --> <?php $myquery = new WP_Query(); $myquery->query('showposts=2'); ?> <?php while ($myquery->have_posts()) : $myquery->the_post(); ?> <?php if ( in_category('projects') ) { ?> <li> <div id="homepage_projects_text" class="group"> <div class="home_projects_image"> <?php if(has_post_thumbnail()) { ?> <?php the_post_thumbnail('thumbnail');?> <?php } else { ?> <img src="<?php bloginfo('template_url'); ?>/images/no_image.png" alt="no image available"/> <?php } ?> </div> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <p><?php the_excerpt(); ?></p> </div> </li> <?php } ?> <?php endwhile; ?>
<!-- Start the Loop. --> <?php $anotherquery = new WP_Query(); $anotherquery->query('showposts=2'); ?> <?php while ($anotherquery->have_posts()) : $anotherquery->the_post(); ?> <?php if ( in_category('blog') ) { ?> <li> <div id="blog_title"> <div class="blog_date"><?php the_date(); ?></div> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2></div> <p><?php the_excerpt(); ?></p> </li> <?php } ?> <?php endwhile; ?>
Forum: Installing WordPress
In reply to: multiple "the Loop" not showing second postsYou can’t see it because the code didn’t appear but that is exactly what I am doing.
Forum: Plugins
In reply to: Simple Mail Address Encoderoops