webgyrl
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: reCAPTCHA Form] Cannot send messageHello,
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.2Anyone 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!
Forum: Alpha/Beta/RC
In reply to: What is estimated final release date for 3.0?@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!
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Helpful bunch you people areI know, the support and help is pitiful. I’d be glad to pay for it even at this point.
Forum: Fixing WordPress
In reply to: Splash-page without installing WP in seperate directory. (?)Did you find a solution to this?
Forum: Plugins
In reply to: Individual mouseover sound effects for natigation barDid you ever find a solution to this? I have a client who would like this.
Thanks!
Forum: Fixing WordPress
In reply to: Media File URL in which table/field in SQL database?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.
Forum: Fixing WordPress
In reply to: Can’t See Images After Domain Name ChangeOh sorry, the live link is
5rracehorsecf.org
Thanks!
Forum: Plugins
In reply to: [Plugin: Google Analyticator] Hit counter?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!
Forum: Fixing WordPress
In reply to: Notification Emails Going To 2 Admins? Want Only OneSorry to bump this, but does anyone have an idea as to why 2 emails are sent?
Forum: Fixing WordPress
In reply to: Send moderation emails to specific adminDid you ever figure out how to do this?
Forum: Plugins
In reply to: Search helpI 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.
Forum: Fixing WordPress
In reply to: No “Read More”… Show entire post on front page?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('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?></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! ??