Forum Activity for @michael

michael
@michael
08/14/14 07:05:15PM
7,832 posts

Best Way To Add Reviews on Chart Pages


Using Jamroom

my guess is you copy+pasted the code and a stray character came along for the ride.

remove all the space between the /a and the /div
></a></div>
michael
@michael
08/14/14 06:55:27PM
7,832 posts

Amazon Invests in Acquia (drupal)


Off Topic

Nice for Acquia.

http://www.cmswire.com/cms/web-cms/whose-idea-was-this-amazons-investment-in-acquia-026198.php
Quote: Amazon threw a big chunk of change at Acquia yesterday. Perhaps it wants to stake its claim in the startup that provides commercial services around the open-source Drupal content management system before it goes public, which could happen as soon as later this year or in 2015. .......

updated by @michael: 09/17/14 05:42:04AM
michael
@michael
08/14/14 06:35:04PM
7,832 posts

List Listener


Jamroom Developers

{jrCore_list} is just a smarty way to call jrCore_db_search_items()

so 'db_search_params' is one location you could listen at.

--update--
or 'db_search_items'
updated by @michael: 08/14/14 06:35:56PM
michael
@michael
08/14/14 06:32:52PM
7,832 posts

List Listener


Jamroom Developers

Your wanting to check if the item exists when the jrActions list is displayed? (Not while the item is being deleted.)

You have an action that shows, but the link points to a location that does not exist anymore and you want to remove the action. Is that correct?
michael
@michael
08/14/14 06:26:21PM
7,832 posts

Best Way To Add Reviews on Chart Pages


Using Jamroom

Dazed:....I really need to suck it up and buy phpstorm.....

It has a 30 day free trial.

If you use the EAP's then you can keep using it for ages.
http://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Early+Access+Program

Until version 7 I was always using the EAP's even though I had a license because there were no new features that I was waiting for.
michael
@michael
08/13/14 11:01:08PM
7,832 posts

Sign Up question


Installation and Configuration

The username will be the same as the profile name. This is normal.

If you want to add one user account to many profile accounts, you can do that from the ACP. You can also change the username of the user at the same time.
michael
@michael
08/13/14 10:37:13PM
7,832 posts

Best Way To Add Reviews on Chart Pages


Using Jamroom

Try remaking the changes one at a time until the undesired behaviour appears.

Then you will know what the issue is.

Another technique is to explain it to someone else how to reproduce it. I often found that by the time I was finished typing out what I needed help with that I had figured out where the issue was and didn't need help anymore.
michael
@michael
08/13/14 12:50:27AM
7,832 posts

Subpages in Custom Aparna Modules?


Design and Skin Customization

Not that I'm much of a connoisseur but I like these two:
"The Glenlivet 12year"
http://scotchnoob.com/2010/12/19/the-glenlivet-12-year/

"Wild Turkey 8 year"
http://scotchnoob.com/2011/04/21/wild-turkey-101-bourbon/

And if money wasn't an issue then I'd drink more of:

"The Macallan 12 year"
http://scotchnoob.com/2010/12/27/the-macallan-12-year/
michael
@michael
08/12/14 07:22:24PM
7,832 posts

Best Way To Add Reviews on Chart Pages


Using Jamroom

Another good point to know about is the row system.

a row is made up of 12 columns.

so if you have:
<div class="row">
  <div class="col12"></div>
</div>

That will be 1 col spanning the whole row.

if you have
<div class="row">
  <div class="col6"></div>
  <div class="col6"></div>
</div>

That will be 2 rows that span half the row each.
<div class="row">
  <div class="col3"></div>
  <div class="col6"></div>
  <div class="col3"></div>
</div>

Will be a small column then a larger column then a smaller column.

You have class="col9" but its not wrapped in a 'row' class so it does nothing.
michael
@michael
08/12/14 06:43:00PM
7,832 posts

Best Way To Add Reviews on Chart Pages


Using Jamroom

The issue is that that div above it is floated left.

You need to add a "clear:left" to the div with the id: #jrAudio_166144_18210_comments

so right now that codes is:
<div id="jrAudio_166144_18210_comments">
change it to:
<div id="jrAudio_166144_18210_comments" style="clear:left">
and you will be good.
  671