Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Adriano Faria Posted February 3, 2016 Author Posted February 3, 2016 46 minutes ago, Natsüs said: Hello I still have this problem yet, I'm in version 1.0.2 Could you solve it? Again: On 12/10/2015 at 7:49 PM, Adriano Faria said: That one is weird and honestly I don't know what to say. My plugin uses the $form->node object type (default made by IPS) to list those type of things. Is this also happening when you try to move a topic, for example ? There are appears the same dropdown. Again: my plugin uses a feature frim IPS. If you have this issue on my plugin, it has to happen also when you try to move a topic. Can you confirm it?
Natsüs Posted February 4, 2016 Posted February 4, 2016 Hello Not this doesn't happen when I use your plugin to make a copy
Adriano Faria Posted February 4, 2016 Author Posted February 4, 2016 Just now, Natsüs said: Hello Not this doesn't happen when I use your plugin to make a copy Send a PM with credentials to your board with ACP access so I can take a look.
newbie LAC Posted February 4, 2016 Posted February 4, 2016 (edited) On 13.10.2015 at 6:45 AM, DanInMS said: I just get a spinning icon and it never displays the child forum sections underneath. One of users had the same problem but for other IPS app. I fixed via PM. Edited February 4, 2016 by newbie LAC Adriano Faria 1
Adriano Faria Posted February 4, 2016 Author Posted February 4, 2016 I can reproduce it but I don't see any error. 'permissionCheck' => function ( $forum ) { return $forum->sub_can_post and !$forum->redirect_url; }, Just now, newbie LAC said: One of users had the same problem but for other app (Pages). I fixed via PM. What have you done ?
newbie LAC Posted February 4, 2016 Posted February 4, 2016 Just now, Adriano Faria said: I can reproduce it but I don't see any error. 'permissionCheck' => function ( $forum ) { return $forum->sub_can_post and !$forum->redirect_url; }, What have you done ? Show the full code for forum selector
Adriano Faria Posted February 4, 2016 Author Posted February 4, 2016 Just now, newbie LAC said: Show the full code for forum selector $form->add( new \IPS\Helpers\Form\Node( 'ct_forum', isset( $data['ct_forum'] ) ? $data['ct_forum'] : NULL, TRUE, array( 'url' => \IPS\Http\Url::internal( "app=forums&module=forums&controller=topic&id={$topic->tid}", 'front', 'forums_topic' ), 'class' => 'IPS\forums\Forum', 'permissionCheck' => function ( $forum ) { return $forum->sub_can_post and !$forum->redirect_url; }, ) ) );
newbie LAC Posted February 4, 2016 Posted February 4, 2016 Just now, Adriano Faria said: $form->add( new \IPS\Helpers\Form\Node( 'ct_forum', isset( $data['ct_forum'] ) ? $data['ct_forum'] : NULL, TRUE, array( 'url' => \IPS\Http\Url::internal( "app=forums&module=forums&controller=topic&id={$topic->tid}", 'front', 'forums_topic' ), 'class' => 'IPS\forums\Forum', 'permissionCheck' => function ( $forum ) { return $forum->sub_can_post and !$forum->redirect_url; }, ) ) ); Answered on your PM.
Adriano Faria Posted February 4, 2016 Author Posted February 4, 2016 Just now, newbie LAC said: Answered on your PM. And that fixed it! Thank you! Will update the file.
Adriano Faria Posted February 4, 2016 Author Posted February 4, 2016 What's New in Version 1.0.3: Fixed error (looping) when expanding subforums on form selector Tks @newbie LAC. 1 hour ago, Natsüs said: Hello Not this doesn't happen when I use your plugin to make a copy Your board is updated and working.
1on1Sadie Posted March 17, 2016 Posted March 17, 2016 when copying polls does it maintain the current votes or does it allow members to vote again in the new topic?
Adriano Faria Posted March 17, 2016 Author Posted March 17, 2016 2 hours ago, 1on1Sadie said: when copying polls does it maintain the current votes or does it allow members to vote again in the new topic? If the source topic has a poll, it will display an option asking if you also want to copy the poll (not the votes, only questions and choices).
EricT Posted July 14, 2016 Posted July 14, 2016 Hi, Moderators of my community asked me if it is possible to check by default the " Copy topic replies? " box ? Could you help me to do that ? Thank you
Adriano Faria Posted July 14, 2016 Author Posted July 14, 2016 30 minutes ago, EricT said: Moderators of my community asked me if it is possible to check by default the " Copy topic replies? " box ? Could you help me to do that ? You need to edit the hook file. The easiest way to go is: download the plugin again. Open its XML and find: if ( $tabReplies ) { $form->addTab( 'ct_topic_replies' ); $form->add( new \IPS\Helpers\Form\YesNo( 'ct_copy_replies', FALSE, FALSE, array( 'togglesOn' => array( 'ct_topic_replies_date' ) ) ) ); $form->add( new \IPS\Helpers\Form\YesNo( 'ct_topic_replies_date', TRUE, FALSE, array(), NULL, NULL, NULL, 'ct_topic_replies_date' ) ); } Change to: if ( $tabReplies ) { $form->addTab( 'ct_topic_replies' ); $form->add( new \IPS\Helpers\Form\YesNo( 'ct_copy_replies', TRUE, FALSE, array( 'togglesOn' => array( 'ct_topic_replies_date' ) ) ) ); $form->add( new \IPS\Helpers\Form\YesNo( 'ct_topic_replies_date', TRUE, FALSE, array(), NULL, NULL, NULL, 'ct_topic_replies_date' ) ); } Save the XML and reinstall on your board.
Adriano Faria Posted October 21, 2016 Author Posted October 21, 2016 What's New in Version 1.0.4: Added abilitity to copy topic prefix and tags. BomAle and openfire 2
NNZF.IO Posted May 19, 2017 Posted May 19, 2017 Hello Adriano, Is it possible to select which member groups can use the copy mod? Because I have a member group that is not moderator team, but would need to use this mod. Thanks for your help
Adriano Faria Posted May 19, 2017 Author Posted May 19, 2017 4 hours ago, N3wzFrance said: Hello Adriano, Is it possible to select which member groups can use the copy mod? Because I have a member group that is not moderator team, but would need to use this mod. Thanks for your help No, it's a moderator permission.
Adriano Faria Posted July 22, 2017 Author Posted July 22, 2017 What's New in Version 1.1.0: IPS 4.2 compatibility: now you can copy topics to Clubs.
Adriano Faria Posted December 15, 2017 Author Posted December 15, 2017 What's New in Version 1.1.1: Fix error: it was copying only first page of posts
TDBF Posted February 12, 2018 Posted February 12, 2018 Some bugs and fixes for this please. Bug: The modal window: Extra Data Tab. Missing language string for 'ct_copy_tags' Possible Changes: When Copying 'Polls' would it be possible to remove the 'Poll Vote Counts' from the newly created topic please? When copying a Topic, the start date (forums_topics start_date) is from the original topic, and the new Topic isn't updating this field to state that this a new topic. So, if you copy a topic from three months ago, it doesn't show as a new topic. Kind Regards,
Adriano Faria Posted February 12, 2018 Author Posted February 12, 2018 5 minutes ago, TDBF said: When copying a Topic, the start date (forums_topics start_date) is from the original topic, and the new Topic isn't updating this field to state that this a new topic. So, if you copy a topic from three months ago, it doesn't show as a new topic. There’s a setting for the topic and posts (replies) dates: Make sure you’re using it right. I’ll check the language string tomorrow.
TDBF Posted February 12, 2018 Posted February 12, 2018 1 minute ago, Adriano Faria said: There’s a setting for the topic and posts (replies) dates: Make sure you’re using it right. I’ll check the language string tomorrow. As you can see, I don't have that option in the Topic Replies Tab. This is what I see in the language tab. I am going to uninstall and re-install to see if that corrects the issues. I will let you know if that fixes the issues. Thanks for the quick response.
Recommended Posts