| bio | website | |
|---|---|---|
| location | Istanbul/Turkey | |
| age | 30 | |
| visits | member for | 7 months |
| seen | May 3 at 17:56 | |
| stats | profile views | 15 |
|
Jan 30 |
comment |
How to use same email for multiple users @Guillochon Try my updated solution above for a single site setup. |
|
Jan 30 |
revised |
How to use same email for multiple users Added solution for a non MU setup. |
|
Jan 29 |
comment |
How to use same email for multiple users @Guillochon I don't see any change in WP 3.5 that would make this code to not work. And this is for a MULTI-SITE setup, are you testing on a WP MU setup? |
|
Jan 10 |
awarded | Supporter |
|
Dec 11 |
revised |
How to use same email for multiple users corrected spelling |
|
Dec 11 |
comment |
Make post slug have priority over category slug @bertkat You mean, you have 404/not found error on categories? Did you try flushing the rewrite rules? |
|
Dec 11 |
answered | How to use same email for multiple users |
|
Dec 10 |
answered | Make post slug have priority over category slug |
|
Dec 5 |
answered | wordpress multisite domain mapping redirects to original subdomain |
|
Dec 5 |
answered | Trying to implement AJAX into my admin pages. Am I improperly enqueue and localizing my scripts? |
|
Dec 5 |
awarded | Commentator |
|
Dec 5 |
comment |
Trying to implement AJAX into my admin pages. Am I improperly enqueue and localizing my scripts? Check the Network/XHR tab in Firebug to debug ajax requests. You can check if the ajax call is made and what is the response form the back-end. |
|
Dec 5 |
comment |
Trying to implement AJAX into my admin pages. Am I improperly enqueue and localizing my scripts? in your JS file replace wp_ajax.ajaxurl with ajaxurl. |
|
Dec 5 |
comment |
Trying to implement AJAX into my admin pages. Am I improperly enqueue and localizing my scripts? On the admin side, ajaxurl is already available as a global javascript variable, so you don't actually need that localizing part.
What is the response of the ajax call if you enable debugging? (DEBUG=TRUE in config file) |
|
Dec 4 |
comment |
Users are being redirected to main site when trying to register on subsite of my Multisite network Have you seen answers to a similar question here? My own solution was a small hack to wp-login.php! |
|
Dec 4 |
comment |
How do I get allowed Media Library upload file extension list? according to the source code, wp_get_mime_types() returns the list of ALL mime types and applies the 'mime_types' filter on the list. The filter should be used to add types, not remove them. get_allowed_mime_types() returns a list of allowed mime types, it uses wp_get_mime_types() to fetch the list but applies one more filter: 'upload_mimes' which can be used to remove types. |
|
Dec 4 |
comment |
How do I get allowed Media Library upload file extension list? This function is introduced in WP3.5 and is not available in current stable release 3.4.x. |
|
Dec 4 |
answered | How do I get allowed Media Library upload file extension list? |
|
Dec 3 |
answered | rewrite get parameter with custom post type |
|
Oct 24 |
answered | Get plugin_dir_url() from one level deep within plugin |