Chip Bennett
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Contango] Removing footer creditsWhen re-distributing a (or distributing a modified) GPL-licensed work, proper attribution must be maintained; however, that attribution is only required to be appropriate to the type of work.
WordPress Themes are a conglomeration of PHP, HTML, and CSS code. Proper attribution for such code is in the source itself, not in the browser-rendered output of the PHP-parsed version of that code. Generally speaking, for WordPress Themes, such attribution may be found in comments in the style.css file, in the phpDoc header comments in the functions.php file, or in a separate file such as a readme.txt file. Such attribution is appropriate, and meets the letter and spirit/intent of the attribution requirement in the license.
In other words: you’re not required to maintain public-facing attribution, such as a “credit link”, even up on distribution/re-distribution.
Could be. OpenGraph integration is Plugin territory; that could be what that email thread was about.
Actually, the developer simply requested that it be removed. He just happened to respond in an existing email thread about other Themes, IIRC.
I’ll have to look into it some more. Give me a couple days. 🙂
If I comment out that if-then function, will the plugin in send an email to even if the post author comments?
Yes, it should. You may need to comment out the next conditional as well, if you have issues with comment moderation.
Forum: Plugins
In reply to: [cbnet Twitter Widget] Plugin Stopped WorkingHi all,
Unfortunately, I think that, with Twitter shutting down their 1.0 API, it appears that they also shut down the scripts that were at the core of this Plugin. Twitter has been moving away from such scripts, and their replacements aren’t readily adaptable to wrapping into a WordPress Plugin.
Thus, sadly, I will very likely be forced to EOL this Plugin. I’ll look into it some more, and let you know.
Hi Alex,
Thanks for the kind words!
The issue you’re encountering is an inherent part of the core
wp_notify_postauthor()function, here:// The comment was left by the author if ( $comment->user_id == $post->post_author ) return false;All the Plugin focuses on is expanding the list of addresses that get emailed when the notification email is sent. In the core function, if the comment is left by the post author, the function returns false, and no email at all is sent.
But, that’s a valid point: non-author recipients would potentially still want to receive notification of comments also left by the post author.
My concern is that I’m also trying to get the core function revised, such that I can simply use a filter, rather than overwriting the entire pluggable function. But, to make this change, I would still have to override the entire function.
Let me put some thought into it, to try to come up with the best approach.
Forum: Plugins
In reply to: [Bitly's Wordpress Plugin] Shortlink in WP-Admin Bar is not workingPlease start your own topic.
but where are Unblockable Popup to install ?
i put it Unblockable Popup in seach plugin in panel controll and not show, only show MBP-auto-active.
MaxBlogPress plugins are not available in the official Plugin directory (largely, for the issues quoted above).
Please refer to the Plugin description:
Note: this plugin does not install any other plugins. If you wish to use any MaxBlogPress plugins supported by cbnet MBP Auto-Activate, you must install them separately.
Note that I don’t provide support or help for installing/using MBP plugins (also from the Plugin description):
Note 2: This Plugin is not an endorsement for MaxBlogPress Plugins, but rather a proof-of-concept to demonstrate why it is futile to force users to jump through Plugin-registration and email-list-subscription hoops just to use Plugin functionality. It appears that some or all of MaxBlogPress Plugins are now released under a non-GPL-compatible license that restricts code modification. Use them at your own risk.
MaxBlogPress Unblockable Popup plugin Not Installed N/A
This indicates that you don’t have the MBP Unblockable Popup Plugin installed.
Forum: Plugins
In reply to: [cbnet MBP Auto-Activate] Cannot activate plugin – Fatal errorPlease start your own topic.
Forum: Plugins
In reply to: [cbnet Multi Author Comment Notification] Subscribers can get notifications?Currently, all email addresses receive the same email (by design).
I think it’s mostly only an issue with the comment-moderation notification emails, but you bring up a valid point.
What would be the best solution? Only exposing the option to admins/editors? Maybe a Plugin option not to send moderation emails to non-admins?
This Theme was suspended from the Theme directory, per the developer’s request:
http://lists.wordpress.org/pipermail/theme-reviewers/2013-May/012887.htmlForum: Themes and Templates
In reply to: Modify PHP in child theme?Please enable
WP_DEBUG, and report the fatal error you’re getting.Also, please post relevant code from your child Theme
functions.php.My guess, though, is that you’ve named the function in the child Theme the same as the function in the parent Theme.