Forum Activity for @michael

michael
@michael
12/14/15 06:00:28PM
7,832 posts

How to make lists?


Using Jamroom

and that exists in your datastore in the audio_file_genre field? Because your query should be working to return:

* audio items that do not have 'interview' in the 'audio_file_genre'. There will only be 1 result returned for each unique value in the audio_file_artist value.
michael
@michael
12/14/15 05:53:59PM
7,832 posts

tweak the Like/Dislike module


Using Jamroom

(screenshot) You're wanting to change the text? Its changeable via the LANGUAGE tab of the like module.
ACP -> ITEM FEATURES -> LIKE IT -> LANGUAGE

Not sure where if that is the question or not. If its not the question could you let me know where to see the "icky dropdown link" please.
screenshot_like_dislike.png screenshot_like_dislike.png - 123KB
michael
@michael
12/14/15 05:13:10PM
7,832 posts

How to make lists?


Using Jamroom

What is audio_file_genre? Are you sure there is one of them that contains the word 'interview'?

I don't have that datastore field here.

Start with simple queries, check they work, then build on them to filter down to what you want.
michael
@michael
12/11/15 10:39:23PM
7,832 posts

Grid of Videos


Design and Skin Customization

Great. I'm going to mark this solved as I believe we are finished on this topic. Let me know if I've overlooked something here. For other new problems, open a new thread with a nice descriptive name that others will look at when they search for things :)
michael
@michael
12/11/15 10:36:16PM
7,832 posts

Generating cover from mp3.


Using Jamroom

Check with your hosting company, they should have backups of your entire system.

Yes jamroom has its own tool to do backups yourself:

"Db and System Backup"
https://www.jamroom.net/the-jamroom-network/documentation/modules/1510/db-and-system-backup

But your hosting company probably has their backups too. On Jamroom Hosting you can restore by yourself by going to the "Restore From Backup" tool in your HOSTING location. (screenshot)
So check with them, we store each day for the past week, and another one about a month old.

So check that out first before taking any more time on other things.

If that proves an impossibility we can move forward with sorting your system out.

screenshot_backup.jpg screenshot_backup.jpg - 155KB
michael
@michael
12/11/15 01:56:36AM
7,832 posts

Grid of Videos


Design and Skin Customization

Right, so the next thing on this page:
http://animatedfilmmakers.com/devilsangelsanddating/videos

is get rid of the double navigation bars at the bottom.

The most recent code I have to understand what your asking for is this one:
  {jrSeamless_list modules="jrVideo,jrYouTube,jrVimeo" order_by="_created numerical_desc"  pagebreak=30 page=$_post.p pager=true template=$tpl}

Is that the code you're using? If so, try pager=false to see if it gets rid of one of the two bars. If not, let me know the code your using for the jrSeamless_list call please.
michael
@michael
12/11/15 01:53:32AM
7,832 posts

Grid of Videos


Design and Skin Customization

:) good stuff. Well done.
michael
@michael
12/10/15 05:54:32PM
7,832 posts

foxycart: unknown gateway error


Using Jamroom

No. Items are added to the cart, sent to foxycart. Jamroom does not record that someone put something in a cart.

When foxycart sends us a notification that something was purchased, that includes what was purchased so we then add that to the user who purchased it.

This happens behind the browser scenes so it doesn't matter what the user clicks on, if they return here or not.

--edit--
If you know the steps to recreate the issue, I can check it out though.
updated by @michael: 12/10/15 05:56:06PM
michael
@michael
12/10/15 05:03:14PM
7,832 posts

Question Concerning autoplay=true


Using Jamroom

its ok to put autoplay="true" into your jrCore_list function as a parameter, just be aware about what happens.

By putting it in there:
{jrCore_list module="jrAudio" search1="_profile_id != 0" order_by="_created desc" limit="1"  autoplay=true}

it will be available in the row template as {$autoplay}, or it might be $_params.autoplay, check {debug} to be sure.

So from there, if you want to autoplay the media player that is in the row template you cuan use autoplay=$_params.autoplay.
michael
@michael
12/09/15 08:31:08PM
7,832 posts

Google ads to Jamroom skin


Design and Skin Customization

Take a look at the GENERATED source code and I think you'll see a few things you want to fix up.

ie:
* go here http://dev.serveion.com/wowmusic/
* (in firefox) ctrl+u to see source code

There are quite a few locations shown in red, that usually means an error.

Some of them are stuff like this:
<!--<script type="text/javascript" src="/skins/wmWowMusic/js/lib-1-9-1.js"></script><!-- lib Js -->
Which has 2 opening tags for an html comment, but only 1 closing tag. that should be fixed up.

Further down there is:
 <h1 id="logo"> <a href="index.html"> <img src="http://dev.serveion.com/wowmusic/skins/wmWowMusic/img/logo.jpg"></h1>
Which has an opening 'a href' but no closing tag. That should be fixed up.

The part your probably most interested in related to the google code is down around line 1952 ish. (screenshot)

You have a script tag open, then some html inside that open script block.

If you can get the code that google says "Use this code to show adsense" in tact out to the source code, then you'll probably fix it.
screenshot_javascript_issue.png screenshot_javascript_issue.png - 103KB
  454