somendrakm
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate WP Mail] remove column not workingHI I disabled all the plugin and i have only one plugins. There is a cross icon for remove column in mail template creation. when i delete and publish and re-appear after page reload.
check this image.
hi thanks for your feedback 🙂
yes its possible to send alert when someone publish post but i did not add any code and i really don’t get a time to do this update this week because i am working with my job plugin 🙂 but actually you can achieve this by adding this code in your function.php of theme.
add_action('publish_product', 'send_mail_when_publish_post'); function send_mail_when_publish_post($post) { global $post; if ( user_can( $post->post_author, 'manage_options' )){ //do nothing in this case } else { $to = '[email protected]'; $subject = 'The subject'; $body = 'The email body content'; wp_mail( $to, $subject, $body ); } }if it doesn’t solve problem just give me 2 week i am updating this plugin with new features and i will consider this one also 🙂
here the best plugin to hide profile fields you can check it from here
Hide WordPress Profile FieldForum: Plugins
In reply to: Do anyone have shortcode plugin like elegant themes?Elegant Shortcodes Plugin For WordPress
http://onlinewebsitebuilder.in/2011/07/19/elegant-shortcodes-plugin-for-wordpress/