| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 10 months |
| seen | Jun 4 at 6:39 | |
| stats | profile views | 33 |
|
Feb 10 |
comment |
Making images in posts link to the image file rather than the attachment page Because this will not alter the links on the page, it's more of an hack (a nice one) and not a real solution because it doesn't change the links on the page. Links will still go to the attachment page. In some scenarios it would be better to change the links on the page. e.g. if you want to run Lightbox / Colorbox to preview images. |
|
Aug 8 |
comment |
Why is my database import losing text widget data? This is not really a solution, but more of a hack! It's also scenarios which doesn't allow you to change the host file. E.g. behind a corporate enteprise proxy or if you have https in production and http on development. |
|
May 22 |
comment |
Keeping WP database synced across multiple developers using git Also a simple one here stackoverflow.com/questions/825787/… |
|
May 9 |
comment |
Plugin for automated upgrade of WordPress core and it's plugins? He was asking for an automatic update and it seems like all answers require manual upgrade. |
|
Feb 16 |
comment |
Additional custom header_image I think you have misunderstood what I'm asking for. I'm not talking about different images, but two images containers. |
|
Dec 5 |
comment |
Modifying WP URL handing code? I was thinking about adding a rule above your rule for e.g. tag, category. Sorry that I can't provide exact rule so you need to try for yourself or hope for answer. Something like RerwriteRule ^(tag|category) index.php [L] |
|
Dec 2 |
comment |
Modifying WP URL handing code? Can't you just add a rule earlier for the tag|category (and so on) that you need? You also have the option to do some filtering based on the permalink URL. It's post_rewrite_rule. Checkout codex.wordpress.org/Class_Reference/WP_Rewrite |
|
Nov 28 |
comment |
Efficient way to fetch all archived WPMS blogs Sadly it doesn't return the name of the blog. You wouldn't know if it's easy to get that as well or do I need to go into each seperate options table? If so, this is not very efficent afterall. |
|
Nov 26 |
comment |
Efficient way to fetch all archived WPMS blogs Thanks, of course. blush |
|
Nov 25 |
comment |
header_image not working after site copy WPMS seems to fail with wrong db so I had to use option 2. Nice intuitive script and it worked very well. I wasn't aware of the serialization issue. Thanks. |
|
Nov 1 |
comment |
Create password automatically for new users? I'm talking about admininstrative users in the admin interface. I don't use the registration form. |
|
Aug 16 |
comment |
How to configure site for automatic upgrades Can this also be done using scp? |
|
Apr 27 |
comment |
Drag & drop HTML5 file upload into the media library? It seems like Google will sponsor this for the GSoC 2011. Check out this link: google-melange.com/gsoc/project/google/gsoc2011/jacobwg/21001 |
|
Nov 26 |
comment |
Notify multiple email addresses on comments Very interesting approach! However, as bit of a overkill for my need. I only need to notify authors and a couple of admins. |
|
Nov 26 |
comment |
Notify multiple email addresses on comments Great plugi, but it's not really what I'm looking for. I'm only looking on notifying the author and all admins on the page...not the users. |
|
Nov 2 |
comment |
Link to large image version instead of original? Great answer Jan. Got it working on a test installation. Thanks. |
|
Nov 2 |
comment |
Link to large image version instead of original? Hi Jan, the theme links directly to the image. |
|
Nov 1 |
comment |
How to automatically register widgets on new blog? hakre, I found a solution. I check for get_options('widget_<widget name>'). If it's not present, I do the wp_set_sidebars_widgets. Seems to work fine. Thanks. |
|
Nov 1 |
comment |
How to automatically register widgets on new blog? I looked a bit into this and got a trouble. You wouldn't know how I should calculate the multi_number for the widget I'm adding? |
|
Nov 1 |
comment |
Prevent notice and warnings in error_reporting? Thanks. @ini_set('display_errors',1);@ini_set('error_reporting',1); worked when I turned off WP_DEBUG. |