<SOLVED> Embed redirect into php plugin. PLEASE HELP!!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
snakedocter
Forum Newbie
Posts: 1
Joined: Thu Feb 04, 2010 1:51 pm

<SOLVED> Embed redirect into php plugin. PLEASE HELP!!!

Post by snakedocter »

<s>Hey guys,
Sorry, PHP is really new to me so please keep answers basic!
I've installed a plugin to a site to connect phplist (a mailing component) to the cms, unfortunately it's set to redirect users to a generic "thank you" page. I'd prefer to have it directed to a specific URL instead.

I think that the relevant code is:

Code: Select all

 
  if(phplist_subscribe($_POST, true) === true) {
              echo("<h3>" . __('Thank You For Subscribing','phplist') . "</h3>");
 
</s>

Decided not to bother with this, just redirecting the entire page with a 301...probably not the best way to do it but sure is the easiest!
Post Reply