writegnj
Forum Replies Created
-
Forum: Reviews
In reply to: [Favorite Authors] Excellent pluginThank you for the review Taka 🙂
Feel free to write down features you would like to see on Support section. I will try my best to implement them in the future releases.Forum: Plugins
In reply to: Missing Delete button for usersI solved my problem on WordPress Slack core channel.
Big thank you to @pento!In my case, I have over 80,000 authors on my site and
wp_dropdown_users()was having a hard time rendering all those user into dropdown which caused memory error and stop rendering the rest of the page.function my_users_args_filter( $query_args ) { $query_args['number'] = 1; return $query_args; } add_filter( 'wp_dropdown_users_args', 'my_users_args_filter' );This will only render out 1 author instead of 80,000+. It won’t solve the actual problem but will prevent memory error and display delete button which is good enough for my case 🙂
Forum: Plugins
In reply to: Missing Delete button for usersHi vitko,
Did u find a solution to this? I’m having the same issue that Delete button is not even loading on the page. Tried deactivating all plugin and changing theme but nothing worked.Forum: Plugins
In reply to: [WassUp Real Time Analytics] No work after today updateI’m having the same issue.
This seems to be working but not quite if it’s secure enough 😉
function disable_wp_admin() { if ( ! is_admin() ) return; if ( current_user_can( 'manage_options' ) ) return; if (( current_user_can( 'edit_posts' ) && defined( 'DOING_AJAX' ) && DOING_AJAX ) ) return; if ( 'post.php' == isset( $_REQUEST['action'] ) && 'delete' == $_REQUEST['action'] && isset( $_REQUEST['post'] ) && isset( $_REQUEST['_wpnonce'] ) ) return; $redirect_to = home_url(); wp_redirect( $redirect_to ); exit; } add_action( 'init', 'disable_wp_admin' );Hi Jeff, thank you for the response!
I’m not quite sure how to use that code tho. Adding the code into my theme’s
functions.phpgives me the warning (Notice: Undefined variable: pagenow) and error (Cannot modify header information – headers already sent by ).Did u mean uncheck all roles under
Restrict Admin Accessand set my own restrict function? using your code?Forum: Plugins
In reply to: [Write Here] Very interesting!Glad you figured it out! I guess it’s not very user friendly yet 😉
Forum: Plugins
In reply to: [Write Here] Very interesting!Edit page which has
[write-here-edit]is normal to show “Please click edit link on dashboard page.”Now you have to assign that edit page on Write Here’s setting page. It’s under Settings on WP backend.
Then go to your dashboard page and click on edit link.
Hope this works.
Forum: Plugins
In reply to: [Write Here] Very interesting!Now it’s updated! Thank you again for the comment. Otherwise it will take me a while to realize I had a typo there lol.
[write-here-ajax]allows you to do write and manage posts on one page instead of having[write-here]on a page and[write-here-dashboard]on the other page.I have plan to make
[write-here-ajax]more interactive as I learn more stuffs about AJAX and WordPress 🙂Forum: Plugins
In reply to: [Write Here] Very interesting!I just noticed I have wrong shortcode on FAQ and Installation section.
Please use
[write-here-edit]Forum: Plugins
In reply to: [Write Here] Very interesting!Thank you for the comment!
For the edit button, it won’t work till you assign edit page on the setting page.
1. Create page and add
[write-here-edit]shortcode in the page.
2. Go to Write Here’s setting page and assign your edit pageHope this helps!
I’m not very familiar with DrawIt plugin but I will take a look 🙂
Forum: Plugins
In reply to: [Write Here] A couple of problems@niels_h this issue is fixed on v 1.2.
Forum: Reviews
In reply to: [Write Here] niceThank you for the review!
Forum: Plugins
In reply to: [Write Here] A couple of problemsThank you for checking out the plugin. I just updated new version 1.1. Feel free to try and let me know if you still see the problem!
Hi Md.Mamun, thank you for the response.
I’m looking for a solution to add Date field on free version NOT pro version.