Delete conversations

Delete conversations [Paid] 1.3

No permission to buy ($35.00)

AndyB

Well-known member
AndyB submitted a new resource:

Delete conversations - Delete conversations by date.

Premium upgrade:

This XF2 add-on along with the entire collection can be purchased for $25.00 USD. Your Premium upgrade will allow you to download as many XF2 add-ons as you like for one year. Please see the entire collection located in the Resources area at this URL:

https://www.xf2addons.com/

Note: all my XF1 add-ons are still 100% free and are supported by donations.

Description:

Delete conversations by date.

(Example of Options page)...

Read more about this resource...
 
can you implement a delete button for each convo that has usergroup permissions , it would be more effective since we only have choice to leave a convo currently.
 
We cant get this to work, we installed, set preferences buy dont understand
  1. Add "deleteconversations" to your forum URL in the browser.
 
Delete conversations v1.3 changes:

Now using finder for performing database queries.

Delete conversations v1.2 changes:

Now using finder for performing database queries.

???

v1.3 --> Now using finder for performing database queries.
v1.2 --> Now using finder for performing database queries.

;)
LG: Tammy
 
Small problem :
I installed the add-on but when I launch it I get an error with the word:
"This add-on requires the xf_attachment_data.attach_count value for each row to be a value of 1. "

Tips ?

Eoghan
 
Also:
This add-on requires the xf_attachment_data.attach_count value for each row to be a value of 1.

Code:
        // get results
        $finder = \XF::finder('XF:AttachmentData');
        $results = $finder
            ->where('attach_count', '=', 1)
            ->fetchOne();

        // check condition
        if (!empty($results))
        {
            return $this->error(\XF::phrase('deleteconversations_attach_count_error'));
        }



Find me one row from xf_attachment_data where attach_count=1;
if result => throw error


I really have no idea, why this should be here.
 
Last edited:
Just to say it again:

This add-on requires the xf_attachment_data.attach_count value for each row to be a value of 1.

Why? I dont have attachments in any conversation. Why the addon cares for attachments in this situation?
 
Any solution for this problem, I have it also:

This add-on requires the xf_attachment_data.attach_count value for each row to be a value of 1.
 
Top Bottom