Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
selul committed Jul 8, 2024
1 parent d2d9ef2 commit 731130f
Showing 1 changed file with 21 additions and 18 deletions.
39 changes: 21 additions & 18 deletions src/Modules/About_us.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,24 +130,27 @@ public function add_submenu_pages() {
'',
101
);
add_action( 'admin_footer', function () {
?>
<style>
.tsdk-upg-menu-item {
color: #009528;
}

.tsdk-upg-menu-item:hover {
color: #008a20;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('.tsdk-upg-menu-item').parent().attr('target', '_blank');
});
</script>
<?php
} );
add_action(
'admin_footer',
function () {
?>
<style>
.tsdk-upg-menu-item {
color: #009528;
}

.tsdk-upg-menu-item:hover {
color: #008a20;
}
</style>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$('.tsdk-upg-menu-item').parent().attr('target', '_blank');
});
</script>
<?php
}
);
}

/**
Expand Down

0 comments on commit 731130f

Please sign in to comment.