Forum Activity for @michael

michael
@michael
02/25/15 07:52:38PM
7,832 posts

New "Kickbox" Email Validation module


Ning To Jamroom

Strumelia:....how can I download it in order to sort and use the info in a spreadsheet or database form on my own computer? (like for instance using excel to search for duplicate names) ?....

There currently is no tool to export your database into a .csv file. When the time arises that you need it, I'm sure we can get something put together to get it done. Just need to know what format you're after.
michael
@michael
02/25/15 01:40:15PM
7,832 posts

Batch Edit - 1 Suggestion


Ning To Jamroom

Since you're going through a ton of stuff with batch edit, perhaps a solution better than a lightbox is a select choice on the column select page:

Image size
* small
* medium
* large
* xlarge

To cut down on the amount of mouse movement and clicking since there will be a ton of stuff.
michael
@michael
02/25/15 12:37:20AM
7,832 posts

Multi-language Support


Using Jamroom

Check out the new Table of Contents feature just added to the docs today:

"Table of Contents"
http://www.jamroom.net/the-jamroom-network/documentation/contents

The search from there covers just the docs. :)

In answer to the question, yes it is possible to translate Jamroom into other languages:

"Translate Jamroom into another language"
http://www.jamroom.net/the-jamroom-network/documentation/development/541/translate-jamroom-into-another-language

And it is possible for the user to choose what language they want to see Jamroom in. (check out the "Adding Flags to change the language" section in that same doc.)

This will get the interface of your site switching languages.

The trickey bit will come when you start to decide what content you want to show, as content will be either entered in one language or another, not both.

eg:
* User A writes a blog post for their profile, They do it in english. Do you want to show that post when the user has the interface in a language other than english or not?

There are several ways to approach the problem, most of them involve the Form Designer:

"Using the Form Designer"
http://www.jamroom.net/the-jamroom-network/documentation/getting-started/1275/using-the-form-designer

You could either add another text area to the blogs so that 2 editors show and show one to one language and another to another language and only show them if they are filled in.

OR
You could add a language selector to the blog posts that indicates what language the blog post is in.

OR
You could use the language setting of the user who added the post and only show posts from users who have their account set to the same language.


OR
..... I have other ideas too, but how you want to do it is really up to you.

Ideally, what would be the best case scenario for you?
michael
@michael
02/24/15 11:04:58PM
7,832 posts

Is There A Way To Empty The Activity Feed Cache?


Ning To Jamroom

There will be shortly. A module "Batch Edit" is due for release in the next day or so. When that comes out you can update datastore items en mass and delete en mass too.
michael
@michael
02/24/15 08:19:08PM
7,832 posts

[bug report] ratings not taking


Design and Skin Customization

Happy to help look into it if we can find a way to reproduce it. I need to see it happening to figure out whats going wrong.
michael
@michael
02/24/15 06:44:43PM
7,832 posts

[bug report] ratings not taking


Design and Skin Customization

That error doesn't look like anything that Jamroom is doing, Perhaps check the scripts that have been added in for its location.

I don't think its related to not being able to rate though. If your getting a response, then its working.
michael
@michael
02/24/15 04:55:52PM
7,832 posts

[bug report] ratings not taking


Design and Skin Customization

Open the console tab on firebug, then click the star ratings. It will give you the response from the server.

For me this time it was:
{"error":"You cannot re-rate this item"}

Because I rated it just before.
michael
@michael
02/24/15 12:14:50PM
7,832 posts

Need A Little Help With Video Title In A Template


Using Jamroom

The problem is that you have an {if.....} but no {/if} I've added in the ending {/if}
{jrCore_module_url module="jrVideo" assign="murl"}
  {if isset($_items)}
      {foreach from=$_items item="item"}     
    <li data-id="81">
  	<div class="item">
  	 <div class="controls-enabler">
  		<div class="block_config">				
  			<div class="row">
  				<div class="col-lg-1">
  			<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.video_title|jrCore_url_string}">{jrCore_module_function function="jrImage_display" module="jrVideo" type="video_image" item_id=$item._item_id size="medium" crop="auto" class="iloutline img_scale" alt=$item.video_title width=true height=false}</a>
  					</div>
  				</div>
  				<div class="col-lg-8">
  					<div class="p5">
    		<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.video_title|jrCore_url_string}">{$item.video_title}</a>{jrCore_lang module="jrVideo" id="31" default="album"}:<a href="{$jamroom_url}/{$item.profile_url}/{$murl}/albums/{$item.video_album_url}">{$item.video_album}</a>{if isset({$item.video_category}) && strlen({$item.video_category}) > 0}{jrCore_lang module="jrVideo" id="12" default="category"}:{$item.video_category}{/if} 
  <br>
  					</div>
  				</div>
  				<div class="col-lg-3">
  					<div class="p5">
  						<span style="display:inline-block;vertical-align:middle;">
  							<ul class="star-rating">
  								 {jrCore_module_function function="jrRating_form" type="star" module="jrVideo" index="1" item_id=$item._item_id current=$item.video_rating_1_average_count|default:0 votes=$item.video_rating_1_count|default:0}
  							</ul>
  						</span>
  					</div>
  				</div>
  			</div>
  		</div>
  	</div>
  </li>
      {/foreach}
  {/if}
  579