GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Fris or other WordPress gurus.. (https://gfy.com/showthread.php?t=1111364)

RevSand 06-03-2013 12:28 PM

Fris or other WordPress gurus..
 
Super dumb question I am sure but I cannot find the fucking setting or if its from one of the plugins..

On the front page for each new post its adding:

Quote:

This is a preview of **Post title**. Read the full post (144 words, 2 images, estimated 35 secs reading time)
Then when clicked it shows the rest of the post and graphics.

I just want the entire post to show up without all that crap. :helpme

Thanks in advance!

Dankasaur 06-03-2013 12:29 PM

Check your theme file.

RevSand 06-03-2013 12:30 PM

Quote:

Originally Posted by Dankasaur (Post 19653133)
Check your theme file.

Poked around there.. Will again.. Any idea of file in the theme?

Like I said.. Its prob just something that I am missing and getting frustrated not finding.. :error

CaptainWolfy 06-03-2013 12:33 PM

Quote:

Originally Posted by RevSand (Post 19653137)
Poked around there.. Will again.. Any idea of file in the theme?

Like I said.. Its prob just something that I am missing and getting frustrated not finding.. :error

check your functions.php or something like that it depends on theme how it display read more and stuff like that, loop.php or something like that, can't be exact not knowing what theme is in question.

Colmike9 06-03-2013 12:35 PM

What is the theme? And is there maybe a theme option for showing content and not excerpt?

RevSand 06-03-2013 01:04 PM

Quote:

Originally Posted by Colmike7 (Post 19653146)
What is the theme? And is there maybe a theme option for showing content and not excerpt?

Theme is.. http://wordpress.org/themes/kitten-in-pink Going into the files right now to take a look..

RevSand 06-03-2013 01:06 PM

Ahh may have found it..

functions.php

Quote:

<?php
if ( function_exists('register_sidebars') )
register_sidebars(2);


function improved_trim_excerpt($text) {
global $post;
if ( "" == $text ) {
$text = get_the_content("");
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]&gt;', $text);
$text = preg_replace('@<script[^>]*?>.*?</script>@si', "", $text);
$text = strip_tags($text, '<p>');
$excerpt_length = 80;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words)> $excerpt_length) {
array_pop($words);
array_push($words, '[...]');
$text = implode(' ', $words);
}
}
return $text;
}


?>
Seem like it to others? and what do I do with it??

BSleazy 06-03-2013 01:15 PM

delete this

Code:

function improved_trim_excerpt($text) {
global $post;
if ( "" == $text ) {
$text = get_the_content("");
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]&gt;', $text);
$text = preg_replace('@<script[^>]*?>.*?</script>@si', "", $text);
$text = strip_tags($text, '<p>');
$excerpt_length = 80;
$words = explode(' ', $text, $excerpt_length + 1);
if (count($words)> $excerpt_length) {
array_pop($words);
array_push($words, '[...]');
$text = implode(' ', $words);
}
}
return $text;
}

and there's probably something in the index.php file you'll want to remove

RevSand 06-03-2013 01:21 PM

Quote:

Originally Posted by BCyber (Post 19653203)
delete this



and there's probably something in the index.php file you'll want to remove

I'll give that a try..



Index.php
Quote:

<?php get_header(); ?>

<div class="span-15" id="main-content">
<!-- main loop start -->



<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">

<h2 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="post_by">By <?php the_author_posts_link() ?> on <?php the_time('F jS, Y') ?>. This post has <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?> </div>
<div class="entry">
<?php the_content(); ?><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Read full story &raquo;</a>
<?php //the_content(); ?>
<div class="category"><?php the_tags(); ?><br />Filed Under:<?php the_category(', ') ?>
</div>


</div>

</div>

<?php endwhile; ?>

<div class="navigation"><br />
<?php posts_nav_link(); ?>
</div>

<?php else : ?>

<div class="post">
<h2><?php _e('Not Found'); ?></h2>
</div>

<?php endif; ?>
</div>

<!-- main loop end -->
<?php get_sidebar(); ?>


<?php get_footer(); ?>

RevSand 06-03-2013 01:28 PM

Quote:

Originally Posted by BCyber (Post 19653203)
delete this


and there's probably something in the index.php file you'll want to remove

no bueno so far.. Still on there just removing that code.. :Oh crap


And thanks for the time and help on this.. I've been looking for something I thought would be a super easy fix since last night. :mad:

BSleazy 06-03-2013 01:35 PM

Ya strange there's nothing in there that would make it say This is a preview of **Post title**. Read the full post (144 words, 2 images, estimated 35 secs reading time)

Are you looking at post previews or something? Skype me the url and I'll look.

RevSand 06-03-2013 01:49 PM

Quote:

Originally Posted by BCyber (Post 19653228)
Ya strange there's nothing in there that would make it say This is a preview of **Post title**. Read the full post (144 words, 2 images, estimated 35 secs reading time)

Are you looking at post previews or something? Skype me the url and I'll look.

Added you on skype.. RevSandx

madtwin 06-03-2013 02:11 PM

I'm using this theme on one site and there's no problem with such thing. Check your plugins.

BSleazy 06-03-2013 02:34 PM

It was the Core Tweaks WordPress Setup/SEO automatic plugin which added a post teaser plugin.

RevSand 06-03-2013 02:35 PM

HUGE thanks to BCyber for the help and found the fix.. :thumbsup

It was in the seo automatic plugin I had added for those following along at home.. :2 cents:

To the rest of you! :321GFY


:winkwink:

Dankasaur 06-03-2013 03:26 PM

Quote:

Originally Posted by RevSand (Post 19653299)
HUGE thanks to BCyber for the help and found the fix.. :thumbsup

It was in the seo automatic plugin I had added for those following along at home.. :2 cents:

To the rest of you! :321GFY


:winkwink:

Into the ground, Rev. Into. The. Fucking. Ground. :mad:

RevSand 06-03-2013 06:10 PM

Quote:

Originally Posted by Dankasaur (Post 19653367)
Into the ground, Rev. Into. The. Fucking. Ground. :mad:


Thats how I roll! :1orglaugh

PornDiscounts-V 06-03-2013 06:12 PM

Oh boy...

Dankasaur 06-03-2013 06:14 PM

Quote:

Originally Posted by RevSand (Post 19653567)
Thats how I roll! :1orglaugh

:1orglaugh:1orglaugh:1orglaugh

RevSand 06-03-2013 06:18 PM

Quote:

Originally Posted by Dankasaur (Post 19653572)
:1orglaugh:1orglaugh:1orglaugh

I feel I should know you from that comment but I am not matching the name.. :error

Dankasaur 06-03-2013 06:21 PM

Quote:

Originally Posted by RevSand (Post 19653580)
I feel I should know you from that comment but I am not matching the name.. :error

Added you on Skype. :pimp

sicone 06-03-2013 06:38 PM

Quote:

Originally Posted by Dankasaur (Post 19653367)
Into the ground, Rev. Into. The. Fucking. Ground. :mad:

When you have a good system going why stop it?

:1orglaugh:1orglaugh:1orglaugh

RevSand 06-03-2013 06:41 PM

Quote:

Originally Posted by sicone (Post 19653611)
When you have a good system going why stop it?

:1orglaugh:1orglaugh:1orglaugh


Somethings don't change.. Ahh cfus..

georgeyw 06-03-2013 06:54 PM

Quote:

Originally Posted by Dankasaur (Post 19653367)
Into the ground, Rev. Into. The. Fucking. Ground. :mad:



All times are GMT -7. The time now is 11:16 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc