Dedicated for AutoBlog Theme visitor (khalifah) that leave comment in my previous post, he (i assume that this person is male) ask me how to make Studiopress Church WordPress Theme into WpRobot Autoblog Theme that using automatic custom fields (see my previous post about custom fields here).
One good news that i want to tell you that this theme CAN be change into Autoblog Theme. The thumbnail still can “forced” to show automatically even your image not stored inside your own host.
Studiopress Church WordPress Theme could show thumbnail even the image were not stored inside its own host
The problem is came from “timthumb.php”. This file used for help us to resizing any image inside our host into a desired size. Once again i mentioned that this file will only process any file that uploaded into our own host. This file cannot help us if the image were stored at other location (for example is amazon image product that stored inside amazon host). A little modification were need to bypass this function, let me describe more clearly here.
The original Code :
<a href=”<?php the_permalink() ?>” rel=”bookmark”><img src=”<?php bloginfo(‘template_directory’); ?>/tools/timthumb.php?src=<?php echo get_post_meta($post->ID, “thumb”, $single = true); ?>&h=<?php echo get_theme_mod(‘featured_top_left_thumb_height’); ?>&w=<?php echo get_theme_mod(‘featured_top_left_thumb_width’); ?>&zc=1″ alt=”<?php the_title(); ?>” /></a>
Change it into this :
<a href=”<?php the_permalink() ?>” rel=”bookmark”><img src=”<?php echo get_post_meta($post->ID, “thumb“, $single = true); ?>” height=”<?php echo get_theme_mod(‘featured_top_left_thumb_height’); ?>” width=”<?php echo get_theme_mod(‘featured_top_left_thumb_width’); ?>” alt=”<?php the_title(); ?>” /></a>
Problem Explanation :
The original code will show any images URL that you specified at Custom Fields area called as “thumb” using timthumb.php aid. For an example, if inside your “thumb” custom fields value filled with this url :
http://ecx.images-amazon.com/images/I/41YmirsqYgL.jpg, then timthumb.php will show this url http://you_web_url/wp-content/themes/church_40/tools/timthumb.php?src=&h=70&w=70&zc=1.
Because timthumb.php could not found any image that stored inside your own directory, then it cannot show the correct image. If you try to see the source code of your site, it will show like this :
<img src=”http://www.bedtimetreasures.com/wp-content/themes/church_40/tools/timthumb.php?src=&h=70&w=70&zc=1″ alt=”Bedtime Music” />
That’s it!. That is the problems. Because the correct source, it should be like this :
<img src=”http://ecx.images-amazon.com/images/I/41YmirsqYgL.jpg” height=”70″ width=”70″alt=”Bedtime Music” />
Solver Explanation :
We must bypass the timthumb.php script. Just try to change it just like the script above. This script { <?php echo get_post_meta($post->ID, “thumb”, $single = true); ?> } will call any value that you fill inside custom fields called as “thumb”. Some modification also needed to specify the size of the image, because the previous code were different with this one. Lets see once again with colorful explanation :
Source :
<img src=“<?php echo get_post_meta($post->ID, “thumb”, $single = true); ?>” height=”<?php echo get_theme_mod(‘featured_top_left_thumb_height’); ?>” width=”<?php echo get_theme_mod(‘featured_top_left_thumb_width’); ?>” alt=”<?php the_title(); ?>” />
Result :
<img src=“http://ecx.images-amazon.com/images/I/41YmirsqYgL.jpg” height=”70″ width=”70″ alt=”Bedtime Music” />
See the same colored script above, then you will understand what i mean. Compare the source code with the result.
Still cannot understood with all of this? arrghh,.. i am not a teacher that could describe with “easy to understood” methods. Please forgive me. That’s all what i know, and that is how i describe it. If you need more complete sample, please download this file below. This file is modification sample for Studiopress Church WordPress theme to make thumbnail shown automatically. Hopely it can help. Did you want to see the result?, see it here
Want to rate this post? use this
Only registered member can view this content. Please Login or Register first.



