dansod
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe to Category] only specific category?I will mark this one as resolved.
Forum: Plugins
In reply to: [Subscribe to Category] Send subscription success emailHi there, there are some new hooks in the latest version that I think might help you with your request.
Forum: Plugins
In reply to: [Subscribe to Category] custom post-type supportHi there!
Thanks for your input, I have thought about this for a while, making it possible to use for custom post types.I´m glad you found a work around to use until it works right out of the box.
Forum: Plugins
In reply to: [Subscribe to Category] Unsubscribe pageI am just about to release a new version, if this not taking to long to develop i might just add it during this weekend, we will see about that.
Otherwise there will be a solution in the next release. Got it in my backlog.
Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] Select only ONE category for subscribeHi, when you only select one category to be available for subscription there won´t be any selectable option (checkbox) for the user.
I was thinking that with only one category there´s no need for a checkbox, am I right?
Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] only specific category?Hi, please take a look under the installation section,
https://wordpress.org/plugins/subscribe-to-category/installation/Perhaps this might help you with that.
[stc-subscribe category_in=”your_category”]Forum: Plugins
In reply to: [Subscribe to Category] Send subscription success emailYeah I am sorry about that, your request is in my backlog and I am already working on next release. Next release it will be there.
Forum: Plugins
In reply to: [Subscribe to Category] Current Subscribers updating SubscriptionsHi, newer thought about that scenario, it´s a really good input.
That´s something i need to rebuild or be more clear about. I guess it will probably be a surprise to the user that he or she loses connection to some categories.
Thanks for your input!
Forum: Plugins
In reply to: [Subscribe to Category] Send subscription success emailHi, just started to work on a new release so i will see if i can add your hook request.
Thanks
Forum: Plugins
In reply to: [Subscribe to Category] Send full posts?Well that´s an old thread. There is now filter and hooks built in so you don´t need to hack the plugin on every new version for that kind of customizing.
I recommend you to use the filter and hooks described on this page.
https://wordpress.org/plugins/subscribe-to-category/installation/Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] Doesn't seem to be working anymoreHi, I have no experience from cpanel, but I found this article who use following command for cpanel. Perhaps you have already tried it.
wget http://www.yourwebsite.com/wp-cron.php?doing_wp_cron=1 > /dev/null 2>&1Forum: Plugins
In reply to: [Subscribe to Category] Edit the emailThats a good point, I’ve actually been thinking about creating a feature to send via SMTP. I think that should prevent a lot of the spam folder issue.
There are some plugins that force all wp_mail to be sent through SMTP, have you tried one of those? For example WP SMTP Mail?
Forum: Plugins
In reply to: [Subscribe to Category] Doesn't seem to be working anymoreHi there!
I am sorry to hear that you are having problem.@holliboydwhite – how is your setup for the cronjob that point to wp-cron.php? What interval have you set?
@thoughton – the time different on your server should not have anything to do with the scheduled time for next run. The cron job to wp-cron.php is just to keep WP Cron up and running.
4.3 has a bug report for cron, but for me the plugin works fine on 4.3 but I will paste the url anyway, https://managewp.com/wordpress-4-3-stability-issue-fix
I have also noticed that if a website is behind basic auth, then the crontab won´t have access to wp-cron.php, but in that case will none of the wordpress wp cron work.
Have you tried to install a plugin like WP Crontrol to see all of your wp cron work? Take a look and see if your scheduled events has a time set for next run, if not your wp cron isn´t running as expected.
Forum: Plugins
In reply to: [Subscribe to Category] help with filters and hooks and customizationsLets mark this one as resolved.
Forum: Plugins
In reply to: [Subscribe to Category] help with filters and hooks and customizationsHi great you figured it out!
To count all subscribers this might help you on the way.
add_action( 'stc_before_message', 'my_stc_before_message', 10, 2 ); function my_stc_before_message(){ $count_subscribers = wp_count_posts( 'stc' ); $sum_of_subscribers = $count_subscribers->publish; echo $sum_of_subscribers; }To count subscribers in a certain category is a bit more complex.