We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 4429
    • 429 Posts
    I have a call as such..


    [!WebLoginPE? &type=`manager` &manageProfileTpl=`manageprofileNEW` &activateId=`2` &groupsField=`usergroup` &usersList=`The following accounts require approval:default:manageprofileNEW:username:ASC:webgroup(Pending Users)` !]


    The template is:

    [+wlpe.message+]
    <div id="wlpeUser">
    	<form enctype="multipart/form-data" id="wlpeUserProfileForm" action="[~[*id*]~]" method="POST">
    		<fieldset id="wlpeUserProfileInput">
    			<div id="wlpeUserInfo">
    				<h3 id="wlpeProfileWelcome">Editing the profile of [+view.username+] ([+view.fullname+])!</h3>
    				<p id="wlpeProfileInfo" class="info">Use this form to edit [+view.username+]'s profile information</p>
    			</div>
    
    			<legend>[+view.username+]'s User Profile</legend>
    			
    			<!-- These hidden fields are IMPORTANT! -->
    			<input type="hidden" name="internalKey" value="[+view.internalKey+]" />
    			<input type="hidden" name="username" value="[+view.username+]" />
     <input type="hidden" name="usergroup" value="Business Members" />
    			
    
    
    <table width="500" border="0" cellspacing="3" cellpadding="3">
      <tr>
    
    
    			<label for="wlpeUserProfileFullName"><td>Full Name</td>
    			<td><input id="wlpeUserProfileFullName" type="text" name="fullname" value="[+view.fullname+]" /></td>
    			</label>
    </tr>
    <tr/>
    			<label for="wlpeUserProfileEmail"><td>Email</td>
    			<td><input id="wlpeUserProfileEmail" type="text" name="email" value="[+view.email+]" /></td>
    			</label>
    </tr>
    <tr>
    			<label for="wlpeUserProfilePhone"><td>Phone number</td>
    			<td><input id="wlpeUserProfilePhone" type="text" name="phone" value="[+view.phone+]" /></td>
    			</label>
    
    </tr>
    <tr>		
    	<label for="wlpeUserProfileAddress"><td>Address</td>
    			<td><input id="wlpeUserProfileAddress" type="text" name="address" value="[+view.address+]" />
    			</label></td>
    </tr>
    <tr>
    			<label for="wlpeUserProfileCity"><td>City</td>
    		<td>	<input id="wlpeUserProfileCity" type="text" name="state" value="[+view.city+]" /></td>
    			</label>
    
    </tr>
    <tr>
    			<label for="wlpeUserProfileState"><td>County</td>
    			<td><input id="wlpeUserProfileState" type="text" name="state" value="[+view.state+]" /></td>
    			</label>
    </tr>
    <tr>
    			<label for="wlpeUserProfileZip"><td>Post Code</td>
    			<td><input id="wlpeUserProfileZip" name="zip" type="text" value="[+view.zip+]" /></td>
    			</label> 
    </tr>
    <tr><td>			[+form.country+]</td>
    
    <td>				[+form.business_type+]</td></tr>
    
    
    <tr>			<label for="wlpeUserProfileComment"><td>Comment/Signature</td>
    			<td><textarea id="wlpeUserProfileComment" name="comment">[+view.comment+]</textarea></td>
    			</label>
    </tr>
    
    		</table>
    		 [+form.subscriber+]
    
    		</fieldset>
    		<fieldset id="wlpeUserProfileButtons">
                            <button type="submit" id="wlpeApproveUserButton" name="service" value="approveuser">Approve</button>
    			<button type="submit" id="wlpeProfileDeleteButton" name="service" value="deleteuserprofile">Delete This Profile</button>
    
    		</fieldset>
    	</form>
    </div>
    
    <br/><br/>



    This lets me view all the users in my ’Pending Users’ group and see there details all in a list down the page. The problem is that not all of the details work. For example If i try to change the users country that is 5th on the list, it jumps to the top of the page.

    The problem is almost like when you have two webloginpe calls on the same page (but i don’t).

    Any suggestions?