Azumi93
Forum Replies Created
-
Forum: Plugins
In reply to: [Email Notification on Login] function only for administratorHowdy,
You might want to try this plugin of mine it allows you to select which roles to track. Cheers.
- This reply was modified 6 years, 1 month ago by Azumi93.
Forum: Developing with WordPress
In reply to: Can’t link CSS to plugin^^ Thank you so much, Joy!
I changed
add_action('admin_enqueue_scripts', 'emnoti_styles');
toadd_action('admin_init', 'emnoti_styles');
andwp_register_style( 'the_plugin_css', 'styles/emnoti_styles.css' );
towp_register_style( 'the_plugin_css', plugins_url('styles/emnoti_styles.css', __FILE__) );
and it worked!Thanks again!
Forum: Everything else WordPress
In reply to: WordPress plugin update approval@samuel, it should be fine now. I kept committing to the wrong place, I am sorry, I didn’t have much experience with SVN.
Forum: Everything else WordPress
In reply to: WordPress plugin update approval^^ My apologies, will fix.
Forum: Everything else WordPress
In reply to: WordPress plugin update approval^^ Thank you so much!
Forum: Fixing WordPress
In reply to: Amazon Native Ad not showing up on WordPressHey Andrew,
I figured out the Amazon ads issue!
The way the native ads work , is that they scan the page for a product name. And since the page i wanted to put them on is about philosophy, it doesn’t mention one product like 10 – 20 times, (silly, I know) thats why they don’t work.HOWEVER, even if the page mentioned for example, cameras 10 – 20 times, the stupid ads would sometimes show and sometimes not, which would leave a big white space empty and i think that will greatly confuse visitors.
Other people have also complained here -> https://forums.prosperotechnologies.com/discussions/Amazoncom_Associates/Discussions/Native_Shopping_Ad_doesnt_seem_to_show_consistently/am-associhelp/47498.1?redirCnt=1&nav=messages
Forum: Fixing WordPress
In reply to: Amazon Native Ad not showing up on WordPressUnfortunetaly the page is under construction and with username + pass protected.
i am sorry.
But the problem still persists ;(
Forum: Plugins
In reply to: [Email notification on admin login] How to Set Delay notification ?.Hello! Could you clarify, please?
Forum: Plugins
In reply to: [Email notification on admin login] Notify on all usersHello, sorry for the late reply.
Yes, you can modify it, in a couple of ways:
1. In index.php around line 18 modify the function emnoti_check_if_admin() by adding additional check to the if statement with
or current_user_can('read_page')
so that the end result is this:function _emnoti_check_if_admin(){ if(current_user_can('manage_options') or current_user_can('read_page')){ return true; }else{ return false; } }
Second method:
2. Again in the same place as above and in the same function modify it like this:
function _emnoti_check_if_admin(){ if(current_user_can('manage_options') or is_user_logged_in()){ return true; }else{ return false; } }
If you want to receive emails only when users are logged in, without admins, then remove
current_user_can('manage_options') or
line and leave just the second as it is.Hope this would help. If you have any more questions, please feel free to ask.
Forum: Plugins
In reply to: [Email notification on admin login] doesn't workIf you give details to exactly what problem you are experiencing, I will do my best to help.
Are you trying to change the email address on which you are receiving the notifications?
Forum: Reviews
In reply to: [Email notification on admin login] Indispensable^^ Thank you very much for the nice words, I am planning to start programming the plugin and adding new features, I will definitely take your advice.
As for SMS and a pro version – that is actually a very good idea.
Forum: Everything else WordPress
In reply to: Paid pluginThank you for the replies everyone, you helped greatly!
Forum: Reviews
In reply to: [Email notification on admin login] Simple and effectiveThank you very much, I am open to suggestions for new features ??
Forum: Everything else WordPress
In reply to: Paid pluginThank you for the replies.
so basically there is no point to sell paid plugins then?