Forum Activity for @the-patria-company

PatriaCo
@the-patria-company
07/07/16 03:51:25PM
349 posts

How Can I Change Button Icons?


Design and Skin Customization

Sorry for being so dense sometimes, but I am just not sure where to place the code. Here is the original:

{jrCore_item_create_button module="jrProfile" view="create" profile_id=$_profile_id title="Create new Profile" icon="profile_m.png"}

But of course the custom icon did not work. I tried this, but it did not work:

{jrCore_item_create_button module="jrProfile" view="create" profile_id=$_profile_id title="Create new Profile" {jrCore_icon icon="custom" size=30}}

Where should I put the icon code?
PatriaCo
@the-patria-company
07/07/16 01:27:55PM
349 posts

Posting a Feature Request Vote


Suggestions

It would be a great way of spreading the word about a new feature request if when someone voted for one it would post to their timeline.

What do you guys think?
updated by @the-patria-company: 10/18/16 07:22:12AM
PatriaCo
@the-patria-company
07/07/16 12:05:22PM
349 posts

Profile Menu


Design and Skin Customization

Same thing :/ When I visit any page, other than my own profile, the "My Profile" menu item does not appear. Here is my entire menu.tpl

<li><a href="{$jamroom_url}/{$_user.profile_url}">My Profile</a></li>
{foreach from=$_items name="loop" item="entry"}
    {if isset($entry.menu_function_result) && strlen($entry.menu_function_result) > 0}
        {if is_numeric($entry.menu_function_result)}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} [{$entry.menu_function_result}]</a></li>
            {else}
        <li><a href="{$entry.menu_url}">{$entry.menu_label} <img src="{$entry.menu_function_result}" alt="{$entry.menu_label}"></a></li>
        {/if}
        {else}
    <li><a href="{$entry.menu_url}">{$entry.menu_label}</a></li>
    {/if}
{/foreach}

updated by @the-patria-company: 07/07/16 12:06:13PM
PatriaCo
@the-patria-company
07/07/16 10:24:27AM
349 posts

Profile Menu


Design and Skin Customization

Very close!

I added this code to line 1 of my menu.tpl
<li><a href="{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}">My Profile</a></li>

The menu item appears when I am on my own profile, but does not show when I am viewing another profile.

Any thoughts?
PatriaCo
@the-patria-company
07/07/16 10:09:58AM
349 posts

How Can I Change Button Icons?


Design and Skin Customization

How can I register new icons that are added to the directory? /modules/jrCore/img/icons_black/

I tried using the image="my.png", but the img css messes it all up.

I can easily add the icon to the folder, but it shows a different icon on the page, not the one in my code. Even though I can see that the html is correct on my browser:
<span class="sprite_icon_30 sprite_icon_30_img sprite_icon_30_profile_m.png">&nbsp;</span>

I shows the down arrow, not my custom icon profile_m.png

Thanks!
PatriaCo
@the-patria-company
07/07/16 09:47:01AM
349 posts

Liked Items Archive


Suggestions

Is there a way to Archive the liked items list:

/like/liked_items

After a while it can start to get very large and difficult to find recently liked items.
updated by @the-patria-company: 10/14/16 07:29:47AM
PatriaCo
@the-patria-company
07/07/16 09:25:51AM
349 posts

Profile Menu


Design and Skin Customization

I am working in /core/skin_menu

I am trying to get this code to work as a menu item labeled "My Profile"

{$jamroom_url}/{jrUser_home_profile_key key="profile_url"}

Since it won't work in its current form in the menu, is there another way to achieve the same link?

Appreciate the help.
updated by @the-patria-company: 10/19/16 01:09:11AM
PatriaCo
@the-patria-company
07/07/16 09:16:06AM
349 posts

How Can I Change Button Icons?


Design and Skin Customization

I see this code in the profile_header.tpl:
{jrCore_item_create_button module="jrProfile" view="create" profile_id=$_profile_id title="Create new Profile"}

Which generates:
<a href="https://assemble-together.org/profile/create" title="Create new Profile" onclick="jrCore_window_location('https://assemble-together.org/profile/create');return false"><span class="sprite_icon sprite_icon_30"><span class="sprite_icon_30 sprite_icon_30_img sprite_icon_30_plus">&nbsp;</span></span></a>

Where do I go to change the button icon?
updated by @the-patria-company: 10/12/16 06:00:12PM
PatriaCo
@the-patria-company
07/07/16 06:24:00AM
349 posts

Affiliate Module


Suggestions

We are now successfully using iDevAffiliate with our FoxyCart Subscriptions in Jamroom -

http://www.idevdirect.com/idevaffiliate.php

I have worked with iDev in the past, but the newest version is very impressive.
updated by @the-patria-company: 07/07/16 06:24:17AM
PatriaCo
@the-patria-company
07/03/16 07:16:07PM
349 posts

Profile Notes Function


Genosis

I have this in my template:

<a onclick="jrGenCore_profile_notes('{$_profile_id}');">

and it currently loads in visible and I need to make in load in display:none

This should be js, correct?
  24