Forum Replies Created
-
AuthorPosts
-
matom
ParticipantAny news about the WPML compatibility?
matom
ParticipantAny news about this? For start there could be a define option in wp-config or in the theme with the default location of the tnp-composer folder
Something like
define('TNP_COMPOSER_DIR','/wp-content/uploads/custom-tnp-composer/');
Where we could keep and maintain our own copy of tnp-composer.
Of course if there is no define option it should default to/wp-content/plugins/newsletter/emails/tnp-composer
@Stefano what do you think?matom
ParticipantI suppose it is fixed, the date is from 30TH MARCH 2015 about version Newsletter 3.6.9 but a official answer would help more on this.
EDIT: Actually I just saw this https://www.thenewsletterplugin.com/version-3-8-6-redirect-issue-fixed
-
This reply was modified 7 years, 7 months ago by
matom. Reason: link
matom
ParticipantI wrote a simple hack to import profile_x fields as well
Go to wp-content\plugins\newsletter\users\import.php
Find
if (isset($data[3])) { $subscriber['sex'] = $newsletter->normalize_sex($data[3]); }
and add below of that the following
if (isset($data[4])) { $subscriber['profile_1'] = $newsletter->normalize_name($data[4]); } if (isset($data[5])) { $subscriber['profile_2'] = $newsletter->normalize_name($data[5]); }
and then at line 101 right after
$subscriber['surname'] = $newsletter->normalize_name($data[2]);
add again the same code.
This way you can import the first two profile extra fields like this
email 1[separator]first name 1[separator]last name 1[separator]gender 1[separator]profile_1[separator]profile_2[new line]
EDIT:replace above where & # 039 ; to ‘
Maybe the developer can provide a better solution and include it in future releases
matom
ParticipantHello guys, have you found any way to import profile fields as well? I have the premium extensions
-
This reply was modified 7 years, 7 months ago by
-
AuthorPosts