Forum Activity for @ken-rich

Ken Rich
@ken-rich
12/20/16 01:13:19PM
926 posts

Left Column Info Missing


Design and Skin Customization

Hi Douglas,

It seems to work right in the regular profiles both signed in and not signed in (which is great),

However, I have someone just signing up and their left column info is an amalgamation of everyone's.

Here - https://indiegospel.net/shirleysimpson Also attached as screenshot

++++++++++++++++++++++

I saw this before, when I was first given the code. I just checked the old ticket. I thought it was Brian but it was
you who first gave me the code LOL.

In the ticket you said - "you had the wrong variable for the profile_id parameter".
combined.JPG.jpg combined.JPG.jpg - 45KB
Ken Rich
@ken-rich
12/20/16 07:51:42AM
926 posts

Left Column Info Missing


Design and Skin Customization

Hi Douglas,

If you refer to the attached screenshot, that info is coming from the two editors in the account section of the profile settings - https://indiegospel.net/user/account/profile_id=1/user_id=1

Those are displayed by the profile_sidebar.tpl

I don't know how the website editor is displaying in that particular skin without this code (present in the others)???????

			{* Begin User Website *}
			{if !jrCore_is_mobile_device()}

			    {capture name="userwebsite" assign="userweb_row"}
				    {literal}
				        {if isset($_items)}
				            {foreach $_items as $item}
				                {$item.user_signup_question_6}
				            {/foreach}
				        {/if}
				    {/literal}
			    {/capture}

			   

			{/if}
			{* End User Website *} 

Indie.JPG.jpg Indie.JPG.jpg - 80KB

updated by @ken-rich: 12/20/16 07:52:31AM
Ken Rich
@ken-rich
12/20/16 06:53:52AM
926 posts

Left Column Info Missing


Design and Skin Customization

douglas:
Did you happen to change the skins for the profile in question in your account settings > customize tab?

I can see that all of your custom skins do not have the same profile side code, in fact some of the skins have very little side information for the profile pages. If you change skins in your customize tab, I can see the side info be changed as well.

Hi Douglas,

The way my customize section works is I start with a Ningja clone (with one additional editor for the left column). That is the "Complete" skin (default). Then I remove more and more of the features of that skin in successive versions. Compact, Clean, Cleaner, Whitelabel. That gives members a choice in their customize section to have a fully populated or less cluttered look to their profile page.

However, the two editors feeding info to the left column are common to all those skins. They always worked until the code mysteriously vanished a few weeks ago.

Brian gave me some replacement code and it seemed to work but I've now noticed it only works when I'm logged in. When logged out the info the editors provide for the left column disappears.

I can't remove Brian's code without generating the error linked above. So I had to delete my original editor codes (which somehow reappeared) because I began getting two copies of my left column information displayed when the original codes came back.

So this is all very confusing and doesn't even seem possible (to me). In the end, what I need to do is simple.

I am just trying to get the editors that feed the left column (in all my skins) to display their info both when logged in and logged out.
Ken Rich
@ken-rich
12/20/16 06:33:10AM
926 posts

Left Column Info Missing


Design and Skin Customization

Hi Derrick,

Thanks for the input. I'm going to look that stuff when I'm fresh because I am too burned out at the moment to size it up properly.
Ken Rich
@ken-rich
12/20/16 04:15:29AM
926 posts

Left Column Info Missing


Design and Skin Customization

This is not exactly a problem of "custom code" because I am not a code writer.

- What disappeared was standard Ningja code copied to a clone of the skin. The only thing added was an additional editor which was done the same way as the first and under Jamroom guidance, since I didn't know how to do it. Therefore, I have a high degree of confidence in the code because of its Jamroom pedigree and the fact that it's been working for a long time, basically ever since Ningja came out (until recently).

- It did disappear for reasons I can't explain, possibly because of upgrades that would affect how older Ningja code works or doesn't work??????????

- The desired outcome is to simply display the left column info provided by the editors both when logged in and logged out.

- The way to get to where I am now is to install the non-standard code Brian provided which works when logged in but does not when logged out. I can't delete Brian's code and go back to the original (which seems to work since it returned) because I get this error when Brian's is removed.https://indiegospel.net/image/img/module/jrImage/Error.JPG?r=2001673720

- What I am hoping for immediately is a way to display my left column information (from the editors the rest works) when both logged in and logged out. I don't care if it's with Ningja code, Brians code, or a new code.
Ken Rich
@ken-rich
12/19/16 01:49:42PM
926 posts

Left Column Info Missing


Design and Skin Customization

I have two problems with that response.

1) I have already indicated that the original code magically, inexplicably, disappeared and reappeared weeks later. I haven't the foggiest clue how that could happen. Something to do with installing the Jamroom updates I would assume (but really I can't imagine how).

