dansod
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe to Category] Give category_in with ID instead of name?Hi there!
Many thanks for your suggestion and solution, i will definitly include it, at least as an option or as an attribut in shortcode.Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] Post thumbnailSure, here is an example to print out the post categories after the email content.
function my_stc_after_message_content( $post_id ){ $categories = get_the_category( $post_id ); ?> <?php if(! empty( $categories ) ) : ?> <?php _e( 'Categories: ' ) ?> <ul> <?php foreach( $categories as $category ) :?> <li><?php echo $category->name; ?></li> <?php endforeach; ?> </ul> <?php endif; ?> <?php } add_action( 'stc_after_message_content', 'my_stc_after_message_content', 10, 2 );
Forum: Plugins
In reply to: [Subscribe to Category] Post thumbnailGreat!
Forum: Plugins
In reply to: [Subscribe to Category] Post thumbnailI am hoping to have the time to release a new version during this weekend.
Forum: Plugins
In reply to: [Subscribe to Category] FeaturesHi AlanPNZ, unfortunaly i cannot produce the same error as you. It might be that there is some issues along with other plugins and the theme you are using.
Try switching to a default WP and see if the bug still occurs.
Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] FeaturesHi wordpresshelpnow,
– have you checked the settings function, there is timestamp when next scheduled event is going to be executed and have you tried to trigger it manually?
– does your wordpress installation send any emails at all?
– have you checked your email junk folder?If there is still problems
– try installing a plugin that log emails, search for email log in the plugin sections.
– try to install a SMTP email plugin, search for SMTP email in the plugin sections.Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] Post thumbnailHi there, i am currently adding custom filters to make the plugin more extensible. So yes, it looks like that is going to be possible in the next version.
Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] editing email footer or header?Hi, I am currently adding some custom hooks and filters to make the plugin more extensible and your request for header and footer will be included.
With those filter added and a little knowledge about working with filters you can easily add your custom footer and header.
There′s going to be a new version available during this weekend.
Thanks,
DanielForum: Plugins
In reply to: [Subscribe to Category] Plugin not working on WP 4.3?Hi there!
I have just done some test for 4.3 and it′s working fine in my environment.But I have had some issues for a couple of sites that are using a SMTP plugin that have stopped sending emails after 4.3 update. That might be a problem if you are using a SMTP plugin along with STC plugin.
You could try install a logging plugins, like WP Mail Logging or Email log. These plugins logs if an email is sent.
Please let me know how it went.
Forum: Plugins
In reply to: [Subscribe to Category] How to add this to a widgetHi there!
To be able to use shortcode in the default text widget you need to add this code in your theme functions.phpadd_filter('widget_text', 'do_shortcode');
Forum: Plugins
In reply to: [Subscribe to Category] Custom taxonomiesHi, that′s currently not supported.
I have some plans to make it work with custom taxonomies and custom post types. I am not sure when it′s going to be available though.
Thanks
Forum: Plugins
In reply to: [Subscribe to Category] Subscribers showing up as postsHi, this is a strange behaviour, never seen it before.
I have downloaded the theme you are using but I can not generate the same behaviour as you.It would be great if you could do some troubleshooting like switching theme and/or turning off your plugins one by one to get a hint of what is causing this behaviour.
Thanks
Forum: Plugins
In reply to: [Subscribe to Category] Pre-filled checkboxes on subscribe form?Hi, you cannot see which category you are subscribed to. That might be something for future updates but not in the nearest.
Thanks
Forum: Plugins
In reply to: [Subscribe to Category] Checkboxes are buggyHi, there′s no replacing on form fields. It might be replaced by your theme or another plugin. Please try to switch theme to wordpress theme like twenty twelve and see if there is still a problem.
Thanks
Forum: Plugins
In reply to: [Subscribe to Category] Minor bug to reportHi, take a look in the trash for Subscribers, you need to empty the trash to delete a subscriber permantly.
Let me know if thats the issue.
Thanks