wpaholic
Forum Replies Created
-
Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] Notify on scheduled postsSo add this to functions.php then? What part of the code would I copy/paste to get multiple notifications for different statuses? I assume I would change future to ‘Draft’ if I wanted to notify the same group for Draft posts (which I think would happen everytime a new post is made). The ID for my editors seems to be 696.
/** * Auto-subscribe or unsubscribe an Edit Flow user group when a post changes status * * @see https://editflow.org/extend/auto-subscribe-user-groups-for-notifications/ * * @param string $new_status New post status * @param string $old_status Old post status (empty if the post was just created) * @param object $post The post being updated * @return bool $send_notif Return true to send the email notification, return false to not */ function efx_auto_subscribe_usergroup( $new_status, $old_status, $post ) { global $edit_flow; // Choose the slug for whichever status you'd like to auto-subscribe on if ( 'future' == $new_status ) { // You'll need to get term IDs for your user groups and place them as // comma-separated values $usergroup_ids_to_follow = array(696); $edit_flow->notifications->follow_post_usergroups( $post->ID, $usergroup_ids_to_follow, true ); } // Return true to send the email notification return true; } add_filter( 'ef_notification_status_change', 'efx_auto_subscribe_usergroup', 10, 3 );
I mean to say is it possible to have the editor notified when the contributor schedules their post? So that they have a limited time to review before the post goes live. Useful for posts where it is more important for timeliness than editing but where you ideally want some editing.
They are public and I doubt the site has that kind of traffic. It’s never had that many visitors in one day? Can you also look at the display on “pages” like https://porcupinerealtor.com/buying < not sure why its messed up.
Forum: Plugins
In reply to: [Social Media Tabs] [Plugin: Social Media Tabs] Widget breaks on single pagesI tried this on Twenty Ten theme and it still seems broken on pages. This seems to be a problem regardless of theme, no?
Forum: Plugins
In reply to: [Social Media Tabs] [Plugin: Social Media Tabs] Widget breaks on single pagesSylwia – I have the same issue, can you give me some more detail so I can go back to the theme author? Thank you!
Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] Vote button won't click!Did you try adding this to your theme footer?
<?php wp_footer(); ?>
Forum: Plugins
In reply to: [CevherShare] "TweetCevherShare Tweet" populates "related articles" snippetsremoved the plugin credit and now it just says “Tweet Tweet” in all the related articles snippets….
OK,just went thru this.
– tried deactivating all plugins – fixed message after update (none came up) BUT comments still disabled
– switched to Twenty Eleven theme – yes this seemed to fix! OK, will talk to theme provider at Gorilla themes?!Forum: Plugins
In reply to: [WP-Polls] [Plugin: WP-Polls] Vote button won't click!+1
The option ” Automatically close comments on articles older than days” is not enabled. Any other settings I should consider?
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function is_site_admin()Also update all of these in bp-links-core.php ?
Hmm, ok. Any ideas of any conflicts with Pressjunkie themes or the native WordPress comment system? Any plugins like Subscribe To Comments Reloaded Plugin cause conflicts? Should I have other commen systems disabled, like within my theme settings?
Same issue.
From a post I saw, one of the commenters said this:
Just a quick follow up for others reading this thread and experiencing blank sitemaps: Joost figured out that my old Google XML Sitemap plugin had added a rewrite line to the .htaccess file, which stayed there even after I deactivated the plugin. Once that was removed, all worked perfectly!
Not sure how to fix this but maybe that helps!
I activated your plugin again but no sitemap is created at /sitemap_index.xml, the page just says “Sorry, no posts matched your criteria.”