mathieuhays
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Proxy a different domain then where my WordPress install is set upHi doodirock,
The easiest solution is to have your installation in the “blogs” folder on the same server.
Seems quite impossible to me otherwise. Any kind of solution which may exist would require access to the public-url server. If you have access to that server it would very wasteful to opt for such a setup.One possible workaround would be to have your installation as a subdomain : https://blogs.public-url.com/
Hope that makes sense
Forum: Fixing WordPress
In reply to: Display post thumbnails in categoryHi pgrammatas,
I would recommend you to contact the creator of the theme you bought since this ability depends on the fact that they allowed it in their code or not.
Forum: Plugins
In reply to: [Simple Documentation] Characters escaped… repeatedlyThanks for your suggestion. It would be really useful indeed. I’ve added this to my suggestion list.
I won’t be able to implement this feature soon but as soon as I’ve got enough time to spent on Simple Documentation I’ll add it ??
Forum: Plugins
In reply to: [Simple Documentation] Characters escaped… repeatedlyHi WPspider,
I just released a fix for this issue (v1.2.2). Please can you let me know if it does fix your issue ?
If it doesn’t fix your issue, can you describe me the steps I can do to replicate it ?
Thanks ??
Forum: Plugins
In reply to: [BP | You are blocked] Override query argumentsActually I’ve got a little error here. Forgot to apply the array merge to the query.
/** * Adjust BP_User_Query * @since 1.0 * @version 1.0 */ function bpb_adjust_user_query( &$data ) { if ( !is_user_logged_in() ) return; $_list = bpb_get_blocked_users( get_current_user_id() ); update_option( 'catch_query_users_query', $_list ); if ( ! empty( $_list ) ) { $list = implode( ',', $_list ); if( empty( $data->query_vars_raw['exclude'] ) ) $data->query_vars_raw['exclude'] = $_list; else if( is_array( $data->query_vars_raw['exclude'] ) ) $data->query_vars_raw['exclude'] = array_merge( $data->query_vars_raw['exclude'], $_list ); else $data->query_vars_raw['exclude'] .= ',' . $list; if( empty( $data->query_vars['exclude'] ) ) $data->query_vars['exclude'] = $_list; else if( is_array( $data->query_vars['exclude'] ) ) $data->query_vars['exclude'] = array_merge( $data->query_vars['exclude'], $_list ); else $data->query_var_raw['exclude'] .= ',' . $list; } }
Forum: Plugins
In reply to: [Simple Documentation] Issue with some User RolesHi lenehanj,
Any update on this issue ?
Thanks,
MathieuForum: Plugins
In reply to: [Simple Documentation] How to add an imageHi 63com,
The support of images inside Notes is not included with the current version unfortunately.
I’ll add the support in an upcoming update.
PS: Sorry for the delay !
Forum: Plugins
In reply to: [Simple Documentation] Issue with some User RolesHi lenehanj,
I made a quick test and it seems to work for me.
Is there any chance that you can send me a copy of your User Role Editor plugin configuration ? It’ll enable me to test this properly.Thanks,
MathieuForum: Plugins
In reply to: [Simple Documentation] BugsI’ll check that out.
Thanks for you ideas.
I’ll have a think about it. As it makes sense I’ll probably add this feature to a forthcoming update.I’ll think about the possibility of displaying larger content differently but first I want to make sure that the current version is bug free.
Regards,
MathieuForum: Plugins
In reply to: [Simple Documentation] BugsHi,
sorry to hear that there is still some bugs !
I’m going to fix this and publish an update for it as soon as possible.When I talked about using links, I meant that if the content get too big, It’ll be better to put this content on a more suitable page. Displaying large piece of text in my plugin might not be the better experience you could provide to your user.
This link attribute is just a link, nothing more. It’s here so you can link directly to a tutorial or wiki page somewhere.
Hope that makes sense ??
Thanks for you feedback !
MathieuForum: Plugins
In reply to: [Simple Documentation] Links and Code not rendering correctlyUnfortunately, I didn’t manage to reproduce the issue.
Actually I think it might be an issue with your WordPress Installation.
For the formatting work on the editor, 99% of the work is done by tinymce/wordpress.
Simple Documentation is just getting/setting the text into it actually.It might be a conflict with another plugin as well. Are you using any plugins that may have effects on the editor ?
Is this behaviour reproduced over multiple WordPress installation?I would recommend you to deactivate each plugin and see if there is any difference.
If you spot a specific plugin which interfere with Simple Documentation, I’ll be able to resolve the conflict.Are you using the lastest version of Simple Documentation which is 1.2.1 ?
Thanks,
Mathieu.Forum: Plugins
In reply to: [Simple Documentation] Links and Code not rendering correctlyOk,
I’ll do some tests tomorrow and provide a fix as soon as possible ??I’ll assume that you are using the ‘note’ type.
Your website is on a basic ubuntu server.
You are using utf-8 as main charset.
Your WordPress installation is up to date.Please let me know if what I’ve described above doesn’t reflect your environment.
Thank you,
Mathieu.Forum: Plugins
In reply to: [Simple Documentation] Links and Code not rendering correctlyHi Dee Teal,
Happy to see that the plugin suit your needs ??
If you want to insert your custom code, you have to use the ‘text’ tab of the editor.
Then you can switch back to the visual tab to view your changes properly.
This is the same behaviour as the main WordPress editor.If you are still getting this issue after using the process above, please let me know !
It’ll mean that this is a code issue, so, if in that case, you could send me as much details as possible about the steps you are going through to add items, it would be lovely !Thank you for your feedback ??
Mathieu.Forum: Plugins
In reply to: [Simple Documentation] Limit roles issueIt should be fixed with the 1.2.1 update.
Feel free to report me any issue ??
Thanks,
MathieuForum: Plugins
In reply to: [Simple Documentation] Limit roles issueHi,
This is supposed to be the correct behaviour indeed.
I’ll check this over the weekend and provide a fix as quick as I can ??
Just as a notice, the current version of the plugin filter the role on the dashboard widget only.
The main simple documentation page is meant to be used by admin to create, edit and organise their content.