Manage Subscription page
-
Hello.
I have question how to edit manage subscription page in code. For example i want to change place of mailpoet-submit-success text. Im trying edit manage_subscription.html file, but nothing change.
Im trying editreturn $this->templateRenderer->render('subscription/manage_subscription.html', $templateData);
for examplemanage_subscription2.html
but nothing changes. Where is Manage Subscription code.And how to add description in list view.
$segments = array_map(function (SegmentEntity $segment) use ($subscribedSegmentIds) {
return [
'id' => $segment->getId(),
'name' => $segment->getName(),
'description' => $segment->getDescription(),
'is_checked' => in_array($segment->getId(), $subscribedSegmentIds),
];Im trying add description like this, but dont know where is data output file where i can output this text.
- You must be logged in to reply to this topic.