How To Replicate Techchuck AutoBlog

Oh, anyway where your site? may be i can help? a little :rolleyes:
 
Last edited:
i fixed it :)

i missed the loop part

Code:
<!-- Begin Tag code Mod so Twitter will pull related tweets -->
                                <?php $posttags = get_the_tags(); 
                                   $count=0; if ($posttags) 
                                   { foreach($posttags as $tag) 
                                   { $count++; if (1 == $count) 
                                   { $tagname =  $tag->name . ' '; } } } ?>
                                <!-- End Tag code mod -->

i'll share my URL after i'm ready...it will take some time but i wanna be proud of my first legit autoblog

i build about 15 but they suck at pulling trafic form anywhere so i wanna do a change in everything i do.

I'll keep you updated thx for the help
 
I cant get kish twitter working right

If I have tags with spaces in my post. no tweets show.
Multiple tags work, but only if the tags have no spaces in them.

Also, if only 1 tag is present. Then it works. Even if it has spaces in it.. but if I ad another tag, even something like "dog" then no tweets show.

has anyone else had this problem?
 
Hi guys,
this is a great topic. Thanks to OP and to all contributors!
I'm inpired to make something similair.

How many traffic you able to get with your autoblogs? And how you promote them?
 
ok guys the only fix i could come up with to solve my problem was to change the 3 to a 1 in kish functions.php so it only trys to grab the 1st tag. but with the auto tag generators I have tried the tweets are not always very relevent to the post topic..

Code:
function kish_twitter_get_tags() {
 $counter = 1;
 $posttags = get_the_tags();
 if ($posttags) {
  foreach($posttags as $tag) {
   if($counter<=3) {
    $thistag.= $tag->name . ' '; 
   }
   $counter++;

is there a way to randomly rotate the order my tags show in wordpress? even if i set tags by hand its a pain to get the right one used as for the related video/twitters because they are displayed alphabetically and its always grabbing the 1st tag
 
Last edited:
ok guys the only fix i could come up with to solve my problem was to change the 3 to a 1 in kish functions.php so it only trys to grab the 1st tag. but with the auto tag generators I have tried the tweets are not always very relevent to the post topic..

Code:
function kish_twitter_get_tags() {
 $counter = 1;
 $posttags = get_the_tags();
 if ($posttags) {
  foreach($posttags as $tag) {
   if($counter<=3) {
    $thistag.= $tag->name . ' '; 
   }
   $counter++;
is there a way to randomly rotate the order my tags show in wordpress? even if i set tags by hand its a pain to get the right one used as for the related video/twitters because they are displayed alphabetically and its always grabbing the 1st tag

I'M also looking into an answer to this as i have the same issue. It grabs 1 tag and runs along but this is not relevant most of the times.

Btw what code you found to do multiple tags?
 
I have no real solution yet.. I was hoping someone who got it working could help me/us out here. Im glad im not the only one having this problem.
 
Would you qualify mine as a autotblog:
http://www.media-spin.blogspot.com/
James
 
Can anyone update us on the profit the autoblog is making?

Personally I have created several free blooger type of autoblogs, the result is not fantastic with around $30-$50/mth from ad$en$e.
 
Rendias:
how you update the blogger on autopilot?
I tried with e-mail posting, but you can post in this way only plain text. To post html code is not possible.
 
Hi guys, I'm currently working on my autoblog atm I have tryed really hard to make it looking good, I will post my site when its finished to show you all how it looks and help anyone out...

Currently I'm stuck on a few easy things as seen on techchuck...

1. Popular topics (top sitebar)
2. Topics (replaced tagcloud) on sidebar with colours.
3. Recent comments (side bar)

If anyone knows how to replicate those that would be much appricated...
 
Funkrust,

Most of what you are looking for is done with plugin widgets. Appearance>Widgets

1. Popular Topics - WP PostView
2. Colored TagCloud - SimpleTags (look in the tagcloud section)
3. Recent Comments - I think this one is default with wordpress

Just drag the widgets into the sidebar and you can rearrange them anyway you want.

Hi guys, I'm currently working on my autoblog atm I have tryed really hard to make it looking good, I will post my site when its finished to show you all how it looks and help anyone out...

Currently I'm stuck on a few easy things as seen on techchuck...

1. Popular topics (top sitebar)
2. Topics (replaced tagcloud) on sidebar with colours.
3. Recent comments (side bar)

If anyone knows how to replicate those that would be much appricated...
 
I have tried the WP PostView plugin and I get this error when I try to activate it.

Fatal error: Class 'WP_Widget' not found in /home/warcraft/public_html/wp-content/plugins/wp-postviews/wp-postviews.php on line 658
 
Further to this, is anyone else having any problems with Kish's Twitter plugin and any WP-to-Twitter auto poster?

When ever I have the both activated my sidebar just disappears!
 
Hey guys, heres mine
Code:
warcraft-cheats.c0m
its already a PR2
 
Back
Top