Arie Putranto
Forum Replies Created
-
Forum: Your WordPress
In reply to: Critique me – new photograhy blogGreat! Well done!
It could have been better if you show only your picture on your archive/index page. The lest text, the better. Make people click your picture to get further information and provide the link to buy the picture on your single post page (permalink).
That way, poeple will focus on browsing your picture at the first visit, not reading the content.
🙂
Forum: Requests and Feedback
In reply to: No visitors or comments, whats wrong?Be patient, it takes a while for someone eventually visit your blog and even longer for google to start indexing your site. Try promoting it via technorati, blogcatalog or many other social networking site to get more visitor.
However, a good content should be get index faster in google and someone will evidently found your blog on search engine. You don’t have to do any SEO if your site is providing good content, however it quite helpful.
Just keep writing … the more you write, the better the chance to be found.
Forum: Fixing WordPress
In reply to: putting categories in two columnsits because the ‘li’ is float
try to wrap the list inside a ‘div’ and set the ‘clear’ property of the div to ‘both’Forum: Fixing WordPress
In reply to: Pages Titles and Content HeadersThen just delete the tag which display the title on your template if you don’t want to display the title in your content
Forum: Themes and Templates
In reply to: Custom ThemeUsing a framework can make you build your theme more easily regarding to it’s custom function which you can’t found in standard installation.
But, instead of learning wordpress, you have to learn on how to use the framework. That means you have to learn twice
🙂
Forum: Fixing WordPress
In reply to: Pages Titles and Content HeadersUse s custom field and add a few line on your template to call the information you’ve added ..
Read : http://codex.wordpress.org/Function_Reference/get_post_meta
Forum: Fixing WordPress
In reply to: putting categories in two columns… typo there, no wonder it’s not working
.catlist li { ...should be
.cat-list li { ...Typo here
$children = wp_list_pages(title_li=&child_of='.$post->ID.'&echo=0');should be
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');Not the ‘ ( single quote )
Forum: Your WordPress
In reply to: WordPress Theme: Shine!You can make it better by making the font bigger.
It’s hurting these old eyes … 🙂Forum: Themes and Templates
In reply to: Changing Seach Button to an Image in Default ThemeEdit your stylesheet, use the code below to style the button
form#searchform input#searchsubmit {}for an example
form#searchform input#searchsubmit { background: transparent url(images/submit.png) top left no-repeat; width: 50px; padding-left: 5px; display:block; overflow: hidden; /* Hack for IE */ text-indent:-9999px; font-size: 0px; line-height: 0px; }Forum: Fixing WordPress
In reply to: Cant get description changed…Best way … request google to delete your index from the webmaster tools.
You may as well change the crawl rate.IMHO, that’s nothing wrong with your blog.
Have you tried to contact the theme developer?
Forum: Fixing WordPress
In reply to: Multiple blogs but one page VS category?I suggest you to use permalink to see how page and post is different
Go to “Setting” -> “Permalink”, and choose from the options there.To use query post, you have to make a custom template page and upload them into your theme directory and use it by selecting it on the right section of your panel.
Forum: Your WordPress
In reply to: Need Feedback on Custom ThemeHi all, thx for the response 🙂
I’m still working on it and debugging everything. I’ll let you know if it’s readyNice to see you, glad to know that I’m welcome in the community .. 🙂
Forum: Fixing WordPress
In reply to: Multiple blogs but one page VS category?If you want to separate your blog into two big categories, say it ‘Blog’ and ‘Shop’ and don’t want to display every post on ‘Shop’ category on the blog page, then you should create templates for that where each templates will query post from specific category.
http://codex.wordpress.org/Template_Tags/query_posts
But the best way on yourproblem is creating a page to display your ‘Shop’. What do you mean by “When i create a new “PAGE” its not possible to post entries for that specific “shop” page” … ?
You can post entries on PAGE.