Posted May 8, 20169 yr Hi does anybody know were you can change the link redirect to new page? This is the redirect option when creating new forum.
May 8, 20169 yr I dont quite understand what you mean ? If you mean the forum re-directs to another URL then its in ACP > Community > Forums > Then either create new and click re-direct OR Click the pencil icon on the RH side of the forum you want to edit and the re-direct is in there Edited May 8, 20169 yr by Cloud 9
May 8, 20169 yr Author When you create a redirect direct link as apposed too a discussion or questions forums etc. When you create these and you click on the link redirect it doesn't open new window but directs you away from your forum. Edited May 8, 20169 yr by karld
May 8, 20169 yr Replace this link with a link to the new address. for example Rediret URL : http://www.yoursait/forums/your forum you want/
May 8, 20169 yr Author Hi I have a couple of links already setup but when you click on them they take you to the link but not via a new page i.e not a blank page
May 8, 20169 yr You want this redirekt in a new window? There is no such option. Maybe someone developer will create a plugin .
May 8, 20169 yr Author Hi Adlago I know there isnt an option, i was wondering were this can be edited so redirects to a new window
May 9, 20169 yr 21 hours ago, karld said: Hi does anybody know were you can change the link redirect to new page? This is the redirect option when creating new forum. 19 hours ago, karld said: Hi Adlago I know there isnt an option, i was wondering were this can be edited so redirects to a new window
May 9, 20169 yr You could do this with a template edit. edit the forumRow template find... {{if $forum->password && !$forum->loggedInMemberHasPasswordAccess()}} <a href="{$forum->url()->setQueryString( 'passForm', '1' )}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="forum_requires_password"}'>{$forum->_title}</a> {{else}} <a href="{$forum->url()}">{$forum->_title}</a> {{endif}} replace with... {{if $forum->password && !$forum->loggedInMemberHasPasswordAccess()}} <a href="{$forum->url()->setQueryString( 'passForm', '1' )}" data-ipsDialog data-ipsDialog-size='narrow' data-ipsDialog-title='{lang="forum_requires_password"}'>{$forum->_title}</a> {{else}} <a href="{$forum->url()}"{{if $forum->redirect_on}} target="_blank"{{endif}}>{$forum->_title}</a> {{endif}} Oh Adriano beat me to it. Yes if a plugin exists, use that.
Archived
This topic is now archived and is closed to further replies.