gchokeen
Forum Replies Created
-
Forum: Plugins
In reply to: [Wp Subcribe Author] How to show total subscribers in author pageHi,
Currently this plugin in not supporting to do what you want. It was taken as feature request while before. Unfortunately, I was busy on many thinks. so don’t get time to main this plugin. You can expect this feature in while.
If you know the use case and can add the pull request, I am happy to accept!
Maybe need to create the shortcode
https://github.com/RootaccezLabs/wp-subscribe-author/issues/2
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?public wpsa_notify_author_subscribers($post_id){ $post = get_post($post_id); // my plugin code goes here, copy the code from plugin and past it }
play with my guide. hope it will solve your issue. now I am marking this ticket solved.
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?Try it on your active template function.php
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?Maybe you need to use this https://docs.wedevs.com/docs/wp-user-frontend-pro/developer-docs/wpuf_edit_post_after_update/ hook.
But this hook seems sending post_id instead post object. so ahead and edit our plugin to get the post object from post id.
I may adjust plugin later update with number of hooks. so users can customize the code without changing it.
Maybe you can extend the Wp_Subscribe_Author class to override wpsa_notify_author_subscribers function
class my_Wp_Subscribe_Author extends Wp_Subscribe_Author{ public wpsa_notify_author_subscribers($post_id){ // Do your stuff } } add_action('your_plugin_hook', array(new my_Wp_Subscribe_Author(), 'wpsa_notify_author_subscribers'));
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?Note: that plugin action hook should send the $post object as parameter to make wpsa_notify_author_subscribers function work
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?You basically need to find the action that plugin use while new post published. Use that hook as below in your theme function.php
add_action(‘your_plugin_hook’, array(new Wp_Subscribe_Author(), ‘wpsa_notify_author_subscribers’));
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?WP User Frontend Pro Frontend posting form Plugin seems not firing “new_to_publish” hook!
Forum: Plugins
In reply to: [Wp Subcribe Author] How do I get to this work with WP User Frontend Pro?Please describe your issue to help you. What is the problem?
Forum: Plugins
In reply to: [Wp Subcribe Author] Make card only appear on a certain pageclosing it
Forum: Plugins
In reply to: [Wp Subcribe Author] A few easy-to-add feature suggestionsjust marking it as resolved here
Forum: Plugins
In reply to: [Wp Subcribe Author] A few easy-to-add feature suggestionsHey thanks for those suggestion, I logged it as feature request. I will look at that when I start working on next release.
https://github.com/RootaccezLabs/wp-subscribe-author/issues/14Thanks again!
GowriForum: Plugins
In reply to: [Wp Subcribe Author] Subscribe button on Author Archive page?Hi,
It’s already in feature requesth. ttps://github.com/RootaccezLabs/wp-subscribe-author/issues/10. Give your thumb up there. I will work on it as priority.Thanks
GowriForum: Plugins
In reply to: [Wp Subcribe Author] Subscribe button on Author Archive page?Hi, please look at the FAQ section.
Thanks
GowriForum: Plugins
In reply to: [Wp Subcribe Author] Make card only appear on a certain pagePlease check the FAQ, the card will show if your author link has rel=”author”. You remove this attr on other page’s
Forum: Plugins
In reply to: [Wp Subcribe Author] Email through smtpHi,
Today 1.7 plugin is released, I added the option to add custom sender name & sender email from admin settings.