Forum Activity for @the-patria-company

PatriaCo
@the-patria-company
03/01/16 10:44:17AM
349 posts

Customize Site-wide Tag Cloud


Design and Skin Customization

Hey guys,

I am trying to make some css changes to the site-wide Tag Cloud in my custom elastic skin using my skin js file. https://assemble-together.org/tags

I noticed that the tags module is not calling up any of the jquery script in the head tags.

What would be the best way to make these changes so that I do not hack up the module?

Thanks :)

updated by @the-patria-company: 05/31/16 11:16:15PM
PatriaCo
@the-patria-company
02/26/16 12:10:38PM
349 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

Thanks @michael :)

Could you share the section of code you used for this from the sitebuilder?

Does the tinymce editor manager need to be initialized into a hidden div?

Then does the modal window js call it into the modal window?

This is the original code in the Timeline include.php that holds the current conflict

if (!isset($_conf['jrAction_editor']) || $_conf['jrAction_editor'] != 'on') {
        $out .= '<textarea cols="72" rows="6" id="action_update" name="action_text" placeholder="' . $_lang['jrAction'][3] . '" onfocus="$(this).attr(\'data-pl\', $(this).attr(\'placeholder\')).attr(\'placeholder\',\'\')" onblur="if($(this).val().length === 0){ $(this).attr(\'placeholder\', $(this).attr(\'data-pl\')) }"></textarea>
        <img id="action_submit_indicator" src="' . $img . '" width="24" height="24" alt="' . jrCore_entity_string($_lang['jrCore'][73]) . '"><input id="action_submit" type="button" class="form_button" value="' . str_replace('"', '\"', $_lang['jrAction'][5]) . '" onclick="$(\'#action_submit_indicator\').show(300, function() { ;var t=$(\'#action_update\').val();if (t.length < 1){return false;} else {$(this).attr(\'disabled\',\'disabled\').addClass(\'form_button_disabled\');$(\'#action_form\').submit()} });">' .
            $add . '</form>' .
            '<span id="action_text_counter" class="action_warning">' . $_lang['jrAction'][6] . ': <span id="action_text_num">' . intval($_conf['jrAction_max_length']) . '</span></span>';
    }
    else {

updated by @the-patria-company: 02/26/16 12:11:19PM
PatriaCo
@the-patria-company
02/25/16 04:14:47PM
349 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

OK!! :)

I have been working like crazy on this and I finally figured out the issue.

The TinyMCE editor does not like being in a modal window.

I have it working with the editor disabled in the Timeline global settings.

But I would like to use it to embed media.

Do you have any idea why the TinyMCE would break in a modal window? I was getting an NS_Error.
PatriaCo
@the-patria-company
02/22/16 10:58:15AM
349 posts

add "Empty Playlist" help text to the profile tab.


Design and Skin Customization

This would probably be categorized as an improvement for all skins and I hope it will help out new users on all Jamroom sites.

Could an {if} statement be added to the Photo Album and Playlist item_list.tpl files that would explain (when the list is empty) that the user has not added any pictures or songs yet and then give a link to the site-wide gallery and audio page so they can begin to explore and add media they like?

This would also offer an easy way for Jamroom admins to create and link custom "discovery" pages for their users.

I am finding that "getting started" is the hardest part for new users, once they navigate around a bit they are impressed, which is good.

Thanks for considering this :)
updated by @the-patria-company: 06/09/16 09:17:48PM
PatriaCo
@the-patria-company
02/18/16 10:08:14AM
349 posts

CometChat - How To Guide


Using Jamroom

We recently upgraded to Platinum and they have been working for weeks on getting the video chat up to par. I will say that support does work a little nearly every work day of the week on our issues. The basic chat and announcement functionality works great :) ... now we are in the process of getting all of the other production items working properly.
PatriaCo
@the-patria-company
02/17/16 03:39:22PM
349 posts

Like / Dislike on Timeline


Design and Skin Customization

OK so I created an item_list.tpl in the jrLike templates dir with this:

{if isset $_items}
{jrCore_module_url module="jrLike" assign="murl"}
{foreach $_items as $item}
{/foreach}{debug}
{/if}

Then I used the sitebuilder and created a widget using the "template code" section, with this code:
{jrCore_list module="jrLike"}

I was hoping to see something output but I got this error.

CRI: Query Error: Table 'assembletogetherorg371.jr_jrlike_item_key' doesn't exist

Any thoughts?
PatriaCo
@the-patria-company
02/16/16 08:03:03PM
349 posts

Like / Dislike on Timeline


Design and Skin Customization

Thank you @b360

Since there is no item_list.tpl for the the LikeIt module... I am going to need a little help here. Will this get me going in the right direction?

{jrCore_module_url module="jrLike" assign="murl"}
{foreach $_items as $item}
{/foreach}
{debug}
PatriaCo
@the-patria-company
02/05/16 10:17:04AM
349 posts

Like / Dislike on Timeline


Design and Skin Customization

Anybody have any thoughts on question #1 or #2?
PatriaCo
@the-patria-company
02/03/16 05:07:30PM
349 posts

jrAction_form in modal window like site search (jrElastic)


Design and Skin Customization

May I ask you this first?

I did a very simple jQuery Hide <div> as an alternative method to the modal window.

 <a href="#" onclick="$('#new_action').slideToggle(300);return false" title="New Action"><span class="sprite_icon sprite_icon_30"><span class="sprite_icon_30 sprite_icon_30_img sprite_icon_30_plus"> </span></span></a>

followed by:
<div id="new_action" class="item left p10" style="display:none">
 {jrAction_form} 
</div>

I can enter text into the window, but when I click [Save Update] it saves an empty entry.

Why would hiding the div affect the action form, if it does not affect the search form?
  31