Forum Activity for @michael

michael
@michael
04/20/17 07:39:55PM
7,826 posts

my Premium Cometchat disappeared- related to SSL/https changes?


Using Jamroom

sure it could be related. First thing to do is to use ctrl+u to view the source code of one of your pages where cometchat should be seen and see if the code to get it there is coming out or not.

I cant see anything "cometchat" in your home page.

There will be some javascript somewhere calls it into existence. Need to figure out where that should be and get it back there.
michael
@michael
04/20/17 07:35:55PM
7,826 posts

Audio Download on or off


Installation and Configuration

Adding a checkbox will make nothing different on your site. Its just a checkbox. What it will do is when you look at the details for that audio item, you will have a new variable and it will either be 'on' or 'off'.

You can use {debug} in the template you're interested in to see if that checkbox is there or not.

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1477/debug

In the template where the download button is shown it will be shown because of this line:
{jrCore_item_detail_buttons module="jrAudio" field="audio_file" item=$item}

You want to check the state of your checkbox, then hide/show the button from there.

Example, if you wanted to turn off the audio download button you could use this code

{jrCore_item_detail_buttons module="jrAudio" field="audio_file" item=$item exclude="jrAudio_item_download_button"}

and the button wont show, so to check the state of your checkbox first, then

{$ex_dl = ''}
{if isset($item.audio_download_checkbox) && $item.audio_download_checkbox == "off"}
   {$ex_dl = 'jrAudio_item_download_button'}
{/if}
{jrCore_item_detail_buttons module="jrAudio" field="audio_file" item=$item exclude=$ex_dl}


^^ in that code above im guessing at what you called your checkbox. I dont know if you called it 'audio_download_checkbox' or not in the Form Designer. Use the name you called it.
updated by @michael: 04/20/17 07:36:23PM
michael
@michael
04/20/17 07:18:13PM
7,826 posts

Blocking Pinterest.


Using Jamroom

thats it? this is easy.

ACP -> SKINS -> (your skin) -> TEMPLATES -> meta.tpl -> MODIFY

at the bottom of that you will see:
</head>
add your line in there so it reads like this
<meta name="pinterest" content="nopin" />
</head>
then SAVE CHANGES

After you save the changes, you're going to need to activate the changed template, so click on CANCEL or on TEMPLATES to go back to the file list page.

Then check the checkbox next to meta.tpl and scroll to the bottom and SAVE CHANGES.

You can test to see if that code is coming out in your pages by going to the top page of your site an use ctrl+u to "view the page source". look at the code to see if your new line is coming out, if it is, we're done. If it isn't refresh the caches.
michael
@michael
04/20/17 07:12:05PM
7,826 posts

not seeing lock


Using Jamroom

looks like you figured it out:
ibrsm.jpg ibrsm.jpg - 126KB
michael
@michael
04/20/17 01:10:33AM
7,826 posts

Firefox Warning when Logging In


Using Jamroom

the comslider iframe houses a url that is http:// not https:// so it needs changing.

Looking on their website:
http://www.comslider.com/

I can see on the bottom left: "My website is HTTPS secure". Might need to check that for your widget. (screenshot)
comslider.jpg comslider.jpg - 176KB
michael
@michael
04/20/17 01:04:23AM
7,826 posts

Firefox Warning when Logging In


Using Jamroom

can you check that penywhistle site has
ACP -> MODULES -> USERS -> USERS -> GLOBAL CONFIG -> SITE SETTINGS -> Create SSL URLs

checked please. There are a couple of src="http://....." links in your home page that I would expect not to see. Expected them to be https://.....
michael
@michael
04/19/17 08:55:12PM
7,826 posts

Firefox Warning when Logging In


Using Jamroom

change the http to https.

see if that fixes it.
........src="http://commondatastorage.googleapis.com/comslider/target/users.......
to
........src="https://commondatastorage.googleapis.com/comslider/target/users.......
michael
@michael
04/19/17 08:18:27PM
7,826 posts

Audio Download on or off


Installation and Configuration

These solved questions seam related:
https://www.jamroom.net/the-jamroom-network/forum/new_posts/48645/block-audio-download-for-guests
https://www.jamroom.net/the-jamroom-network/forum/new_posts/33671/how-to-allow-free-audio-file-downloads-only-to-logged-in-members/search_string=downloads

An plan for what you are wanting to is:
* Use the Form Designer to add a checkbox to the CREATE/UPDATE form of the audio module.
* Edit the templates to adjust the download button to show or not show based on whether that checkbox is checked.
  233