justinwhall
Forum Replies Created
-
Forum: Plugins
In reply to: [Comments - wpDiscuz] @mentions in buddypress.OK thanks.
Forum: Plugins
In reply to: [Comments - wpDiscuz] @mentions in buddypress.In buddypress you can you can write: @some-user-name and the users gets notified. It would seem your plugin does not support such functionality?
I should add. It’s on the homepage where it does not work. single pages work just fine.
Forum: Plugins
In reply to: [Contact Form 7] Microsoft 365 IssueAre there email SENT logs from WP I can look at somewhere to convince the people at MS 365 that email are infact being sent.
Thanks.
Looks like the problem is on line 159. The ‘publish_post’ hook is only for, well, posts.
Temporary solution would be:// Subscribe post authors, if the case if ( get_option( 'subscribe_reloaded_notify_authors', 'no' ) == 'yes' ) { add_action( 'publish_post', array( &$this, 'subscribe_post_author' ) ); add_action( 'custom_post_type', array( &$this, 'subscribe_post_author' ) ); }Of course, the publish_WHATEVER hook is deprecated but it’s a quick fix in the mean time.
Thanks again.
Thanks for the speedy response and sorry for my poor description. If a user posts a “post” they are auto subscribed to comments. This is NOT the case with custom post types. Authors are NOT subscribed to their own posts when the post is a custom post type.
Subscribe Authors IS checked.
Make sense?
Forum: Fixing WordPress
In reply to: Custom Post Type w/out single pageWhy wouldn’t you do:
"public" => false, "publicly_queryable" => true,That would allow you to query and output as needed AND not have single pages?
Forum: Networking WordPress
In reply to: Multisite multi domains not all on same hostYup. Thanks chief.
Try un checking the enable breadcrumbs box. Worked for me!
Indeed. Same problem here.
Forum: Fixing WordPress
In reply to: serialization when moving a site, explained?Got it. I think. So the problem is really, for instance, a URL to an image that is stored within an array.
URL one may be 10 characters long…
URL two is 12 characters long…Forum: Themes and Templates
In reply to: How to Reduce Top Body MarginCSS line 74
#page {
margin: 0 auto;
max-width: 1000px;
}Happens all the time with me. When DOSN’T it happen with you?
Forum: Plugins
In reply to: [Event Calendar] [Plugin: Ajax Event Calendar] Feed Url?hmm, still planning to add RSS?
Forum: Fixing WordPress
In reply to: Missing footer & dashboard linksWOnder if you are getting some sort of JS/CSS conflict with another plugin or even theme function. Have you tried disabling all plugins?