2) My current dilemma is how to get the currently installed code (from Brian) functioning when logged out. Then my profiles will at least be functional until this gets sorted out.
Ken Rich
@ken-rich
12/19/16 12:59:04PM
926 posts

Left Column Info Missing


Design and Skin Customization

I have two editors members can use to add left column information.

They used to work fine until one day the code magically, inexplicably, disappeared. This was the code.

{* Begin About User Section *}
			{if !jrCore_is_mobile_device()}

			  
			    {jrCore_list module="jrUser" profile_id=$_profile_id template=$aboutuser_row assign="abtuser"}
			    {if isset($abtuser) && strlen($abtuser) > 0}
			        <div class="block">
			            <h3>About</h3>
			            <div class="block_content mt10">
			                <div style="padding-top:8px;">
               				    {$abtuser}
			                </div>
			            </div>
			        </div>
			    {/if}
	
			{/if}
			{* End About User Section *}


			{* Begin User Website *}
			{if !jrCore_is_mobile_device()}

			   			    {jrCore_list module="jrUser" profile_id=$_profile_id template=$userweb_row assign="userweb"}
			    {if isset($userweb) && strlen($userweb) > 0}
			        <div class="block">
			            <h3>Website</h3>
			            <div class="block_content mt10">
			                <div style="padding-top:8px;">
			                    {$userweb}
			                </div>
			            </div>
			        </div>
			    {/if}

			{/if}
			{* End User Website *} 


So I opened a support ticket and Brian came up with a similar code which seemed to work (and stay put).

{* Begin About User Section *}
			{capture name="aboutuser" assign="aboutuser_row"}
			    {literal}
			        {if isset($_items)}
			            {foreach $_items as $item}
            			    {$item.user_signup_question_2}
			            {/foreach}
			        {/if}
			    {/literal}
			{/capture}

			{jrCore_list module="jrUser" profile_id=$profile_id template=$aboutuser_row assign="abtuser"}
			{if isset($abtuser) && strlen($abtuser) > 0}
			    <div class="block">
			        <h3>About</h3>
			        <div class="block_content mt10">
			            <div style="padding-top:8px;">
			                {$abtuser}
			            </div>
			        </div>
			    </div>
			{/if}
			{* End About User Section *}  

Then after several weeks my old code magically, inexplicably, returned. So I had two codes and the same info repeating twice in my left columns (see attached screenshot). I then deleted my (returned) code manually, since I was unable to delete Brians. When I tried to delete Brian's and leave my original, I saw an error about missing templates (click link).

https://indiegospel.net/image/img/module/jrImage/Error.JPG?r=2001673720

However, while checking this out I stumbled across a problem I had not noticed before. My left column info (from the editors) is only showing when logged in. It disappears when I am logged out.

I do not understand why or how to fix it.
Capture.JPG.jpg Capture.JPG.jpg - 25KB

updated by @ken-rich: 03/28/17 01:40:54AM
Ken Rich
@ken-rich
12/19/16 09:53:26AM
926 posts

after domain change site attempts to load ssl content inconsistently


Installation and Configuration

I am having similar problems after a new domain was mapped today. I put in a support ticket.

Unfortunately, after I last attempted to fix it by refreshing SSL and restarting apache - I now have no connect to network at all - server is down.
Ken Rich
@ken-rich
06/14/16 12:12:39PM
926 posts

Affiliate Sales Systems?


Installation and Configuration

I'm just wondering if the staff recommends any particular affiliate sales system or if anyone has experience integrating Jamroom 5 with a particular system.

I know it's done through the current Foxycart integration and that there are many compatible systems to choose from, each requiring substantial investment. What I am wondering is, if Jamroom can integrate with all available features and do any of the recommended systems have "fine-grained" controls.

For instance:

1) Will individual members be able to opt in or opt out or will a global affiliate commission be imposed on all saleable items, subscriptions, and services? So if one member wants affiliates to sell his products on commission, and another doesn't, will the install generate controls for that in their profile settings?

2) If a member wants affiliates to sell his items on commission, will they be able to set their own level of commission or is there just one global setting?

3) Can different categories like subscriptions, products, services, downloads be given different levels of commission or be opted in or out? Globally or individually?
updated by @ken-rich: 09/20/16 12:25:18AM
Ken Rich
@ken-rich
06/10/16 04:17:44AM
926 posts

Packaging Module for Marketplace.


Design and Skin Customization

Hi Michael,

Thanks - I didn't know about that tool, I was attempting to manually zip everything - lol.

So now I've tried the process you pointed me to but I am getting an error (see attached screenshot). So I think some type of registration is required in my Jamroom account to enable this tool for me.

I think there may also be a problem in my account since anytime I press help on a module I get "User not found - please check account email is correct".

indie.gospel@gmail.com is showing top right (which is one of my emails) so I don't know why my Help is not linked in any module I've checked.
error1.JPG.jpg error1.JPG.jpg - 43KB

updated by @ken-rich: 06/10/16 04:20:56AM
  9