Title: bigny's Replies | WordPress.org

---

# bigny

  [  ](https://wordpress.org/support/users/bigny/)

 *   [Profile](https://wordpress.org/support/users/bigny/)
 *   [Topics Started](https://wordpress.org/support/users/bigny/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bigny/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bigny/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bigny/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bigny/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bigny/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Invoice - Web Invoice and Billing] Don’t change to invoice_page template after update to PHP7](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/)
 *  Thread Starter [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/#post-11139546)
 * merchantPlus.com and other Authorize.net Gateways
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Invoice - Web Invoice and Billing] Don’t change to invoice_page template after update to PHP7](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/)
 *  Thread Starter [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/#post-11126786)
 * Thanks a lot. ‘Turn off compatibility mode’ do the job. But still get alert in
   payment process. On [https://rockbait.com/make-a-payment/?invoice_id=4f1cc9b9265ac304e2396f3473b43479](https://rockbait.com/make-a-payment/?invoice_id=4f1cc9b9265ac304e2396f3473b43479)
   when i add card details and click “Process payment” post call return alert and
   in console i output data from response(success: false, error: true)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Invoice - Web Invoice and Billing] Don’t change to invoice_page template after update to PHP7](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/)
 *  Thread Starter [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/#post-11123773)
 * Like i see it templates for content part are not changing
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Invoice - Web Invoice and Billing] Don’t change to invoice_page template after update to PHP7](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/)
 *  Thread Starter [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/#post-11123760)
 * I have problem working on dev sou i turn on PHP 7. [https://rockbait.new.topseohouston.com/make-a-payment/](https://rockbait.new.topseohouston.com/make-a-payment/)
   
   and test invoice – 54357304
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Invoice - Web Invoice and Billing] Don’t change to invoice_page template after update to PHP7](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/)
 *  Thread Starter [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/dont-change-to-invoice_page-template-after-update-to-php7/#post-11123675)
 * Yes. And on 5.6 wpi_authorize_submit FUNCTION return (success: false, error: 
   true). If you fill card details and click process payment.
    If i use PHP 5.6 
   for [https://rockbait.com/make-a-payment/](https://rockbait.com/make-a-payment/)
   first it’s search line for inter invoice number. After enter number(63515477)
   click “Make payment” and after reload link change to [https://rockbait.com/make-a-payment/?invoice_id=&#8230](https://rockbait.com/make-a-payment/?invoice_id=&#8230);.
   and content part change to “Customer info” , card details etc… If i use PHP 7.1
   content part after reload don’t change content part to payment details and leave
   search line, but link changes. Thanks for you time
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Special Mail Tags](https://wordpress.org/support/topic/special-mail-tags-6/)
 *  Thread Starter [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/special-mail-tags-6/#post-9304101)
 * Yes i read it, but then i pasty CF7 in PHP by do short code in CF v4.7 all work
   well.
    working code on v4.7 function fix_wpcf7_do_shortcode( $shortcode, $id 
   = NULL ) { if ( ! isset( $id ) ) { $id = get_the_ID(); } $regex_pattern = get_shortcode_regex();
   preg_match( ‘/’ . $regex_pattern . ‘/s’, $shortcode, $regex_matches ); $shortcode_atts
   = shortcode_parse_atts( $regex_matches[3] ); $shortcode_id = $shortcode_atts[‘
   id’];
 *  return str_replace( ‘wpcf7-f’ . $shortcode_id . ‘-o’, ‘wpcf7-f’ . $shortcode_id.‘-
   p’ . $id . ‘-o’, do_shortcode( $shortcode ) );
    }
 * <?php echo fix_wpcf7_do_shortcode( ‘[contact-form-7 id=”90″ title=”Find apartment”]’,
   get_the_ID() ); ?>
 * or
 * <?php echo do_shortcode( ‘[contact-form-7 id=”90″ title=”Find apartment”]’); ?
   >
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Stock Widget] DOW](https://wordpress.org/support/topic/dow/)
 *  [bigny](https://wordpress.org/support/users/bigny/)
 * (@bigny)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/dow/#post-8991609)
 * [@jcaruso001](https://wordpress.org/support/users/jcaruso001/) Is it possible
   to see the review? Please!

Viewing 7 replies - 1 through 7 (of 7 total)