Forum Activity for @michael

michael
@michael
11/26/15 11:28:27PM
7,832 posts

Mailgun Issue


Installation and Configuration

They wont be asking you to verify a domain your not sending email out of. They'll be asking you to verify the domain that is sending out the mail.
michael
@michael
11/26/15 11:25:40PM
7,832 posts

Unable to delete image in Image Gallery


Ning To Jamroom

your-site.com/timeline/dashboard/browser

or:
DASHBOARD -> DATA BROWSER -> TIMELINE

Both are the same place, one is directions, the other a url.
michael
@michael
11/26/15 11:20:09PM
7,832 posts

A few bugs


Using Jamroom

That looks like raw url encoding. Normally the browser would turn that into readable format for you when you have that language installed.

For instance, if i create an account with the username '日本語', because I have japanese installed in my system my browser shows: (screenshot) the correct characters.

BUT.... if i ctrl+c copy that url the address i get when I paste it into a text editor is:
http://jr500.hostsaba.com/%E6%97%A5%E6%9C%AC%E8%AA%9E

because that is what the actual address is. The readable characters are a service being provided by the browser. Browser can only read ascii characters in a URL.
screenshot_nihongo.png screenshot_nihongo.png - 132KB
michael
@michael
11/26/15 10:57:06PM
7,832 posts

Change menu button color


Design and Skin Customization

That link is in
/skins/jrNova/header_menu_desktop.tpl

down around link 133 it looks like this:
{if $_conf.jrCore_maintenance_mode != 'on' && $_conf.jrUser_signup_on == 'on'}
    <li><a href="{$jamroom_url}/{jrCore_module_url module="jrUser"}/signup"><span class="capital">{jrCore_lang  skin=$_conf.jrCore_active_skin id="2" default="create"}&nbsp;{jrCore_lang  skin=$_conf.jrCore_active_skin id="3" default="account"}</span></a></li>
{/if}

The best way would be to add another class to that LI element making it look like this
<li class="create_account">

Then go into your skins:
/skins/YOUR SKIN/css/menu.css

and change:
#menu_right li:hover {
//.....
to
.create_account,
#menu_right li:hover {
//.....

That way that button would always have the same CSS as it does when its hovered over.

If your still using jrNova though, best to clone the skin first.
ACP -> DEVELOPER -> DEVELOPER TOOLS -> TOOLS -> CLONE SKIN

So that your changes are protected from an update to the skin.

--
The other way would be to edit that template and apply the CSS directly to the location with style="" but then you couldn't get as specific as you can with a class.
michael
@michael
11/26/15 06:32:38PM
7,832 posts

Still Unable to upgrade


Using Jamroom

Its not site builder related.

I find it hard to understand what's going on when you just say ".. it's still showing the wrong skin ..". Could you elaborate out to a full "This is what the settings are. This is what I expect to see. This is what I actually see. On this url." for me please when you have time.
updated by @michael: 11/26/15 06:35:51PM
michael
@michael
11/26/15 05:44:51PM
7,832 posts

Happy Thanksgiving!


Off Topic

Saw an advert on TV this morning for "Black Friday Sale" which makes no sense here because we don't have thanks giving in Japan.

Culture import.

Have a good holiday :)
michael
@michael
11/26/15 01:00:37AM
7,832 posts

Link existing to new user.


Genosis

You're probably looking for the "User Profile Link" tool at:
ACP -> PROFILES -> TOOLS -> LINK USER ACCOUNTS

(OR search for "link user" in the ACP)

Type the users username and the profile name of the profile you want to link them to.
michael
@michael
11/26/15 12:50:09AM
7,832 posts

music from certain quotas


Using Jamroom

not = use IN
search1="profile_quota_id IN 4,5,6,8"
michael
@michael
11/25/15 11:32:33PM
7,832 posts

Adding TAGS to a template search


Design and Skin Customization

This works: "Get all the football Video and Youtube that have tags '5th'"
{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created numerical_desc" search1="*_category = football"  search2="*_tags LIKE %5th%" pagebreak=15 page=$_post.p pager=false}

This works: "Get all the football Video and Youtube that have tags '7th'"
{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created numerical_desc" search1="*_category = football"  search2="*_tags LIKE %7th%" pagebreak=15 page=$_post.p pager=false}

This doesn't: "Get all the football Video and Youtube that have tags '5th' or '7th'"
{jrSeamless_list modules="jrVideo,jrYouTube" order_by="_created numerical_desc" search1="*_category = football"  search2="*_tags LIKE %5th% || *_tags LIKE %7th%" pagebreak=15 page=$_post.p pager=false}

But it should, I'll get setup to check it out. Thanks.
michael
@michael
11/25/15 11:12:12PM
7,832 posts

Still Unable to upgrade


Using Jamroom

I've uploaded another version to of the Admin Skin module to your democo site. See if this is right.
  459