Agus Suhanto
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to contribute language translation?Thanks for the response..
I’ll try to send the email to them…
Forum: Themes and Templates
In reply to: How to contribute language translation?Driftless1,
Thanks for your response.
I already have updated the id_ID language in my WordPress installation. But I worry if someday there’s a new version of Thematic, the automatic update process will overwrite my custom language translation. So, I decided to contribute the translation I’ve made to Thematic project.
How can I do that then? Should I send the .po and .mo files to someone? Or should I checkout from a subversion repository?
Thanks for help…
Forum: Fixing WordPress
In reply to: Footer Widget QuestionOf course. Footer widget in TwentyTen is surrounded by a div which id = footer.
Sidebar title is a <h3> element. So, you can specifically assign CSS attribute for them. For example:
#footer h3 { color: red; }
Forum: Fixing WordPress
In reply to: True Post Count / Date / Thumbnails.If you want to play a little bit with the WordPress codex, here is my answer.
Post count can be obtained from
$wp_query->found_posts
global variable.Post thumbnails can be generated using
the_post_thumbnail()
function. I’m using to generate thumbnail in other context here: https://suhanto.net/yarpp-template-post-thumbnails/.To place the + sign and number of comment, you can edit the
index.php
template in your theme. You also can also check the following link to play around with comments count: https://code.google.com/p/wp-basis-theme/.Forum: Fixing WordPress
In reply to: remove vertical bar to left of site titleOf course yes. Try to change it with other character and see the effect.
Forum: Fixing WordPress
In reply to: Links not working within postsYou WordPress installation doesn’t have
go.php
or URL redirection that understands how to redirectgo.php
in the .htaccess file.Forum: Fixing WordPress
In reply to: Text widgets suddenly disappeared.Try to delete the new added widget. The problem can be caused by improper HTML tags placement or order in text widget. For example if there is open tag without the closing one, it can affect the layout of whole page.
Forum: Fixing WordPress
In reply to: E-MailPassword is stored as hashed value. It can only be compared, not retrieved.
Try this first: https://codex.www.ads-software.com/Resetting_Your_Password.
Forum: Fixing WordPress
In reply to: Registration PageTry to deactivate the
counterizeii
plugin and see the effect. If the plugin is causing this problem, then notify the author or you have to search for other similar plugin.Forum: Fixing WordPress
In reply to: Text expanding beyond themeAdd
width: 100%
topost_content
CSS class definition:#post_content { float:left; line-height:1.6em; padding:27px; text-align:left; width:100%; }
Forum: Fixing WordPress
In reply to: remove vertical bar to left of site titleTry to look
header.php
. I found the following code snippet in my GrungeMag theme:<title> <?php if (is_home()) : ?> <?php bloginfo('name'); ?> - <?php bloginfo('description'); ?> <?php else : ?> <?php wp_title('', 'false'); ?> - <?php bloginfo('name'); ?> <?php endif; ?> </title>
It should print – (dash) character instead of |. But maybe we deal with different Grunge theme here.
Forum: Fixing WordPress
In reply to: permalink structures and crashesLacking permission to edit the .htaccess file, find the solution here: https://codex.www.ads-software.com/Using_Permalinks
Forum: Fixing WordPress
In reply to: smilesyou can find the doco here: https://codex.www.ads-software.com/Using_Themes
Forum: Fixing WordPress
In reply to: remove vertical bar to left of site titleIf you couldn’t find it in index.php, try to look for it in functions.php.
Forum: Fixing WordPress
In reply to: Problem loading JPG for header in Twenty Ten themeI think it is file permission problem. Check whether your
uploads
directory is writable by web server. If you understand a little bit about it, try to make its permission 777 first.