Skip to content

Commit

Permalink
Fix order of plugin action links
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanPetakNeuralab committed Dec 27, 2022
1 parent f431a4d commit e90daec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion woocommerce-gateway-kekspay.php
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public function register_client_script() {
*/
public function add_settings_link( $links, $file ) {
if ( $file === plugin_basename( __FILE__ ) ) {
$links[] = '<a href="' . KEKSPAY_ADMIN_SETTINGS_URL . '">' . __( 'Postavke', 'kekspay' ) . '</a>';
array_unshift( $links, '<a href="' . KEKSPAY_ADMIN_SETTINGS_URL . '">' . __( 'Postavke', 'kekspay' ) . '</a>' );
}
return $links;
}
Expand Down

0 comments on commit e90daec

Please sign in to comment.