Forum Activity for @paul

paul
@paul
03/02/18 11:34:35AM
4,335 posts

Events Calendar Projam light


Using Jamroom

Are you saying no events are showing when clicking on those tabs?
Looking at the skin code in index_events.tpl I see this -
{* EVENT LIST FUNCTION *}{if isset($option) && $option === 'upcoming'}
    {assign var="order_by" value="event_date NUMERICAL_ASC"}
{elseif isset($option) && $option === 'newest'}
    {assign var="order_by" value="_created asc"}
{elseif isset($option) && $option === 'featured'}
    {assign var="order_by" value="event_rating_1_average_count NUMERICAL_DESC"}
{/if}
so for 'featured', if no events have been rated then maybe none will show.
paul
@paul
03/02/18 10:38:28AM
4,335 posts

System Tools Errors


Installation and Configuration

The System Tools module is installed and enabled?
Basic question, I know, but if you installed JR from an older package it may not be included.
paul
@paul
03/02/18 09:49:32AM
4,335 posts

Profile Domain Not mapping - Forwarding to domain.com/profile


Using Jamroom

Maybe the dns changes just needed to propagate?
paul
@paul
03/01/18 12:55:15PM
4,335 posts

Preventing accidental deletion of my Forum Profile / disable delete button


Design and Skin Customization

Hi Strumelia
Goto your skin's profile_header.tpl template and find the {jrProfile_delete_button profile_id=$_profile_id} code on line 18. Replace it with this -
{if $_profile_id != 2}
    {jrProfile_delete_button profile_id=$_profile_id}
{/if}
hth
paul
@paul
03/01/18 05:57:54AM
4,335 posts

Follow me skin - rate, like, tags for a custom module


Design and Skin Customization

That's good. As I said, this was just a quick 'try out' I did. There may be some other tweaks you'll want to do.
paul
@paul
02/28/18 08:11:28AM
4,335 posts

Follow me skin - rate, like, tags for a custom module


Design and Skin Customization

The FollowMe skin overrides the templates of most 'regular' modules and this is the reason the skin doesn't recognise custom modules. One of the things in the skin module item_detail template is this code -
                {* bring in module features *}
                <div class="action_feedback">
                    {jrFollowMe_feedback_buttons module="jrBlog" item=$item}
                    {if jrCore_module_is_active('jrRating')}
                        <div class="rating" id="jrBlog_{$item._item_id}_rating">
                            {jrCore_module_function function="jrRating_form" type="star" module="jrBlog" index="1" item_id=$item._item_id current=$item.blog_rating_1_average_count|default:0 votes=$item.blog_rating_1_number|default:0}
                        </div>
                    {/if}
                    {jrCore_item_detail_features module="jrBlog" item=$item}
                </div>
This brings the item features into the bar under the item detail.

I've created an Article module with Aparna and into its item_detail.tpl template I replaced the existing {jrCore_item_detail_features module="jrArticle" item=$item} call with the above code (changing 'Blog' to 'Article' ) -
                {* bring in module features *}
                <div class="action_feedback">
                    {jrFollowMe_feedback_buttons module="jrArticle" item=$item}
                    {if jrCore_module_is_active('jrRating')}
                        <div class="rating" id="jrBlog_{$item._item_id}_rating">
                            {jrCore_module_function function="jrRating_form" type="star" module="jrArticle" index="1" item_id=$item._item_id current=$item.article_rating_1_average_count|default:0 votes=$item.article_rating_1_number|default:0}
                        </div>
                    {/if}
                    {jrCore_item_detail_features module="jrArticle" item=$item}
                </div>
That seems to have worked. There may well be other changes that you need to do, but this is where you need to work.
hth
updated by @paul: 02/28/18 08:12:13AM
paul
@paul
02/28/18 05:36:25AM
4,335 posts

Activity Log Querie


Using Jamroom

The message is pretty self explanitory. There was a job in the queue that your server couldn't process in a reasonable amount of time. Any information on what that job was? Is there a question mark to the right of that activity log post? Click that for more info (it opens a popup).
paul
@paul
02/28/18 05:31:04AM
4,335 posts

Follow me skin - rate, like, tags for a custom module


Design and Skin Customization

More information on what you want to do would help.
paul
@paul
02/27/18 03:13:52AM
4,335 posts

Admin Account Downgrade By Mistake


Using Jamroom

Not Hosted here!!
So, goto your database admin, find your user datastore in the Jamroom user_key table (likely _item_id 1 if you were the original master) then set its user_group value from ‘admin’ to ‘master’
Hth
  109