Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
February 3, 20168 yr Author 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?
February 4, 20168 yr Author 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.
February 4, 20168 yr 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, 20168 yr by newbie LAC
February 4, 20168 yr Author 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 ?
February 4, 20168 yr 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
February 4, 20168 yr Author 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; }, ) ) );
February 4, 20168 yr 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.
February 4, 20168 yr Author Just now, newbie LAC said: Answered on your PM. And that fixed it! Thank you! Will update the file.
February 4, 20168 yr Author 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.
March 17, 20168 yr when copying polls does it maintain the current votes or does it allow members to vote again in the new topic?
March 17, 20168 yr Author 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).
July 14, 20168 yr 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
July 14, 20168 yr Author 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.
October 21, 20168 yr Author What's New in Version 1.0.4: Added abilitity to copy topic prefix and tags.
May 19, 20177 yr 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
May 19, 20177 yr Author 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.
July 22, 20177 yr Author What's New in Version 1.1.0: IPS 4.2 compatibility: now you can copy topics to Clubs.
December 15, 20177 yr Author What's New in Version 1.1.1: Fix error: it was copying only first page of posts
February 12, 20186 yr 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,
February 12, 20186 yr Author 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.
February 12, 20186 yr 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.