Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 06-03-2013, 12:28 PM   #1
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
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.

Thanks in advance!
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 12:29 PM   #2
Dankasaur
So Fucking Fossilized
 
Industry Role:
Join Date: Sep 2011
Posts: 1,432
Check your theme file.
Dankasaur is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 12:30 PM   #3
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by Dankasaur View Post
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..
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 12:33 PM   #4
CaptainWolfy
Playa
 
CaptainWolfy's Avatar
 
Industry Role:
Join Date: Dec 2005
Location: Somewhere on the Earth
Posts: 8,439
Quote:
Originally Posted by RevSand View Post
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..
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.
CaptainWolfy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 12:35 PM   #5
Colmike9
(>^_^)b
 
Colmike9's Avatar
 
Industry Role:
Join Date: Dec 2011
Posts: 7,224
What is the theme? And is there maybe a theme option for showing content and not excerpt?
__________________
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.
I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Colmike9 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:04 PM   #6
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by Colmike7 View Post
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..
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:06 PM   #7
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
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??
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:15 PM   #8
BSleazy
Confirmed User
 
Industry Role:
Join Date: Aug 2002
Location: USA
Posts: 6,721
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
__________________
icq 156131086
BSleazy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:21 PM   #9
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by BCyber View Post
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(); ?>
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:28 PM   #10
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by BCyber View Post
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..


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.
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:35 PM   #11
BSleazy
Confirmed User
 
Industry Role:
Join Date: Aug 2002
Location: USA
Posts: 6,721
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.
__________________
icq 156131086
BSleazy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 01:49 PM   #12
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by BCyber View Post
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
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 02:11 PM   #13
madtwin
Confirmed User
 
Industry Role:
Join Date: Aug 2009
Posts: 274
I'm using this theme on one site and there's no problem with such thing. Check your plugins.
madtwin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 02:34 PM   #14
BSleazy
Confirmed User
 
Industry Role:
Join Date: Aug 2002
Location: USA
Posts: 6,721
It was the Core Tweaks WordPress Setup/SEO automatic plugin which added a post teaser plugin.
__________________
icq 156131086
BSleazy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 02:35 PM   #15
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
HUGE thanks to BCyber for the help and found the fix..

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

To the rest of you!


__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 03:26 PM   #16
Dankasaur
So Fucking Fossilized
 
Industry Role:
Join Date: Sep 2011
Posts: 1,432
Quote:
Originally Posted by RevSand View Post
HUGE thanks to BCyber for the help and found the fix..

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

To the rest of you!


Into the ground, Rev. Into. The. Fucking. Ground.
Dankasaur is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:10 PM   #17
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by Dankasaur View Post
Into the ground, Rev. Into. The. Fucking. Ground.

Thats how I roll!
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:12 PM   #18
PornDiscounts-V
Confirmed User
 
PornDiscounts-V's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: L.A.
Posts: 5,740
Oh boy...
PornDiscounts-V is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:14 PM   #19
Dankasaur
So Fucking Fossilized
 
Industry Role:
Join Date: Sep 2011
Posts: 1,432
Quote:
Originally Posted by RevSand View Post
Thats how I roll!
Dankasaur is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:18 PM   #20
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by Dankasaur View Post
I feel I should know you from that comment but I am not matching the name..
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:21 PM   #21
Dankasaur
So Fucking Fossilized
 
Industry Role:
Join Date: Sep 2011
Posts: 1,432
Quote:
Originally Posted by RevSand View Post
I feel I should know you from that comment but I am not matching the name..
Added you on Skype.
Dankasaur is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:38 PM   #22
sicone
Retired
 
sicone's Avatar
 
Industry Role:
Join Date: Jan 2004
Location: Sac
Posts: 18,453
Quote:
Originally Posted by Dankasaur View Post
Into the ground, Rev. Into. The. Fucking. Ground.
When you have a good system going why stop it?

__________________
sicone is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:41 PM   #23
RevSand
Confirmed User
 
RevSand's Avatar
 
Industry Role:
Join Date: Oct 2003
Location: Porn Valley
Posts: 8,151
Quote:
Originally Posted by sicone View Post
When you have a good system going why stop it?


Somethings don't change.. Ahh cfus..
__________________


BadBitchesGoodWeed


Hire me for all your video shooting needs!!
Skype = RevSandx
RevSand is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 06-03-2013, 06:54 PM   #24
georgeyw
58008 53773
 
georgeyw's Avatar
 
Industry Role:
Join Date: Jul 2005
Location: Australia
Posts: 9,864
Quote:
Originally Posted by Dankasaur View Post
Into the ground, Rev. Into. The. Fucking. Ground.
__________________
TripleXPrint on Megan Fox
"I would STILL suck her pussy until her face caved in. And then blow her up and do it again!"
georgeyw is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.