Forum Replies Created
-
AuthorPosts
-
January 15, 2020 at 11:33 am in reply to: eMember – can I add user to multiple levels with bulk importer #72321drjansonSpectator
So you say, instead of what wzp answered before, bulk import does not work for multiple membership if it is more than one additional membership?
January 14, 2020 at 2:14 pm in reply to: How to Load the WP eMember's Language File from Another Folder #78085drjansonSpectatorIn my functions.php i tried an absolute path with no success:
$language_file = "https://weblab.geronne.de/wp-content/themes/customizr-pro-child/ger_custom.php"
Next I tried to put my customized language file into the plugins “lang” directory and tried:
$language_file = "/ger_custom.php";
Next I echoed the WP_EMEMBER_PATH as suggested and it returned
“/www/htdocs/myaccount/weblab.geronne.de/wp-content/plugins/wp-eMember”
and since my child-theme’s location is “/www/htdocs/myaccount/weblab.geronne.de/wp-content/themes/customizr-pro-child”
i tried the following code in my child-themes functions.php:
add_filter('emember_language_loading_override', 'load_my_custom_emember_language');
function load_my_custom_emember_language()
{
$language_file = "/../../themes/customizr-pro-child/ger_custom.php";
include_once($language_file);
return "custom-file-loaded";
}But still none of the solutions turned out to be working…
Any suggestions whats going wrong?
thanks!!!
January 14, 2020 at 12:23 pm in reply to: eMember – can I add user to multiple levels with bulk importer #72319drjansonSpectatorAbout 100…
January 9, 2020 at 11:08 pm in reply to: How to Load the WP eMember's Language File from Another Folder #78082drjansonSpectatorI’m sorry, but I think im messing up the file path and do not get that working..
What would the path be if its called frome child-theme’s function.php and the language file is in the same directory?
e.g.
wp-content/themes/my-childtheme/function.php
and
wp-content/themes/my-childtheme/lang.php
thanks.
January 9, 2020 at 2:11 pm in reply to: eMember – can I add user to multiple levels with bulk importer #72317drjansonSpectatorThat is what I tried before asking, but it didn’t work.
Only the first additional membership is recognized, no matter what I try.
What is the exact phrase to put in the excel sheet?
Or in the csv?
I tried with a modified file you provided (swpm-member-list-csv.csv) whithout success, here is the content:
user_name,first_name,last_name,address_street,address_city,address_state,address_zipcode,country,email,phone,subscription_starts,member_since,membership_level,account_state,last_accessed,last_accessed_from_ip,gender,referrer,reg_code,txn_id,subscr_id,company_name,more_membership_levels
test123,Anjelina,Jolie,123 malibu street,California, ,12333, ,angelina123@hotmail.com,12345678,,,6,pending,,,female, ,,,,5,4,3,2
test456,Anakin,Skywalker,456 malibu street,California, ,45678, ,skywalker456@hotmail.com,567895256,,,6,active,,,male, ,,,,2,3,4,5
test789,Jon,Doe,543 adams street,BOSTON, ,2122, ,jon.doe789@yahoo.com,987456321,,,6,active,,,male, ,,,,3,2
January 7, 2020 at 6:21 pm in reply to: eMember – can I add user to multiple levels with bulk importer #72315drjansonSpectatorWhat if I need to specify more than one additional membership level?
-
AuthorPosts