Change forum rss link from https to http

BassMan

Well-known member
Hi,

I would like to change forum rss link from https to http. I redirect all my links to https, but would like to exclude this one.

Example:

from this:
Code:
https://xenforo.com/community/forums/-/index.rss

to this:
Code:
http://xenforo.com/community/forums/-/index.rss

Is there any way to do it?

Thank you,
BassMan
 
Hi,

if anyone knows the solution I've still haven't found the right one.

Thanks in advance.

BassMan
 
In template node_forum_level_2
the relevant code is this,

Code:
{xen:link forums/index.rss, $forum}

Unsure what you'd change it to, you can't just replace xen:link with http://domain.com I think.
 
The point is I'm redirecting http links to https via Cloudflare. I just want that rss link not to have https.

I need to for some other service to work right.
 
Yeah, the best I can do is this,

Code:
<a href="http://domain.com/{$forum.node_id}/index.rss" class="tinyIcon feedIcon" title="{xen:phrase rss}">{xen:phrase rss}</a>
        </div>

{$forum.node_id} grabs only the ID, not the name. URL's look like this -> http://domain.com/16/index.rss

it doesn't include the forum name.
 
Top Bottom