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)
-   -   Wordpress TGP Plugin ore TGP Theme (https://gfy.com/showthread.php?t=1067789)

C4W 05-11-2012 08:39 AM

Wordpress TGP Plugin ore TGP Theme
 
Hi,

If you know a good TGP plugin ore theme for wordpress please post it here.

It does not have to be free. Have you made one post it.

Thanks

Horny Dude 05-11-2012 08:49 AM

I have one that I created and it is free. I also have a mobile add on for only $15 that makes it smart phone friendly. All the details are in my siggy!

C4W 05-11-2012 10:11 AM

i get a 404 when i try to go to the dl page.

How does the import works?

just a punk 05-11-2012 10:16 AM

The CyberSEO plugin can import FHG galleries from RSS feeds. Contact me for more info and examples.

Horny Dude 05-11-2012 10:55 AM

http://tgpwp.com/download-tgpwp-v2-5/

Not sure why you got a 404 page. Above is the download link for the free theme. I have not tested, but I believe the CyberSEO plugin does work with my theme. Haven't had the chance to test it.

sleazydoesit 05-11-2012 02:22 PM

Does it work with wordpress network? If so I'll have to test this on FreePornBlogger...

anexsia 05-11-2012 03:08 PM

I highly recommend the Wordpress TGP theme from http://www.adultsiteskins.com/ I'm using it on an erotica tgp and it works fantastic.

geedub 05-11-2012 04:07 PM

Why not use TGP software for a TGP? TGPx is 25 bucks from jmbsoft now a days.

barcodes 05-11-2012 04:16 PM

Quote:

Originally Posted by anexsia (Post 18942388)
I highly recommend the Wordpress TGP theme from http://www.adultsiteskins.com/ I'm using it on an erotica tgp and it works fantastic.

This is prob a stupid question but how do you add the banners on the right sidebar?
Anyone know? Prob right in my face.

tonyparra 05-11-2012 05:57 PM

Quote:

Originally Posted by barcodes (Post 18942468)
This is prob a stupid question but how do you add the banners on the right sidebar?
Anyone know? Prob right in my face.

edit the banners.php file if you dont like that just go to sidebar.php and remove the reference to banner.php file to only use the widgets in the admin panel

tonyparra 05-11-2012 05:59 PM

Quote:

Originally Posted by geedub (Post 18942457)
Why not use TGP software for a TGP? TGPx is 25 bucks from jmbsoft now a days.

wordpress is free

geedub 05-11-2012 06:11 PM

Quote:

Originally Posted by tonyparra (Post 18942582)
wordpress is free

What makes free better?

Horny Dude 05-11-2012 07:23 PM

Quote:

Originally Posted by anexsia (Post 18942388)
I highly recommend the Wordpress TGP theme from http://www.adultsiteskins.com/ I'm using it on an erotica tgp and it works fantastic.

Yeah, that is a good looking theme, but they need more features. Adding advertising through the admin panel would be a big help. I might have to add that in there if I get the chance.

garce 05-11-2012 09:00 PM

Quote:

Originally Posted by geedub (Post 18942593)
What makes free better?

Nothing. Wordpress is trying to be everything for everybody - but it does nothing very well. Wordpress USED to be a good blogging platform... but, meh. Wordpress is yet another worthless piece of crap that only exists to generate revenue for its creators.

barcodes 05-12-2012 12:15 AM

Quote:

Originally Posted by tonyparra (Post 18942579)
edit the banners.php file if you dont like that just go to sidebar.php and remove the reference to banner.php file to only use the widgets in the admin panel

Thanks Tony. I just d/led one last night due to your post about it and I haven't been able to look at the files yet. Knew it was prob something simple but I was assuming you could do it from the admin and there wasn't anything about it on their page to my knowledge.

Thanks again.

tonyparra 05-12-2012 12:24 AM

Quote:

Originally Posted by geedub (Post 18942593)
What makes free better?

The best things in life are free i.e. pornhub, x hamster :upsidedow

just a punk 05-12-2012 12:45 AM

WordPress is a highly extendable CMS. It has countless number of various themes and plugins which can give your site the exact look and functionality you want. There is no narrow-specialized script which can do even a 1% of that.

just a punk 05-12-2012 07:24 AM

Here is the instruction on how to run an autoupdating WordPress TGP site using free Adult WordPress Theme and CyberSEO.

1) Update your copy of the CyberSEO plugin to version 6.12 or higher (VERY IMPORTANT!).

2) Syndicate a TGP feed (e.g.: http://nats.ddfcash.com/ddfrss_22_1_...17_100_c_p.rss).

3) Find the "PHP code <?php .. ?>" box and paste there the following code:
Code:

