I noticed the latest versions of this plugin has moved the quote button to Reactions. This isn't ideal for my theme, so how can I move it back to its previous location (comment meta)? o-o
Try changing what you have for this in the class.quotes.plugin.php
/**
* Add 'Quote' option to Discussion.
*/
public function DiscussionController_AfterDiscussionMeta_Handler($Sender, $Args) {
$this->AddQuoteButton($Sender, $Args);
}
public function DiscussionController_CommentOptions_Handler($Sender, $Args) {
$this->AddQuoteButton($Sender, $Args);
}
This worked for the first post in a discussion. However, it puts the Quote button in the Options div in subsequent posts in the same thread. How can I put it in the Meta div, like it appears in the first post?
Comments
Try changing what you have for this in the class.quotes.plugin.php
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Ah, that worked like a charm. Thanks a million.
You are very Welcome!
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
This worked for the first post in a discussion. However, it puts the Quote button in the Options div in subsequent posts in the same thread. How can I put it in the Meta div, like it appears in the first post?
Try this...
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