Advertisement
shelob9

Untitled

Jul 29th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. /**
  3. * Plugin name: Force Caldera Forms Aweber lists to the right lists.
  4. */
  5. /**
  6. * Change list ID for cf-awber.
  7. */
  8. add_filter( 'caldera_forms_get_form', function( $form ){
  9. if( isset( $form[ 'processors' ][ 'fp_59570095' ] ) ) {
  10.  
  11. $form[ 'processors' ][ 'fp_59570095' ][ 'config' ]['cf-aweber-list' ] = '4357229';
  12.  
  13. }elseif( isset( $form[ 'processors' ][ 'fp_59570095' ] ) ){
  14. $form[ 'processors' ][ 'fp_59570095' ][ 'config' ]['cf-aweber-list' ] = '4351610';
  15.  
  16. }
  17.  
  18. return $form;
  19.  
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement