Forum Activity for @ilovehousemusic

iLoveHouseMusic
@ilovehousemusic
04/10/14 08:17:40PM
517 posts

referral program


Suggestions

I thought @Michael had an affiliate module on JR4? Can it be based loosely off that?
iLoveHouseMusic
@ilovehousemusic
04/10/14 05:49:44PM
517 posts

Play list problems


Using Jamroom

@izhmel - I'm able to play those playlists. Chrome on Mac.
iLoveHouseMusic
@ilovehousemusic
04/10/14 08:01:33AM
517 posts

what's the proper google Analytics ID syntax?


Installation and Configuration

@Brian - ah good point. The language should probably be "Tracking ID" since there is also a setting for "Account ID" within google analytics, but that's a good way to validate it.
iLoveHouseMusic
@ilovehousemusic
04/09/14 04:01:27PM
517 posts

what's the proper google Analytics ID syntax?


Installation and Configuration

For the module settings,
The label says "Account ID" so I enter 12345678 - which is found under google analytics > account settings >

Or should it be the Tracking ID, which is actually "UA-12345678-1"?

I'm not seeing stats in my Analytics dashboard. Thanks!
updated by @ilovehousemusic: 05/15/14 03:31:46AM
iLoveHouseMusic
@ilovehousemusic
04/09/14 03:31:30PM
517 posts

www1 from old JR4 cluster setup - htaccess or DNS edit?


Installation and Configuration

Hello,
My old JR4 site was clustered, and there are still some links on the internet that point to the old "www1.domain.com/username" structure.

what htaccess or DNS edits can I make such that if a link with "www1" is clicked, my new JR5 site will pick that up, and convert it from "www1" to "www"?

For example, here's an old link:
JR4 - http://www1.ilovehousemusic.com/Michelle-Sanz/

And here's the JR5 link:
JR5 - https://www.ilovehousemusic.com/Michelle-Sanz/

But - You'll see when it redirects to the JR5 site, the URL changes to what you see in the attached file.

Thank you for your time,
Brian



Screen Shot 2014-04-09 at 3.28.26 PM.png Screen Shot 2014-04-09 at 3.28.26 PM.png - 61KB

updated by @ilovehousemusic: 05/11/14 09:01:01PM
iLoveHouseMusic
@ilovehousemusic
04/09/14 02:12:44PM
517 posts

Question about text string for custom form field in Audio Form


Design and Skin Customization

Ah ok that works now. I guess I didn't update both the create and update form. I am able to copy/paste when it's set to "editor" and it retains the carriage returns. Thanks!
iLoveHouseMusic
@ilovehousemusic
04/09/14 02:06:15PM
517 posts

Question about text string for custom form field in Audio Form


Design and Skin Customization

I thought I tried that but I will check it again right now =)
iLoveHouseMusic
@ilovehousemusic
04/09/14 12:56:47PM
517 posts

Question about text string for custom form field in Audio Form


Design and Skin Customization

Question,
I have created a custom form field in the Audio form called "audio_desc" so that users of my site can add tracklists and audio descriptions to their audio.

I can display the text on the audio_details tpl using {$item.audio_desc} no issues there.

But, what I want to do is give them the ability to copy/paste (say) a tracklist from a Notepad or Word document into that textarea box. That list will contain carriage returns, in the case where they are typing out a tracklisting.

What happens is, when that is entered into the textarea box, it displays with carriage returns just fine. After saving and viewing the audio_details, it puts everything in one line (removes the carriage returns).

I tried the following validations: a string, string with printable chars... , string numbers, letters, spaces...
I tried the following types: editor, textarea

When I use the at the end of each line, it successfully does a carriage return, which tells me the textarea is using HTML.

How can I achieve a simple way to have the user copy/paste text into that textarea without having to use HTML, but allow it to retain the characteristics of the source text (specifically carriage returns).

TIA!
Brian
updated by @ilovehousemusic: 05/15/14 03:31:08AM
iLoveHouseMusic
@ilovehousemusic
04/07/14 01:35:12PM
517 posts

fixed height div for social login box


Design and Skin Customization

MAD©:
If you truly want to edit your site with full control, You should clone the skin and edit the TPL and CSS exactly the way you want it.
Firebug as @michael said will just guide you to what you should edit.
But if you are using a template that may/will be updated you either clone the skin with no fear of losing your updates
OR
Add your own css file at the end of the css file calls in the templates include.php file which you will have to add your call in that file on any update if that is modified
(Template edits should be added in the ACP if this is the case)

Eg. Your Current Skin
Edit in the skin folder the include.php file and add something like

    jrCore_register_module_feature('jrCore','css','YourSkinName','myown.css');

Add that right before the

  return true;
}

Then you can add whatever styling or overrides you want with very little effort to add one line of code (as above ) into the include if you update as the stacking order should put it last.

My site skin is cloned. I like the approached you've shown here as well. Thanks!
  7