Skip to content

Instantly share code, notes, and snippets.

View kadimi's full-sized avatar
I love programming...

Nabil Kadimi kadimi

I love programming...
View GitHub Profile
@kadimi
kadimi / sportspress-add-player-list-automatically.php
Last active March 24, 2023 13:16
For SportsPress - Add a player list on the fly to the current team.
<?php
/**
* Add a player list on the fly to the current team.
*/
add_action(
'init',
function () {
/**
@kadimi
kadimi / sportspress-custom-past-events-list-columns.php
Created January 29, 2023 18:49
SportsPress - Customize past events list columns
<?php
/**
* Customize past events list columns.
*/
add_action( 'init', function() {
/**
* Desired columns.
*
@kadimi
kadimi / sportspress-translate-read-more.php
Created October 5, 2022 13:44
SportsPress - Translate "Read more..."
<?php
add_filter( 'gettext', function( $translated_text, $text, $domain ) {
if ( 'mega-slider' === $domain ) {
if ( 'Read more...' === $text ) {
return 'YOUR TEXT HERE';
}
}
return $translated_text;
}, 10, 3 );
@kadimi
kadimi / removeEndingSubString.js
Created June 26, 2022 15:38
Remove ending substring from a string
/**
* `removeEndingSubString` removes a substring from the end of a string.
*
* It will only remove the exact substring. So if the string doesn't end
* with the substring, nothing happens and the original string is returned
* as is.
*
* @link https://kadimi.com/ | https://gist.github.com/kadimi/32bb8f4cc56224343992806fd0898322
* @author Nabil Kadimi
*
@kadimi
kadimi / no-frontpage-sidebar.php
Last active June 3, 2022 15:11
Remove the sidebar from the front page only - Compatible with ThemeBoy themes.
<?php
/**
* Remove the sidebar from the front page only - Compatible with ThemeBoy themes.
*
* @author Nabil Kadimi
*/
add_filter( 'option_themeboy', function( $value ) {
return is_front_page() ? [ 'sidebar' => 'no' ] + ( array ) $value : $value;
} );
@kadimi
kadimi / sporspress-cursomize-player-details.php
Created April 9, 2022 15:57
SportsPress - Customize Player Details
<?php
add_filter( 'sportspress_player_details', function( $data ) {
$labels_from_to = [
'موضع' => 'المركز',
'الفريق الحالي' => 'النادي',
'المواسم' => 'الموسم الرياضي',
];
@kadimi
kadimi / playlist-dl.sh
Created February 12, 2022 16:48
playlist-dl
youtube-dl -o '%(uploader)s - %(playlist)s/%(playlist_index)s - %(title)s.%(ext)s'
@kadimi
kadimi / team_events_sorting_direction.php
Created December 20, 2021 12:31
SportsPress Team Event Sorting Direction
<?php
add_filter( 'sp_team_events_list_args', function( $args ) {
$args[ 'order' ] = 'ASC';
return $args;
} );
@kadimi
kadimi / wp-disable-comment-on-all-attachments.sh
Last active September 8, 2021 21:31
Disable comments on all attachments using WP-CLI - #wordpress #spam
# /bin/sh
# Disable comments on all attachment posts using WP-CLI - #wordpress #spam
wp post update --comment_status=closed $(wp post list --post_type=attachment --format=ids)
#
# Sample Output
# =============
# Success: Updated post 3.