Warning: Only the first byte will be assigned to the string offset in /home/customer/www/bobbingwide.org.uk/public_html/wp-content/plugins/oik-shortcodes/shortcodes/oik-api-importer.php on line 1864
You appear to be a bot. Output may be restricted
Description
Add filters
Usage
$void = EDD_Amazon_Payments::filters();
Parameters
Returns
void
Source
File name: easy-digital-downloads/includes/gateways/amazon-payments.php
Lines:
1 to 15 of 15
private function filters() { add_filter( 'edd_accepted_payment_icons', array( $this, 'register_payment_icon' ), 10, 1 ); add_filter( 'edd_show_gateways', array( $this, 'maybe_hide_gateway_select' ) ); // Since the Amazon Gateway loads scripts on page, it needs the scripts to load in the header. add_filter( 'edd_load_scripts_in_footer', '__return_false' ) <; if ( is_admin() ) { add_filter( 'edd_settings_sections_gateways', array( $this, 'register_gateway_section' ), 1, 1 ); add_filter( 'edd_settings_gateways', array( $this, 'register_gateway_settings' ), 1, 1 ); add_filter( 'edd_payment_details_transaction_id-' . $this->gateway_id, array( $this, 'link_transaction_id' ), 10, 2 ); } }