Forum Activity for @michael

michael
@michael
04/22/16 04:59:18PM
7,832 posts

Profile Specific Listing - Coding Question


Design and Skin Customization

when you don't understand why, then its time for {debug}

Docs: "{debug}"
https://www.jamroom.net/the-jamroom-network/documentation/development/1477/debug

You need to know what you are asking for, in your case there are only 2 variables
{jrCore_list module="jrStore" profile_id=$_profile_id order_by="product_display_order numerical_asc" pagebreak="4" page=$_post.p pager=true}
Other than $_profile_id and $_post.p all other requested info is clearly visible. So the difference is probably that the values of {$_post.p} and {$_profile_id} are different on different pages.

--edit--
In a case like that I would put this code to see what their values are
$_profile_id: {$_profile_id} <br>
$_post.p : {$_post.p} <br>
{jrCore_list module="jrStore" profile_id=$_profile_id order_by="product_display_order numerical_asc" pagebreak="4" page=$_post.p pager=true}

updated by @michael: 04/22/16 05:02:09PM
michael
@michael
04/21/16 07:17:14PM
7,832 posts

Menu Editor (bug)


Jamroom Developers

Thanks, I can see this too.

The language string you're after is found at:
your-site.com/like/admin/language

Its language id #10, changing it there will have the desired effect.
michael
@michael
04/21/16 07:11:49PM
7,832 posts

Developer Updates


Design and Skin Customization

Its just a jrCore_list call on the jrAction module for users in a developer or team quota
{jrCore_list module="jrAction" search="profile_quota_id in 1,2,3" order_by="_item_id desc" limit=25}

The full code, for what its worth, is:
                    <div class="col7">
                        <div class="block" style="padding:0 6px;">
                            <div class="title" style="margin-bottom:6px">
                                <h1>Developer Updates</h1>
                            </div>
                            <div class="item" style="padding:0;margin-top:0;height:290px;overflow:auto">
                                {jrCore_list module="jrAction" search="profile_quota_id in 1,2,3" order_by="_item_id desc" limit=25}
                            </div>
                        </div>
                    </div>
michael
@michael
04/21/16 03:01:25AM
7,832 posts

Bundle Images


Using Jamroom

you don't like that? :(

The template is:
/modules/jrFoxyCartBundle/templates/item_list.tpl

The code is around line 28 and looks like this:
                    <div class="block_image">
                        {jrCore_module_function function="jrImage_stacked_image" module="{$item.stacked_image_module}" type="{$item.stacked_image_type}" item_id="{$item.stacked_image_item_id}" size="icon" alt="{$item.bundle_title}" border_width=0}
                    </div>

The jrImage_stacked_image() function was made to show the images of the things in the bundle. You can replace it with a single image if that's better.

Or you could just reduce the number of images to one. That item_id="{$item.stacked_image_item_id}" will translate to item_id="3,4,5" of the items in the bundle, if you made that just one, then only one image would show.

Think you're familiar with making changes, but just in case someone else reads this:

Docs: "Altering a modules template"
https://www.jamroom.net/the-jamroom-network/documentation/development/1051/altering-a-modules-template
michael
@michael
04/20/16 04:07:14PM
7,832 posts

Site Builder IDs


Suggestions

How are you wanting to put them there?
michael
@michael
04/17/16 11:30:32PM
7,832 posts

Problems When Updating The Aparna Module


Using Jamroom

If you added custom buttons to tinymce editor, then check the form_editor.tpl in both jrCore and jrSiteBuilder as that's where the editor buttons are initialized.

A while back the site builder buttons and the core buttons were synchronized, so it might be that you need to add your buttons back in to that template.
michael
@michael
04/17/16 10:58:09PM
7,832 posts

New module with Aparna


Using Jamroom

The profile menu is controlled by this function in the templates:
{jrProfile_menu}

Docs: "Profile Menu"
https://www.jamroom.net/the-jamroom-network/documentation/development/1997/jrprofile-menu

Which is defined by this function in php if you want to go look at whats happening:
smarty_function_jrProfile_menu()

So you'll have something like this in your skins profile_header.tpl:
{jrProfile_menu template="profile_menu.tpl" profile_quota_id=$profile_quota_id profile_url=$profile_url order="jrFAQ,jrGallery,jrBlog"}
michael
@michael
04/16/16 01:11:27AM
7,832 posts

notification options footer 3x repeating in "new user" email notification


Using Jamroom

Found a suspect.....

Question: In the emails with multiple footers in them, are there multiple users receiving the same email?

--edit--
Suspect this is the issue. The email is being sent out to multiple users and each time an email is sent an additional footer is added to the email.

So the first user gets one footer, the second gets two, the third gets three.

I've added in a check to make sure this doesn't happen in jrUser ver 1.8.5 but it doesn't explain the different email footer messages as is seen in your screenshot. Still concerned that is not yet fixed.
updated by @michael: 04/16/16 01:27:06AM
michael
@michael
04/16/16 12:46:29AM
7,832 posts

notification options footer 3x repeating in "new user" email notification


Using Jamroom

This email:
---------------------------------------

If you would prefer to no longer receive event notifications, you can adjust
your notification preferences in your User Account:

{$preferences_url}

Or you can instantly unsubscribe from all notifications:

{$unsubscribe_url}

is found at:
/modules/jrUser/templates/email_preferences_footer.tpl
ACP -> MODULES -> USERS -> USERS -> email_preferences_footer.tpl

I've set my system to what I think is the same as yours, pending new users but i just get one footer for my email.

That 2 different location emails do the same thing with different email templates is interesting though. It points to the email template itself not being the culprit. Looking for why now.
michael
@michael
04/16/16 12:14:58AM
7,832 posts

Email Timeout


Jamroom Developers

Thanks. We've got this changed from (5) to (10) for the next core release, (30) seams excessive.
  405