danielck
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: What happened to bold posts?Yep we can look at the post number but it will never be obvious as a bold title.
Forum: Fixing WordPress
In reply to: Blog not working in IEIE dun do auto image resize unless it is loading the image file.
Forum: Fixing WordPress
In reply to: Blog not working in IEYour Helicopters image is breaking the layout. You may want to resize the image?
Forum: Everything else WordPress
In reply to: What happened to bold posts?bold is the only visual indication that the post is new. Removing that may not be a good idea. Unless the developers have some other things in mind?
Forum: Plugins
In reply to: stylesheet css changerYou can try this solution, which is not a plugin but it only requires you to modify your template file (index.php)
I implement it on my WP 1.5 website without any problems.
Forum: Plugins
In reply to: Wysi-WordPress crashed my server – HELP!Tried disabling the Admin Interface plugin and re-enable the WYSI-Wordpress. The refreshing problem still exist.
The browser keep downloading the icons images whenever I mouseover the icons or click on the textarea. When I type, the rows icons will start refreshing. It is scary as seconds later, my server will stop resonding.
I am afraid that this will waste my bandwidth.
Take a look at the screen shots: https://www.danielck.net/temp/wysi-problems.jpg
did any users experience this problem?
Forum: Themes and Templates
In reply to: Will pay money for themeYou get what you pay for.
For $20, I would not do any new design concept but I’ll just do some simple customisation of the existing themes. Additional images are charged seperately. The same goes for additional HTML/PHP coding.
Forum: Your WordPress
In reply to: evolution redesignClean and nice… I like the layout and the shade of blue
Forum: Everything else WordPress
In reply to: Ensim package WordPress for Windows Hosting softwareI see…
whatever is the reason, I am glad that I have the option to switch to WP and not stick to the default config. ??
Forum: Everything else WordPress
In reply to: Ensim package WordPress for Windows Hosting softwareTrue. There is no statement stating that WordPress perform better under windows server.
I am just puzzled why WordPress is offered as an option under windows hosting. I have experience difficulties in getting mySQL and apache to work under windows server hence I am really curious on HOW WordPress can perform on it.
On the other hand, I feel that WordPress have many improvements over b2. Hence, why not offer WordPress on Linux hosting as well.
Just like to seek opinions before I contact them.
Forum: Plugins
In reply to: Best WordPress Configurationcalendar can be inlcuded by means of inclusion of coding.
Forum: Everything else WordPress
In reply to: php/css editors?I guess the codes gets bloated because user simply can’t make up their mind when they are using WYSIWYG softwares. They are trying many possibilities that the codes gets bloated at each edit.
Frontpage generates an even more bloated coding than DW.
However, DW offers settings to change the type of code to use ‘<b>’ </b> or ‘‘, add colors as style sheets or html etc…
Forum: Everything else WordPress
In reply to: Opinions on webhosting2 GB band width and 200mb webspace, on Linux servers.
so far, I am using only 50mb and I rarely hit 1GB of bandwidth
Forum: Everything else WordPress
In reply to: php/css editors?there is a bug in Dreamweaver. You have to disable “open style sheets when edting” option else DW will crash when you edit style sheets
Forum: Fixing WordPress
In reply to: I want something to “make” me choose a category before postingWell, here is what I have done:
https://www.danielck.net/temp/confirm_alert.jpgI edited wp-admin/edit-form.php at line 62
‘<input name=”publish” type=”submit” id=”publish” tabindex=”6″ style=”font-weight: bold;” value=”<?php _e(‘Publish’) ?>” />’
to:
‘ <input name=”publish” type=”submit” id=”publish” tabindex=”6″ style=”font-weight: bold;” value=”<?php _e(‘Publish’) ?>” onClick=”javascript:return confirm(‘Have you select the right catagory for your post?’)” />’
When you click ok, the post will be published. If you click cancel, nothing will happen and yu can amend the category.