Forum Activity for @michael

michael
@michael
05/26/17 05:30:58PM
7,832 posts

How to re-activate archived profile ?


Using Jamroom

Deleted things are found in the RECYCLE BIN.
DASHBOARD -> RECYCLE BIN
undelete.jpg undelete.jpg - 177KB
michael
@michael
05/25/17 11:24:13PM
7,832 posts

Soundcloud


Installation and Configuration

Does your Client-ID have a - in it?

Mine looks like this:
85c34a45h12y78p23n23o343w12r5220

if yours has a - in it it would fail. all the keys I've seen so far do not have a - or any characters other than letters and numbers.
michael
@michael
05/25/17 10:30:44PM
7,832 posts

Issue tracker resolution field strips out code


Using Jamroom

I had the same thing happen with a different module recently. Everything I set was pointing to it should be showing, it was showing for everyone I asked, but for me it was off. I'll do some testing around possible causes.
michael
@michael
05/25/17 04:35:39AM
7,832 posts

Page Quota Setup


Jamroom Developers

Your modules take control of a url at site level.

site.com/audio

Is controlled by the audio module. By default the page that shows in that location is:
/modules/jrAudio/index.tpl

You dont have to build a profile component for your module if you don't want to.

Sure, you can add a smarty function into your module that can check the access to any page via any criteria you like.

eg: into your modules include.php put
function smarty_function_xxYourModule_check_access($params, $smarty){.......

Then into any template you can call that function with {xxYourModule_check_access} and do whatever before showing the page.

Docs: "Defining your own smarty function"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1569/defining-your-own-smarty-function

You can then define any sub-pages you like
site.com/audio/elephants

will first look for a function in jrAudio/index.php called view_jrAudio_elephants() to fire on that URL.

If it doesn't find anything, then it will look for any modules that define a 'magic view' for 'elephants', if it doesn't find it it will search for other things before getting to 404 Not Found.

If you dont want to use the /modules/xxYourModule/templates/index.tpl to define what happens on your modules base url, you can define what happens there by a function in index.php called view_xxYourModule_default() which will fire if index.tpl doesnt exits.

You have a lot of choices for how you want it to flow.
michael
@michael
05/25/17 04:26:50AM
7,832 posts

Issue tracker resolution field strips out code


Using Jamroom

for me its in the profile menu. Do you see the same as this?
tracker_location.jpg tracker_location.jpg - 309KB
michael
@michael
05/25/17 04:18:56AM
7,832 posts

Disqus Module Acting Strange?


Using Jamroom

Yeah, your page has the wrong code for sure:
http://metaldevastationradio.com/thebeast/blog/596/did-chris-cornell-kill-himself-or-was-he-murdered
                                       
<div class="item">
    <div id="disqus_thread"></div>
    <script type="text/javascript">
        var disqus_shortname = 'metal-devastation-radio';
        var disqus_developer = 1;
                var disqus_identifier = 'jrDisqus_596';
                (function() {
            var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
            dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
            (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
        })();
    </script>
    <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
    <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
That var disqus_identifier = 'jrDisqus_596'; should be
var disqus_identifier = 'jrBlog_596';
for the blog page.

I'll setup a dev environment to test whats happening. If you've done nothing to the templates that's going to effect others.
michael
@michael
05/24/17 07:12:09PM
7,832 posts

Disqus Module Acting Strange?


Using Jamroom

Docs: "Disqus Comments"
https://www.jamroom.net/the-jamroom-network/documentation/modules/1348/disqus-comments

the number will make no difference if the template is setup correctly because the module's name will be an identifier.
{jrDisqus_comments disqus_identifier="jrBlog_`$item._item_id`"}
michael
@michael
05/23/17 06:01:44PM
7,832 posts

How to remove native comments?


Using Jamroom

nice! Can use the same method for pretty much anything you want to locate, so good to know.

Well done. :)
michael
@michael
05/22/17 09:50:10PM
7,832 posts

Issue tracker resolution field strips out code


Using Jamroom

Tried to reproduce this with jrTracker 1.2.6 and the current BETA core and couldn't. Marking it as 'completed', but if its still an issue, just say.
  222