[desc]: _Trying to implement A Tell-A-Friend link so it is shown under every eligible post/page, displayed both on the blog's front page & individual post & page view.
I have tried the following code & received errors & blank page when trying to view the page; ie:index.php,page.php,single.php
here's the code;
First example of code used;
<?php the_content('<p>Read the rest of this entry »</p>'); ?> (placed after here) <?php if ( is_tellafriend( $post->ID ) ) insert_cform(#); ?>
Second example of code used;
<?php the_content('<p>Read the rest of this page »</p>');?>(placed after here) <h3> <?php echo 'E-Mail "'.get_the_title( $_GET['pid'] ).'" to a friend:'; ?> </p> <?php if ( is_tellafriend( $_GET['pid'] ) ) insert_cform(#); ?>
Third example of code used;
<?php the_content('<p>Read the rest of this entry »</p>'); ?>(placed after here) <?php if ( is_tellafriend( $post->ID ) ) echo '<a href="http://djwalker.co.cc/tell-a-friend/?&pid='.$post->ID.'" title="Tell-A-Friend form">Tell a friend!</a>'; ?>
i have found that if i add multiple email address for admin email using a comma to seperate the address the user is not recieving a confirmation email but the admin email is recieved by myself but only to the 1st admin email address.
[desc]: _Trying to implement A Tell-A-Friend link so it is shown under every eligible post/page, displayed both on the blog's front page & individual post & page view.
I have tried the following code & received errors & blank page when trying to view the page; ie:index.php,page.php,single.php
here's the code;
First example of code used;
<?php the_content('<p>Read the rest of this entry »</p>'); ?> (placed after here) <?php if ( is_tellafriend( $post->ID ) ) insert_cform(#); ?>
Second example of code used;
<?php the_content('<p>Read the rest of this page »</p>');?>(placed after here) <h3> <?php echo 'E-Mail "'.get_the_title( $_GET['pid'] ).'" to a friend:'; ?> </p> <?php if ( is_tellafriend( $_GET['pid'] ) ) insert_cform(#); ?>
Third example of code used;
<?php the_content('<p>Read the rest of this entry »</p>'); ?>(placed after here) <?php if ( is_tellafriend( $post->ID ) ) echo '<a href="http://djwalker.co.cc/tell-a-friend/?&pid='.$post->ID.'" title="Tell-A-Friend form">Tell a friend!</a>'; ?>
i have found that if i add multiple email address for admin email using a comma to seperate the address the user is not recieving a confirmation email but the admin email is recieved by myself but only to the 1st admin email address.
hm. I'll check the code.
so the auto confirmation email is not sent in the event you use more than one admin email address, correct?
i have found that if i add multiple email address for admin email using a comma to seperate the address the user is not recieving a confirmation email but the admin email is recieved by myself but only to the 1st admin email address.
hm. I'll check the code.
so the auto confirmation email is not sent in the event you use more than one admin email address, correct?
have tested with different email address & have found that admin emails are sent to all emails listed except yahoo & auto confirmation emails are sent to all emails used except yahoo, but it did work about 6-7 days ago but have not changed anything apart from uninstalling & reinstalling.