Media tab resolving to weird place!

When I click on the media tab, I get this…
I’m using the free Attitude theme. Any thoughts?

Attachment Link(s):

https://rtcamp.com/wp-content/uploads/rtMedia/topics/58720/2014/03/2014-03-11-02_24_10-BluCreativ--Media--Profile-_-Radiation-Oncology-Forums.jpg

Try applying solution suggested here -> https://rtcamp.com/rtmedia/docs/developer/templating-system/theme-media-tab/ It will solve the problem.

Thank you for the response Ritesh! I applied the fix, however it seems to be using a post-style template and nothing on it works, I click on Options and nothing pops up and the Upload link is not there. This is what I see...

Attachment Link(s):

https://rtcamp.com/wp-content/uploads/rtMedia/topics/61970/2014/03/2014-03-11-13_19_31-BluCreativ--Media--Profile-_-Radiation-Oncology-Forums.jpg

Oh, if you want to see the site, it's http://radoncforums.com/. I set up a guest account:

User: GuestUser Pass: GuestInvite12!

@BluCreativ, That function just returns the standard page template of your theme. Which theme you are using?

it's the free theme on wordpress.org - attitude.

@BluCreativ, Apply this solution instead in your theme's functions.php

function rtmedia_main_template_include($template, $new_rt_template) { global $wp_query; $wp_query->is_page = true; return get_page_template(); } add_filter('rtmedia_main_template_include', 'rtmedia_main_template_include', 20, 2);

Mehul, THANK YOU!!! That fix worked! You rock! You should post it on the page that Ritesh referenced.

Hi, Glad to know that your issue has been fixed.