alicatgatorgirl
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form set up, green confirmation, no mailsI am having the same issue. I’ve been testing and sending emails all day and a few sporadically go through but most do not. Can you please review and tell me what Im doing wrong?
https://www.tumble2ugymnastics.com/contact/
Form:
<p>Your Name (required)
[text* your-name] </p><p>Your Email (required)
[email* your-email] </p><p>Subject
[text your-subject] </p><p>Your Message
[textarea your-message] </p><p>Please enter the text below
</p>[captchac captcha-628 size:l]
[captchar captcha-628]<p>[submit “Send”]</p>
Mail:
From: [your-name] <[your-email]>
Subject: [your-subject]
Additional headers: Reply-to: [Jennifer] <[[email protected]]>
File attachments:
Use HTML content type
Message body:
From: [your-name] <[your-email]>
Subject: [your-subject]Message Body:
[your-message]—
This e-mail was sent from a contact form on Tumble2ugymnastics (https://www.tumble2ugymnastics.com)Mail (2):
To: [your-email]
From: [your-name] <[your-email]>
Subject: [your-subject]
Additional headers:
File attachments:
Use HTML content type
Message Body: [your-message] — This e-mail was sent from a contact form on Tumble2ugymnastics (https://www.tumble2ugymnastics.com)Thanks so much!
Same problem here. Can anyone help?
Forum: Fixing WordPress
In reply to: Query Custom Post Type HelpHi David,
Thanks for your help. My custom post type was set up as part of the “Testimonials for WordPress” plugin that I purchased. The code isn’t working, but since it was tested, it must be a problem with my plugin working with the code…as it just deletes my existing page content (sidebar) when I upload the tested code. I have emailed the plugin developer to see if he can provide any input. I’ll mark it as resolved if I can get it working! Thanks again ??
Forum: Fixing WordPress
In reply to: Query Custom Post Type HelpHi David,
Sorry about that. I’m new to this and its the first time I have had to paste large code. My page.php file contents are located at
Thanks again!
Forum: Fixing WordPress
In reply to: Query Custom Post Type HelpI forgot to mention that when I put that code in, my sidebar testimonials form disappeared. So, I changed my page template back to its original to get the form back.
Forum: Fixing WordPress
In reply to: Query Custom Post Type Helphttps://photographybyericah.com/wordpress/about/client-testimonials/
Can you check my code below and see if you think I put the code in the wrong place?
<?php
/*
Template Name: Client Testimonials*/
?><?php get_header(); ?>
<div id=”container”>
<div id=”main”>
Throughout the years, my clients have generously provided the following 100% unedited testimonials. If you would like to submit a testimonial, please complete the form on the right side of this page.
<div class=rule></div>
query_posts ( ‘post_type’ = ‘testimonials’);
<?php
$wp_query= null;
$wp_query = new WP_Query();
$args = array(
‘post_type’ => ‘testimonials’,
‘showposts’ => ’10’,
‘&paged’ => $paged,
);
$wp_query->query( $args );
?><?php if ( $wp_query->have_posts() ) : ?>
<?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
<!– Output testimonial here –>
<?php endwhile; ?>
<?php endif; ?>
</div><!– /#content –></div><!– /#container –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Thanks again!