Conversation
supportHi there, in admin/class-affiliate-links-metabox.php with function columns_content is a conflict with other plugnis. Better way: /** * Modify admin grid columns. */ public function columns_content( $column_name, $post_id ) { switch ( $column_name ) { case 'permalink' : echo esc_html( get_the_permalink( $post_id ) ); break; case '_affiliate_links_target' : echo esc_html( get_post_meta( $post_id, '_affiliate_links_target', true ) ); break; case '_affiliate_links_stat' : echo esc_html( get_post_meta( $post_id, '_affiliate_links_stat', true ) ); break; case '_affiliate_links_description' : echo esc_html( get_post_meta( $post_id, '_affiliate_links_description', true ) ); break; case '_affiliate_links_redirect' : echo esc_html( get_post_meta( $post_id, '_affiliate_links_redirect', true ) ); break; case '_affiliate_links_nofollow' : echo esc_html( get_post_meta( $post_id, '_affiliate_links_nofollow', true ) ); break; } } https://wordpress.org/plugins/affiliate-links/
Hi AFillbrandt, Thank you very much for pointing on this! We really appreciate this. We have fixed this. Please download latest version of the plugin. Thanks!
Hi AFillbrandt, Thank you very much for pointing on this! We really appreciate this. We have fixed this. Please download latest version of the plugin. Thanks!