(6 votes, average: 4.17 out of 5)
hi dude…
THANKS FOR YOUR HELP !!
you are awesome!! you save my life…hoho! i really appreciate for your contributions!! THANKS ! THANKS ! Thanks!
Now i can run my autoblog project happily…i will bookmark your site for my future reference !! great works!
i’m so excited…:-)
[Reply]
cahyo Reply:
April 1st, 2010 at 9:35 am
U’re welcome bro, i make this site to help the others.
Please Spread to all of the world about the existence of this site, at least tell all of your friend about this site. Thanks before.
[Reply]
Hi friend…
i noticed that your bedtimetreasures blog has 4 categories at homepage…
the default is only 3 right…
how to add another category like u did??
category 1 category 2
category 3
category 4 —-> extra category
thanks….:-)
[Reply]
cahyo Reply:
April 5th, 2010 at 8:27 am
Edit the home.php file.
Copy this script FROM
<div id=”homepagebottom”>
<div>
<h3><?php echo cat_id_to_name(get_theme_mod(‘featured_bottom’)); ?></h3>
..
..
till the end of of this script
..
..
rel=”bookmark”><?php echo __(“Read More Posts From “, ‘studiopress’).” “.$cat->name; ?></a></strong>
</div>
</div>
and copied below it. If you still confuse, trial and error will solve it.
[Reply]
hmmm…i think i know about the copy paste step…
but it will only duplicate the same category…
how can i change it category?
i want to have different category for those section…i know we must alter the code right…but i don’t know how…
anyway…thanks for quick reply…:-)
[Reply]
cahyo Reply:
April 5th, 2010 at 10:43 am
the original is this :
<h3><?php echo cat_id_to_name(get_theme_mod(‘featured_bottom’)); ?></h3>
<?php $recent = new WP_Query(“cat=”.get_theme_mod(‘featured_bottom’).”&showposts=”.get_theme_mod(‘featured_bottom_num’)); while($recent->have_posts()) : $recent->the_post();?>
i change to this :
<h3><?php echo cat_id_to_name(4); ?></h3>
<?php $recent = new WP_Query(“cat=4″.”&showposts=”.get_theme_mod(‘featured_bottom_num’)); while($recent->have_posts()) : $recent->the_post();?>
category number 4 is something that i want to show
[Reply]
wow man!
u did a great explaination…so easy to understand…so easy to follow…
amazing contributions !!
now i’m moving to grab autothumbnail for youtube video thumbnail…youtube post is a great attraction for traffics…so i think i need to add video too…
i already know how to get the thumbnail url for youtube video and insert it manually…this is the tutorial:
http://www.squidoo.com/youtubeframe
this guy had done it perfectly (manual)…is there any way we can put it automatically by using wp robot youtube module? i tried to search for the custom value but i think that’s not exist…
so i come here because u seems can solve all my problems…what a unbelievable help!
there are few people around me who are so desperate to pay people to create the autoblog using this theme…someone sell this autoblog+church theme+wp robot = RM100.00 (usd3.3 = 1RM) …i think u also can make money from this because u have skills…
anyway…this will be my last question because i think after this all are complete…:-) and u’re my guru!
[Reply]
cahyo Reply:
April 5th, 2010 at 9:00 pm
see my result here bro :
http://vocaloid.us/
some of the video were automatically also
[Reply]
cahyo Reply:
April 5th, 2010 at 9:03 pm
ups,.. once again here : http://www.precastpicture.com/
[Reply]
cahyo Reply:
April 6th, 2010 at 7:05 pm
How about you bro?
wanna buy a website from me?
or maybe you can send my someone that willing to buy autoblog site from me?
[Reply]
i understand what it means…i need to pull back the original code in order to use the video category on homepage…
so i changed back the “largeimage” to “thumbnail” as original custom value for video is “thumbnail”…
then i put this into videotube module:
add_post_meta($insert, thumbnail, $video[9]);
and DONE !!
man…i learn a lot from u…i learn about customizing this theme and WP Robot…
Thanks for your help!!
I digg, buzz and facebook your entry!
[Reply]
Hello,
can i used studiopress lifestyle child theme for this autoblog wprobot? i’ve a problem when using wprobot+lifestyle because no thumbnail in frontpage automatically.
anyone have suggestion?
[Reply]
cahyo Reply:
April 7th, 2010 at 3:52 pm
lifestyle child theme?
which one is that?
could u give me the url of your web that u’ve mentioned above?,..
[Reply]
zek Reply:
April 9th, 2010 at 7:19 am
Cahyo,
i used lifestyle child version as per here:http://www.studiopress.com/themes/lifestyle
i’ve setup blog at http://www.stopsmokingearly.com . if you want anything maybe log in into wp-admin or theme file, please let me know.
thanks,
zek
[Reply]
cahyo Reply:
April 9th, 2010 at 12:44 pm
please read my other post about add customfields, and how to modify church themes.
Hello cahyo, thank you so much with a great tutorial here. I search all over the net and just your tutorial is complete.
So after I change the above coding on my home.php file, so the blog will work 100% automatically? Without put any custom field manually right?
Please right me if I’m getting wrong. I just bought this great plugin, and still on study on how to use it
Thanks,
Reeze
[Reply]
I have modified the home.php like you told, but it is still cant appear the thumbnail. this is my blog http://mytopgolfguide.com. Please advice
[Reply]
cahyo Reply:
April 8th, 2010 at 7:22 am
Hi reeze,
Thanks to visiting my web.
To solve your problems, maybe you can send me your home.php file?, send it to autoblogtheme[at]gmail.com
i cannot see whats wrong with your site, if i have no home.php file
[Reply]
Reeze Reply:
April 8th, 2010 at 9:22 am
You cool mate! Just sent the email to you
. Thanks!
[Reply]
cahyo Reply:
April 8th, 2010 at 10:18 am
You make a wrong modif bro, your script is like this :
First, at <div id=”homepageleft”>
<a href=”<?php the_permalink() ?>” rel=”bookmark”><img src=”<?php echo get_post_meta($post->ID, “thumb”, $single = true); ?>” height=”<?php echo get_theme_mod(‘featured_top_left_thumb_height’); ?>” width=”<?php echo get_theme_mod(‘featured_top_left_thumb_width’); ?>” alt=”<?php the_title(); ?>” /></a>
Becareful with this ( ‘ ) see the red code. When yo do copy paste from notepad, make sure that this code not change. Please check this character ( ” , ‘ ). Two chars that most give us problems.
I see that you still try to implement the auto thumb at left category area only. After this trick succeed, maybe you will implemented on all script.
So, I just need to change the ” to ‘ then all will be ok? And what about my amazon.php mate?
[Reply]
no bro,..
not like that.
if you see it more carefully,…
it is not ‘ character.
just please to RE-TYPE the ” and ‘ chars
do it just inside script above (that change to auto thumbnail)
[Reply]
Ok cahyo, I just copy and paste the code and replace it with the new one. I identified that my windows has problem, so it has changed several codes. Now I realize. I have modified it. Now, wait for the next post
.
I’m really appreciate your guide and patient
Thanks a lot bro!
[Reply]
cahyo Reply:
April 8th, 2010 at 12:05 pm
if you think that “it’s time to give up”,…
then create new user for me as an administrator,..
i’ll help you.
After the problem solved, you can deleting this new user account
[Reply]
Reeze Reply:
April 8th, 2010 at 12:31 pm
I just sent the details mate
[Reply]
cahyo Reply:
April 8th, 2010 at 3:15 pm
?? details? did u mean is username and pass for your site?
where u send it?
i haven’t receive it yet
Reeze Reply:
April 8th, 2010 at 3:57 pm
I sent it here mate autoblogtheme[@]gmail.com. Please check it on spam folder
. Btw, I’ve re-send it.
cahyo Reply:
April 8th, 2010 at 6:41 pm
done.
see your web now.
remember,… the autothumbnail just work for amazon products.
Thanks a lo bro! I appreciate that much! Dunno what to say
[Reply]
cahyo Reply:
April 8th, 2010 at 11:31 pm
just promote this site to your friend,..
or maybe put this web link at your web will help me much.
[Reply]
Cahyo,
how to do the image on the price image as here: http://www.bedtimetreasures.com/bedroom-accessories/auburn-tigers-sham.html . I mean after the price have button http://irwanbee.googlepages.com/buybutton.png and link to the amazon link?
Any code need to be touch?
[Reply]
cahyo Reply:
April 9th, 2010 at 12:46 pm
there is two way you can use to do this trick. First, you need to edit the amazon module (amazon.php), and the second, you can modify it inside the wp robot option (inside wp robot template post).
[Reply]
zek Reply:
April 9th, 2010 at 5:25 pm
cahyo,
I’m trying place <img src.. into wprobot option. But i dunno how to link the image with amazon affiliate link?
Can you help me where to place the code in amazon.php?
thanks mate
[Reply]
zek Reply:
April 9th, 2010 at 5:43 pm
Got it….
place on wprobot option:
Got it….
place on wprobot option:
[code][/code]
[Reply]
http://wprobot.net/forum/topic.php?id=1054#post-4491
[Reply]
cahyo Reply:
April 9th, 2010 at 7:50 pm
Special post, just made for you bro,..
check it here : http://www.autoblogtheme.info/tips/how-to-add-buy-button-in-wp-robot-amazon-module.html
[Reply]
Hi.. i’m currently using church theme for my 1st autoblog, but why the thumbnail not show on tthe first page when i post the article?
thanks for help….
[Reply]
cahyo Reply:
April 10th, 2010 at 8:03 am
to make thumbnail show automatically, you must edit the theme bro.
you can read my previous post about it
(you can use plugins help, or you can modify the wp robot script)
[Reply]
cahyo, want ask something. Is it auto thumbnail using church theme are only for amazon only?
What if we using wprobot and embed {image} from flickr into article or clickbank or yahoo answer post? Is it possible to be done?
[Reply]
cahyo Reply:
April 12th, 2010 at 8:21 am
if you have image from other web,.. you can still show it at home.php.
see my previous post about plugin call : Get The Image.
[Reply]
i use church theme also…
this theme can show thumbnail from many sources, not only from amazon…
but if u’re using this theme with WP Robot, u need to edit home.php and your specific WP Robot module to suit your choice…
for article post, u need to mix the module with flickr….just add {image} on your article module in WP Robot option…then edit your article module.php file…
[Reply]
dowe Reply:
April 11th, 2010 at 4:12 am
can you help us how to make autothumbnail with this theme for autoblog…??
thanks…
[Reply]
cahyo Reply:
April 11th, 2010 at 5:41 pm
thanks 4 the info bro.
bravo autoblogs!!
[Reply]
zek Reply:
April 12th, 2010 at 8:05 am
Khalifah, can you help me?
[Reply]
is that autothumbnail also work for article post? or it just for amazon module?
[Reply]
cahyo Reply:
April 12th, 2010 at 8:23 am
for the article post,..
most article have no image,.. that is the problems.
but if you want to make any image appear as thumbnail,..
see the article about : “get the image” plugins
[Reply]
btw, how to add youtube on right sidebar like “Best Bedtime Story” at
http://www.bedtimetreasures.com/
thanks again…
[Reply]
cahyo Reply:
April 11th, 2010 at 5:42 pm
using plugins help called : tubepress
[Reply]
aaarrgh….I’ve tried many times replace “home.php” but the thumbnail still not show…
[Reply]
cahyo Reply:
April 11th, 2010 at 5:38 pm
send me your home.php file bro,..
maybe i can help
[Reply]
dowe Reply:
April 12th, 2010 at 4:31 am
ok, I sent the file to autoblogtheme[@]gmail.com. cek your email bro… btw is it possible to show the thumbnail for article module?
THANKS FOR YOUR HELP
[Reply]
cahyo,
i cant do for the lifstyle 4.0 or lifestyle child version for amazon thumbnail. help me please
[Reply]
cahyo Reply:
April 12th, 2010 at 8:09 am
which one bro?
what is the URL,.
and maybe you can send me the home.php files
[Reply]
zek Reply:
April 12th, 2010 at 10:30 am
bro,
i”ve edit the amazon.php but no luck. I’ve sent email to you bro. Thanks
[Reply]
cahyo Reply:
April 12th, 2010 at 1:06 pm
done.
zek Reply:
April 12th, 2010 at 2:27 pm
What you adjust cahyo, any code i left?
cahyo Reply:
April 12th, 2010 at 3:47 pm
in my sample,.. i use “largeimage” as customfields key. Just as i said,.. this is just an example,..
so,.. i must change it into “thumb” (as the theme needs)
that’s it.
zek Reply:
April 12th, 2010 at 5:37 pm
ok. got it as yoursblog http://www.bedtimetreasures.com/. This is mine: http://amazon.tambun.info/
I’m using thumbnail as replace of largeimage. thanks!
[Reply]
cahyo Reply:
April 12th, 2010 at 5:40 pm
the thumbnail already shown bro,..
hi cahyo… the thumbnail still not show…
please advice…
thank you…
[Reply]
cahyo Reply:
April 12th, 2010 at 3:48 pm
give me your login bro,..
create me a new user,..
send mail to me (autoblogtheme[at]gmail.com)
[Reply]
Hi everyone…
Week ago, I also have problem with showing thumbnail on post when using church theme…and i found cahyo who did a great job to help me…so now i’m going to repay his help….
[[ HOW TO SHOW THUMBNAIL AND AUTOMATICALLY ADD CUSTOM FIELD USING ARTICLE MODULE ]]
***Tested with studiopress lifestyle and church theme…:-)
1) We must add image into article…use mix function to add flickr image into article module like this:
{image}
{article}
{authorbox}
2) Then we want to add custom field value automatically into post after autopost generated by article module…we need to modify modulesarticles.php…find this code:
$insert = ma_insertpost($post,$title,$cat);
if ($insert == false) {return false;} else {return true;} //ma_post($which);
Replace with this:
$insert = ma_insertpost($post,$title,$cat);
if ($insert == false) {return false;} else {
// Custom Field
// add_post_meta($insert, ‘custom_field_name’, $img[6]);
add_post_meta($insert, image, $img[6]);
return true;} //ma_post($which);
3) Ok now we understand that the custom field name is image ….so we need to change certain code on home.php file…
4) Go to edit theme > home.php ….find this code:
ID, “thumb”, true) ): ?>
<a href="” rel=”bookmark”><img class="thumb" src="/tools/timthumb.php?src=ID, “thumb”, $single = true); ?>&h=&w=&zc=1″ alt=”" />
Change all the code with this:
ID, “image”, true) ): ?>
<a href="” rel=”bookmark”>
<img class="thumb" src="ID, “image”, $single = true); ?>” height=”" width=”" alt=”" />
5) Now u can see that the custom field we use is “image” and not “thumb” anymore…for youtube video, the custom field to show thumbnail is “thumbnail”…for amazon, the custom field to show thumbnail image is “largeimage”…
6) This modify only tested on studiopress church and lifestyle…different theme maybe required different code…
@ CAYHO ,
since u’re good in coding, i think u can check my code and twist it if u think u can do something more easier…and i think u can use this as your new post…:-)
[Reply]
cahyo Reply:
April 12th, 2010 at 6:20 pm
see this article bro,..
it will be lot easier
http://www.autoblogtheme.info/themes/make-revolution-lifestyle-theme-show-thumbnail-automatically-with-get-the-image-plugins.html
[Reply]
Sorry!! The home.php code (STEP 4) on my previous post is missing…
Step 4 again:
Find this code on home.php (theme editor) :
*** I cut the ID, “thumb”, true) ): ?>
<a href="” rel=”bookmark”><img class="thumb" src="/tools/timthumb.php?src=ID, “thumb”, $single = true); ?>&h=&w=&zc=1″ alt=”" />
Replace with this (put ID, “image”, true) ): ?>
<a href="” rel=”bookmark”>
<img class="thumb" src="ID, “image”, $single = true); ?>” height=”" width=”" alt=”" />
If there is another code error, i’ll upload the home.php file…let see…
[Reply]
Yeah another code error on step 4…so just download this home.phpn file:
home.php on this file is specific for article module + flickr only:
http://www.mediafire.com/?aitydjn0mjz
[Reply]
@Cahyo
i sent you the login info, check your email…
Thanks again… bro…
[Reply]
dowe Reply:
April 14th, 2010 at 10:21 am
Done..!!! i forgot to add “thumb” new custom field, btw thanks Cahyo…You’re ROCK!!
[Reply]
cahyo Reply:
April 14th, 2010 at 11:25 am
so sory…
i can’t see your site yet.
but i am happy now, coz your web has works perfectly, and you’ve already found the problem and solve it.
[Reply]
hi cahyo…
i check your bedtimetresure website…looks like u use cloaking function…
i use it too…but the different is your link is open on new window…while my link is open on the same window…
i use no external link plugin before…and all my link will open in new window…but after cloaking it open on the same window again…
i just want to know if i can edit some code in amazon module to make it open on new window…or u use another plugin?
my 2nd question is…
i want to make my article post appear in justify alignment…
so it look more professional and tidy…
how can do that? i try to search on their support forum but nobody ever try to do this….maybe i can put some code in options but what code is it…i guess u’re smart enough to dig about this…
u’re done great job so far…good job!
[Reply]
cahyo Reply:
April 15th, 2010 at 7:35 pm
First Answer, please check this post : http://www.autoblogtheme.info/tips/how-to-add-buy-button-in-wp-robot-amazon-module.html
there is something about rel=”nofollow” target=”_blank”
Second Answer : I don’t know what you mean here. Maybe you can show me the example
[Reply]
Silent Fox Reply:
April 15th, 2010 at 8:20 pm
lol! i already follow that post before…but i missed to write the target blank part…i must be careful next time…huhu!
wait…i forgot to tell u that i use 500 description words…means the “more” word with linking to amazon will exist…can u suggest me how to make that “more” word open in new window…if it possible…if not i just use complete description as my choice…but not so nice because too long…
2nd question is like this:
Default article mode:
—————————————————————————————
1st sentence is aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
2nd sentence is bbbbbbbbbbbbbbbbbbbbbbbbbb
3rd sentence is cccccccccccccccccccccccccccccccccccccccccccc
4th sentence is ddddddddddddddddddddddddddddc
**you can see the right side is not same (alignment left)
—————————————————————————————-
what i want to show is on justify / full alignment like this:
—————————————————————————————-
1st sentence is aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
2nd .sentence is bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
3rd .sentence is cccccccccccccccccccccccccccccccccccccc
4th sentence is ddddddddddddddddddddddddddddddddd
—————————————————————————————–
it is call alignment=justify i think…just don’t know where to put in article module…or how to put in article option…
thanks…
[Reply]
Silent Fox Reply:
April 15th, 2010 at 8:54 pm
for my 2nd question, i already solve the problem…it’s not about WP Robot module article…it depend on the theme…i check my theme didn’t have justify alignment…so i edit #content on style.css …i put this word:
text-align:justify;
then all the post will show in this style…
about my “more” link on the description show in new window is still not solve…ok.
cahyo Reply:
April 16th, 2010 at 8:29 am
open your amazon.php file (inside moduls folder)
find this script :
. $url . ‘” rel=”nofollow”>More >>‘;
then add the target=”_blank”
it will be something like this :
. $url . ‘” rel=”nofollow” target=”_blank”>More >>‘;
Thanks! work great!
[Reply]
Nice one,
Question – how did you do the “search terms for this post” ? what is that exactly ?
H
[Reply]
cahyo Reply:
April 26th, 2010 at 9:28 am
that is search terms tag plugins.
you can read my post in this web.
usage :
to capture any keyword that make your visitor come to your web.
ex : you came to this post by search “church theme” in google. Then it will add keyword “church theme” inside this post.
it will enhance for SEO terms,..
[Reply]
hi,
i have the charred theme and when i install it my blog wont work i.e the categories wont shoe any posts, i just get a plain white page..There is an error displayed.. Anyone any ideas on why this might be????
[Reply]
cahyo Reply:
May 16th, 2010 at 6:11 am
Hi Colm,
so sorry that i cannot help if i am not try it by my self. if you didn’t mind, maybe you can show me your URL site that using this theme, and maybe you can send me the copy of that theme. I hope, i can help
[Reply]
Very good post, bro… you are very dedicated to autoblog themes, and love to help people. salute!
salam kenal mas cahyo, newbie numpang belajar …
[Reply]
cahyo Reply:
May 21st, 2010 at 6:01 pm
salam kenal juga,..
kalau begitu,.. selamat belajar….
jangan sungkan2 tuk bertanya
[Reply]
fearvector Reply:
May 24th, 2010 at 2:07 pm
hehe, iya mas. ni sy lg belajar nerapin church di autoblog. belajar dari guru autoblogtheme internasional –> mas cahyo. hehehe…
*semangat!*
[Reply]
[...] Exchange Studiopress Place of worship WordPress Theme in&#… [...]
[...] post about how to show thumbnail automatically, you can use auto thumb plugins or even using auto custom fields. In this case, lets learn a new trick to make youtube [...]
[...] error : Please specify a query! (9003) in ebay module PREVIOUS ARTICLE NEXT [...]
Mas Cahyo, i already copy ini home.php, but not work. halah susah amat nulis ingris
Saya ubah theme church biar bisa auto thumb, saya copy dari kode diatas ke home php, tapi masih tdk bisa tampil,adakah perubahan lain? thanks
[Reply]
cahyo Reply:
August 5th, 2010 at 2:46 am
hati2 bung,. perhatikan penulisan tanda petik 2 ( ” )
lebih baik untuk tanda ini,. anda tulis ulang,..
soalnya kadang hasil yg anda copy itu bukan petk dua
[Reply]
oo orang indo toh
salam kenal mas 
kok di laptop-mart.info
aku agak bingung nih
gk bisa bisa keluar thumb yang dari amazon-nya yah ?
[Reply]
cahyo Reply:
August 5th, 2010 at 2:46 am
lha???
itu sudah keluar???
[Reply]
I have been following your post of customizing the church theme and have succeeded in adding extra category display in the home page, however I am stuck where it says “Read more Posts from _____________” after 3 articles. How do I display the respective category there?
Will you be able to help me?
Rgds
[Reply]
cahyo Reply:
September 15th, 2010 at 4:39 pm
could you tell me your url?
and maybe you can give me access to that site.
i’ll try to help
[Reply]
mas cahyo, lam kenal ya. Ilmunya sangat bermanfaat bagi saya. Mohon bantuannya saya sudh copy script di atas ke home.php. Thumbnail image nya sudah keluar tapi kenapa descriptionnya berada di bawah image ya? Kan seharusnya di samping image. Tampilannya dapat dilihat di http://antiacnepro.co.cc
Thanks
Risky
[Reply]
cahyo Reply:
October 18th, 2010 at 6:00 pm
harusnya sih gak gitu,..
tapi kalo terpaksa,. bisa ditambah script ini
<div class = “alignleft”> {ini lokasi script tuk nampilkan thumbnail} </div>
[Reply]
wah sangat membantu bro cahyo…anak negri cerdas2 ternyata…
btw, aq yg masih blo’on nih mau nanya…. ehm…
ada tutorial penjelasan dalam bahasa indonesia gak pren… he.he..he..
kalo ada aq kasih urlnya dong[kirim ke ngambey at gmail.com ya bos.. ]…ntar aq kabarin ke temen2 forum deh .. soalnya penjelasan auto tumbnail ini agan ini sangat bagus.. ekselen lagi kalo ada bhs indonesia nya.. ha.ha.ha…
aq tunggu info dlm bhs indonesianya gan..
terima kasih..
salam..
[Reply]
cahyo Reply:
November 16th, 2010 at 5:11 pm
wah kang,..
kalo mau versi indonesianya,.. kan tinggal di klik aja gambar bendera kita.
otomatis di translate kok….
[Reply]
Hi Cahyo,
I just found your blog just now when I was searching for “wp robot customization”..I’m glad I did, your site is really informative.
I’m wondering if I can maybe pay for your services to make Amazon/ CJ / Linkshare / Shareasale / Avantlink modules work with my Templatic’s ecommerce theme/?
Thanks,
Marion
[Reply]
Hi anyone?
Do you know how to change my own logo at wp-admin/ page when you login?
Thanks
[Reply]
hadnt even thought of changing this theme to an autoblog. Did purchase all the studiopress themes but this will be a good thing to try. Even have wp robot from a while ago. thanks much!
[Reply]
cahyo Reply:
June 14th, 2011 at 9:03 am
as long as your theme is the classic theme, and not using Genesis frame works, it still could easily edited.
[Reply]
It’s great that khalifah ask this question to you. This church WordPress theme is my main site theme for half a year but I want a change with its look. What I meant is I want this theme to have the autoblog theme features. And yeah you answered our questions very well instructed. But one thing, where .php do I have to copy this codes? Sorry to ask but I am just a wordpress newbie user.
[Reply]
cahyo Reply:
June 15th, 2011 at 7:57 pm
that is sample for the home.php
see it, and modify
[Reply]