Forum Activity for @michael

michael
@michael
02/03/16 07:06:54PM
7,832 posts

Problems with login page and Forgot Login page


Using Jamroom

When I try 'forgot' with an email address that is not in the system it returns:
Quote: An account with that email address or user name was not found - please try again
When I try with an email address that DOES exist in the system I get:
Quote: Please check your email account for further instructions on accessing your account
michael
@michael
02/03/16 05:19:32PM
7,832 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

you need to make sure you understand what is happening.
"Why would hiding the div affect the action form, if it does not affect the search form?"

You've decided that because the div is hidden that this is the reason the form is not submitting correctly.

If you do the same thing while the div is not hidden does it work then? If it does then the first decision has been proven to be correct and you can then assume that the issue is that the div being hidden is the problem and proceed from there.

Until you KNOW that that is what needs to be done, dont block out other possibilities. If the div is showing does the form submit?

Its just doing that, eliminating possibilities until its all working like you want it to work.

I would not expect that hiding a div would cause it to cause the form submission to fail.
michael
@michael
02/03/16 05:08:12PM
7,832 posts

Icon Names


Design and Skin Customization

you can find all the core ones at:
/modules/jrCore/img/icons_black/*

--edit--
This thread outlines how skins can add or override icons
https://www.jamroom.net/ultrajam/forum/jamroom-developers/11681/override-icon-sprites-in-skin
updated by @michael: 02/03/16 05:10:53PM
michael
@michael
02/03/16 04:06:52PM
7,832 posts

Share this issue with facebook


Using Jamroom

Looking in your about page:
view-source:http://thenewstalkers.com/about

the meta tags are not there:
<head>
<title>About | The News Talkers</title>
<link rel="shortcut icon" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069.ico">
<link rel="apple-touch-icon-precomposed" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_57.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_72.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_114.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_120.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_144.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_152.png">
<link rel="icon" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_96.png" sizes="96x96">
<link rel="icon" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_195.png" sizes="195x195">
<link rel="icon" href="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_228.png" sizes="228x228">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="http://thenewstalkers.com/data/media/0/0/favicon_1444438069_144.png">

<link type="text/css" href="/cometchat/cometchatcss.php" rel="stylesheet" charset="utf-8">
<script src="/cometchat/cometchatjs.php" charset="utf-8"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:700,400,200"/>
<link rel="stylesheet" href="http://thenewstalkers.com/data/cache/phNewsTalkers/672f41728c04a1a58909fa0feda69557.css" media="screen" />
<script type="text/javascript" src="http://thenewstalkers.com/data/cache/phNewsTalkers/e4b7489f03b517779a0a8733eb05866b.js"></script>
</head>
need to get your page showing the meta tags before facebook will be able to find them.

on firefox the short cut to view the page source is ctrl+u or right click and choose view source.
michael
@michael
02/03/16 04:01:59PM
7,832 posts

Solo Artist Theme


Design and Skin Customization

from the MARKETPLACE tab in your jamroom install. Thats the easiest place to get anything.

If you want the hassle of downloading it then uploading, you can download it from here:
https://www.jamroom.net/the-jamroom-network/networkmarket/90/solo-artist-skin
updated by @michael: 10/19/17 06:44:07PM
michael
@michael
02/03/16 03:55:38PM
7,832 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

The question seams to be more a "How do I code" rather than a specific jamroom question.

This is a good place to learn the basics:
https://www.codecademy.com

The solution to any problem is:
* figure out what is happening
* find out what needs to happen
* implement that

There are tools like 'firebug' that will help you understand what is happening.

Sounds like you are at the point of trying to get the form to submit, but its not. You'll need to find out what IS happening, then what SHOULD happen and change the IS to SHOULD.
michael
@michael
02/02/16 08:13:41PM
7,832 posts

Charting Issue


Using Jamroom

assuming the image is from flashback and the audio page, then the template will be:
/skins/jrFlashback/music_chart_row.tpl SO
ACP -> SKINS -> FLASHBACK -> TEMPLATES -> music_chart_row.tpl

and its this piece of code that outputs the (123):
{if $item.chart_change > 0}
  ({$item.chart_change})
{else}
  (-)
{/if}

Comment that out by wrapping it in smarty comment syntax and it will not show.
{* we're commenting this part out because we dont want it.
{if $item.chart_change > 0}
  ({$item.chart_change})
{else}
  (-)
{/if}
*}
michael
@michael
02/02/16 08:09:11PM
7,832 posts

Share this issue with facebook


Using Jamroom

cant tell without looking at the code, got a url.
michael
@michael
02/02/16 08:05:42PM
7,832 posts

Mutual Follow "Friends" button - plus Message


Design and Skin Customization

(Feel like I need to respond because its on the jamroom forums, but have never tried to do what your doing, so don't have the answers and couldn't get the answers without doing it then telling you how it was done)
Seams like your trying to do customizations to cometchat. Try firing things from the console of your browser and see what results you get. or alternatively look at their code to see whats happening. Or look in their database tables to see what they join on.

Those could provide clues as to what is the correct key for that function.
michael
@michael
02/01/16 01:10:08PM
7,832 posts

Shared Posts Not Appearing on Profile Page Timeline


Design and Skin Customization

PatriaCo:....However it does not show up on the profile that did the sharing....

It does show up on the profile that did the sharing, just not to the owner of the profile. Everyone else sees it.

There is a note in the code that reads:
        // If we are viewing our OWN time line, we don't want to see items we have shared
        // with our followers, otherwise we get double entries in the time line
so it was designed this way, need to have a talk to see if this is still the desired format.
  433