jli
Forum Replies Created
-
Me again.
It seems that switching wp_debug option back and forth to false and then to true again fixed it.
Now I can see the toolbar with wp_debug true … Mystic it is …
Was investigating this issue today and realized that it was related to wp_debug being set to true.
In fact, domain mapping is throwing notice errors which seems to be breaking the toolbar display. (The notice is the one about index HTTPS undefined).
Well, this is not handy for debugging purpose, but when I set wp_debug back to false, everything is working as it should.
Hope this helps.
Regards.
Forum: Networking WordPress
In reply to: Per User Disk QuotaOk, that’s noted.
Thanks for the answer though.
Esmi: You made your point here. I’m going to see what can be done about this on roots side to make things better.
I just doubled checked and It seems I’m wrong.
There is not trailing slash output in bloginfo(‘wpurl’) – so the plugin’s code is perfectly ok.Going to check what can be made on roots’s side to fix this.
Closing the ticket ??
I expected that argument. And I have to admit I first thought that way too.
But cleaning wordpress url is one of the main roots feature. So this is completely legit to affect global wp options.Next I thought of bloginfo(‘wpurl’)’s original behavior which is to output ‘https://whatever.com/’.
The trailing slash is present – having double slashes in an url is not what I’d call best practice – so it lead me to the conclusion that the problem here is the leading slash in the plugin’s code and not the theme’s behavior.
Thats why my bug report is here and not on rootstheme ??
Forum: Plugins
In reply to: [Plugin: Events Manager] Export CSV not workingfound the dev version and repo on the download page ?? Should have checked before asking …
Forum: Plugins
In reply to: [Plugin: Events Manager] Export CSV not workingAny date for the next release ? Is there a repo for the dev version ? thx.
Forum: Plugins
In reply to: [External Videos] [Plugin: External Videos] Not enough documentationI agree the documentation is a bit weak.
Especially about the attachement and format options.
Also the way galleries work is a bit unclear.
Being a developer myself, I guess I will have to crawl through the code to understand those gray areas. But for the masses, you’d better write a short documentation of each feature. This will only serve the accessibility of your plugin and make it more popular.
Anyway, you did a great job here. This plugin is very handy.
cheers
Forum: Plugins
In reply to: Multiple separated blogs administration.It seems that someone already started working on such an idea:
https://birdhouse.org/software/2010/08/wordpress-mass-management/I’m gonna give it a deeper look as fast as i find some time.
Special thanks to Patrick (aka plog) for finding this.
Forum: Plugins
In reply to: [User Access Manager] [Plugin: User Access Manager] Custom Post TypesI can confirm the solution proposed here is working and is NOT implemented in 1.1.4.
Just wanted to clear things up for those of you who like me thought it was, especially because the changelog states it fixes error for custom post types.
I think this plugin is really nice.
I tried rolescoper for a while but i gave up because its not what i’m looking for at all and it does far too much, and it’s still bugged a lot (eg: breaks the category hierarchy, which is really a core functionnality). I think we should threat backend and front-end content restriction as 2 separated needs in 2 separated plugins!Anyway maybe i’m going a bit offtopic here but i just wanted to say i like this plugin for it’s simplicity and i’d be glad to help.
Forum: Plugins
In reply to: [JSON API] [Plugin: JSON API] Documentation TypoGosh this forum is not user friendly :X
@helenyhou: here is a sample of my code
add_action('init', 'hotel_register',1); function hotel_register(){ $args = array( 'label' => __('Hotels'), 'singular_label' => __('Hotel'), 'public' => true, 'hierarchical' => false, 'rewrite' => true, 'supports' => array('title', 'editor', 'revisions', 'author', 'thumbnail'), ); register_post_type( 'hotel' , $args ); }
I only added the priority one as Kevin stated.
@kevinb: I still had no time to check the beta’s deeply but i’ll report any glitches if i found some ??
Hey Kevin,
I’m a step further now, I can save my selection in the object scope settings and my custom post types appear in the roles and restrictions panels.
Now that I can access my CPT in roles and restictions, I don’t see any entry in the role table of each CPT.
See this image : https://screencast.com/t/MzcxZGQ1Z
Maybe I’m missing something in the config or maybe it’s the glitches you mentioned earlier ??
Anyway thanks for the support!
I added the following screenshot to show what i meant:
https://www.screencast.com/t/M2NmZWRi