'list1' showing in subcription

rcoble

New Member
I can't seem to get rid of this 'list1' subscription list. I login online to change the name of the list - and it does but when I sign up again under a new name and email address it generates a 'list1' subscription and email confirmations. How do I change my form to use my renamed list instead of 'list1'? I have made sure in Preferences tab that my list is selected.

Thanks
 

rcoble

New Member
Fix and/or work-around found in other forum. Added this code to the end of the URL.
Code:
?list=AddYourSpecificListName
 

stanbusk

Administrator
Staff member
This is correct. You can also edit the file and change the default list name, for example in the 'subscribe_single_fixed.php' it is the line 23:

if ( isset( $_REQUEST['list'] ) && !empty( $_REQUEST['list'] ) ) { $list = $_REQUEST['list']; } else { $list = "list1"; }

That lines check if you are providing a list along withe URL as a parameter, if you don't the llist will then be "list1".
 
Top