if (!cseo_post_exists($post)) {
        $max_images = 12;
        $thumb_width = 180;
        $thumb_height = 240;
        $link = "http://www.google.com/";
        if (function_exists('add_image_size')) {
                add_image_size('thumbnail', $thumb_width, $thumb_height, true);
        }
        $gallery = cseo_file_get_contents($post['link']);
        preg_match_all('/<a href="(.*?)".*?><img.*?src=".*?".*?>/is', html_entity_decode($gallery), $matches);
        $cnt = 0;
        foreach ($matches[1] as $line) {
                if (stripos($line, ".jpg") !== false) {
                        if (stripos($line, "http://") !== false) {
                                $image = $line;
                        } elseif ($line[0] == "/") {
                                $image = "http://" . parse_url($post['link'], PHP_URL_HOST) . $line;
                        } else {
                                $image = str_replace(basename($post['link']), "", $post['link']) . $line;
                        }
                        cseo_add_image_to_library($image, $post['post_title']);
                        if (++$cnt == min(count($matches[1]), $max_images)) {
                                break;
                        }
                }
        }
        $post['custom_fields']['thumb'] = $image;
        $post['post_excerpt'] .= '<p>[gallery columns="4"]</p>';
        $post['post_excerpt'] .= "<h2 align=\"center\"><a href=\"" . $link . "\" target=\"_blank\">Click Here For More!</a></h2>\n";
} else {
        $post = false;
}

4) Make sure to alter the following variable values:
$max_images - the maximum gallery image count.
$thumb_width - gallery thumbnail width;
$thumb_height - gallery thumbnail height;
$link - your affiliate link to a paysite.

5) Save setting and enjoy your auto-updating TGP blog.

:pimp

just a punk 05-12-2012 08:40 AM

Almost forgot one little thing. The "Post thumbnail" option must be switched to "Generate from the first post image".

Horny Dude 05-12-2012 10:15 AM

Quote:

Originally Posted by CyberSEO (Post 18943262)
Almost forgot one little thing. The "Post thumbnail" option must be switched to "Generate from the first post image".

Hey CyberSEO what is your email or ICQ, I want to ask you something.

just a punk 05-12-2012 10:18 AM

Quote:

Originally Posted by Horny Dude (Post 18943352)
Hey CyberSEO what is your email or ICQ, I want to ask you something.

http://www.cyberseo.net/#contacts

just a punk 05-19-2012 01:56 AM

The TGP parsing code above has an issue with the thumbnail count. Here is the fixed version:

Code:

if (!cseo_post_exists($post)) {
    $max_images = 20;
    $thumb_width = 180;
    $thumb_height = 240;
    $link = "http://www.google.com/";
    add_image_size('thumbnail', $thumb_width, $thumb_height, true);
    $gallery = cseo_file_get_contents($post['link']);
    preg_match_all('/<a.+?href=[\s]?["|\']([\w%-\.\/:\?&=]+\.(jpg|jpeg|png|gif))["|\'].*?>.*?<img.*?src.*?>/is', html_entity_decode($gallery), $matches);
    for ($i = 0; $i < min(((int) (count($matches[1]) / 4)) * 4, $max_images); $i++) {
        if (stripos($matches[1][$i], ".jpg") !== false) {
            if (stripos($matches[1][$i], "http://") !== false) {
                $image = $matches[1][$i];
            } elseif (substr($matches[1][$i], 0, 1) == "/") {
                $image = "http://" . parse_url($post['link'], PHP_URL_HOST) . $matches[1][$i];
            } else {
                $image = str_replace(basename($post['link']), "", $post['link']) . $matches[1][$i];
            }
            cseo_add_image_to_library($image, $post['post_title']);
        }
    }
    $post['post_excerpt'] = strip_tags($post['post_excerpt']) . '<p>[gallery columns="4"]</p>';
    $post['post_excerpt'] .= "<h2 align=\"center\"><a href=\"" . $link . "\" target=\"_blank\">Click Here For More!</a></h2>\n";
} else {
    $post = false;
}


acrylix 05-19-2012 03:49 AM

Quote:

Originally Posted by CyberSEO (Post 18954377)
The TGP parsing code above has an issue with the thumbnail count. Here is the fixed version:

Working great. Another awesome use for CyberSEO. :thumbsup

Gator 02-08-2013 09:47 PM

Quote:

Originally Posted by anexsia (Post 18942388)
I highly recommend the Wordpress TGP theme from http://www.adultsiteskins.com/ I'm using it on an erotica tgp and it works fantastic.

I am giving this one a try. I am trying to add menus and my WordPress says my theme only supports one menu, yet the demo shows multiple menus. I am using WordPress 3.5.1.

Does anyone have any suggestions so I can have more than one menu?

Before someone responds with a dumbass response, yes I did try contacting the maker. Maybe I am impatient, but it has been a few days and I haven't heard anything back.

Thanks in advance.

just a punk 05-26-2013 03:46 AM

Quote:

Originally Posted by Gator (Post 19471815)
I am trying to add menus and my WordPress says my theme only supports one menu, yet the demo shows multiple menus. I am using WordPress 3.5.1.

Does anyone have any suggestions so I can have more than one menu?

The demos also contain just one singe menu with multiple sub-menus (can be added via "Custom Links" box).

Best-In-BC 05-26-2013 06:43 AM

I was always told WP burns to much resources for real traffic.

just a punk 05-26-2013 11:52 PM

Quote:

Originally Posted by Best-In-BC (Post 19641195)
I was always told WP burns to much resources for real traffic.

Don't see a problem with that. Just install any caching plugin, or even this one: http://wordpress.org/plugins/really-static/


All times are GMT -7. The time now is 02:24 AM.

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