Forum Replies Created

Viewing 13 replies - 16 through 28 (of 28 total)
  • Hello,

    I am having this same issue. I have installed the plugin, gotten Key and Secret and published the form
    https://www.natalie-brown.com/contact-2/

    I get the message:
    Your message could not be sent at this time.

    I am using WP Version 3.0.1
    Plugin reCAPTCHA Form Version 1.2

    Anyone have a fix? I have tried alternate CAPTCHA and they work, but we need Audio as visually impaired people visit the site and can’t send mail to the client.

    Thanks for any help you can give!

    Thread Starter webgyrl

    (@webgyrl)

    @kkarpieszuk and @ipstenu thank u so much for your answers. Good to know about templates.. that was really my main concern. Looking forward to final, stable release ??

    Did you ever find out how to modify this?

    Thanks!

    I know, the support and help is pitiful. I’d be glad to pay for it even at this point.

    Did you find a solution to this?

    Did you ever find a solution to this? I have a client who would like this.

    Thanks!

    I’d like to know this also as I switched my domain and none of my images show and it’s not in the backend settings.

    Thread Starter webgyrl

    (@webgyrl)

    Oh sorry, the live link is

    5rracehorsecf.org

    Thanks!

    webgyrl

    (@webgyrl)

    Did you ever find a public post hits counter plugin? I am also looking for one and haven’t had any luck. I want something that shows how many cumulative views a post or page has received.

    Thanks!

    Thread Starter webgyrl

    (@webgyrl)

    Sorry to bump this, but does anyone have an idea as to why 2 emails are sent?

    webgyrl

    (@webgyrl)

    Did you ever figure out how to do this?

    Forum: Plugins
    In reply to: Search help
    webgyrl

    (@webgyrl)

    I would really love this also. The Docs section can be a bit overwhelming and finding info is hard sometimes. It would be great to have a search feature just for this section.

    Thread Starter webgyrl

    (@webgyrl)

    Hello!

    It seems that in this particular template the more is hard coded. Though I am not a PHP guru by any means and am not sure. Unfortunately, this is for a client who came to me with template in place and changing is not an option.

    I have found the bit of code in the index.php file that controls the posting, and it is as follows:

    <!--Begin Post Single-->
    <div class="entry">
    <?php // if there's a thumbnail
    if($thumb !== '') { ?>
    <div class="thumbnail-div">
    <img src="<?php echo $thumb; ?>" width="573px" height="187px" alt="<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>" />
    </div>
    <?php } // end if statement
    // if there's not a thumbnail
    else { echo ''; } ?>
    <div class="post-info">Posted by <?php the_author() ?> in  <?php the_category(', ') ?> on  <?php the_time('m jS, Y') ?> |  <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div>
    <span class="titles"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title2('', '...', true, '40') ?></a></span>
    <?php the_content_limit(300, ""); ?>
    <div class="readmore"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">Read More</a></div>
    </div>
    </div>
    <!--End Post Single-->

    I did some research (similar to what you have posted tomontoast)on how to change this and I applied a change to supposedly show all the content of the post. Here is the code from the index.php file:

    <!--Begin Post Single-->
    <div class="entry">
    <?php // if there's a thumbnail
    if($thumb !== '') { ?>
    <div class="thumbnail-div">
    <img src="<?php echo $thumb; ?>" width="573px" height="187px" alt="<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>" />
    </div>
    <?php } // end if statement
    // if there's not a thumbnail
    else { echo ''; } ?>
    <div class="post-info">Posted by <?php the_author() ?> in  <?php the_category(', ') ?> on  <?php the_time('m jS, Y') ?> |  <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div>
    <span class="titles"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title2('', '...', true, '40') ?></a></span>
    <?php the_content(); ?>
    </div>
    </div>
    <!--End Post Single-->

    This unfortunately, not working to get me an entire post instead of the teaser text that shows with the “Read More”

    Can anyone see where I might have made an error ammending the code and if so what can I do to fix it so that the entire contents of a post will show on the front page of the blog?

    Just in case it helps, here is the code for the index.php file:

    <?php get_header(); ?>	
    
    <div id="container">
    
    <div id="left-div">
    
    <div id="left-inside">
    
    <?php if (have_posts()) : while (have_posts()) : the_post();
      if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
    
    <?php
    // check for thumbnail
    $thumb = get_post_meta($post->ID, 'Thumbnail', $single = true);
    // check for thumbnail class
    $thumb_class = get_post_meta($post->ID, 'Thumbnail Class', $single = true);
    // check for thumbnail alt text
    $thumb_alt = get_post_meta($post->ID, 'Thumbnail Alt', $single = true);
     ?>
    
    <div class="home-post-wrap">
    
    <img src="<?php bloginfo('stylesheet_directory'); ?>/images/delete.gif" alt="delete" class="delete" style="float: right; margin-top: -5px; margin-right: -5px; cursor: pointer;" />
    
    <div style="clear: both;"></div>
    
    <!--Begin Post Single-->
    <div class="entry">
    <?php // if there's a thumbnail
    if($thumb !== '') { ?>
    <div class="thumbnail-div">
    <img src="<?php echo $thumb; ?>" width="573px" height="187px" alt="<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>" />
    </div>
    <?php } // end if statement
    // if there's not a thumbnail
    else { echo ''; } ?>
    <div class="post-info">Posted by <?php the_author() ?> in  <?php the_category(', ') ?> on  <?php the_time('m jS, Y') ?> |  <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></div>
    <span class="titles"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title2('', '...', true, '40') ?></a></span>
    <?php the_content(); ?>
    </div>
    </div>
    <!--End Post Single-->
    
    <?php endwhile; ?>
    
    <div style="clear: both;"></div>
    
    <p class="pagination"><?php next_posts_link('&laquo; Previous Entries') ?> <?php previous_posts_link('Next Entries &raquo;') ?></p>
    
    <?php else : ?>
    
    <!--If there are no results-->
    <h2 >No Results Found</h2>
    <p>Sorry, your search returned zero results. </p>
    <!--End if there are no results-->
    
    <?php endif; ?>
    
    </div>
    
    </div>
    
    <!--Begin Sidebar-->
    <?php get_sidebar(); ?>
    <!--End Sidebar-->
    
    <!--Begin Footer-->
    <?php get_footer(); ?>
    <!--End Footer-->
    
    </body>
    </html>

    Thanks so much! ??

Viewing 13 replies - 16 through 28 (of 28 total)