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 / 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.
@kadimi
kadimi / ninja-forms-allow-curly-brackets-in-notifications.php
Created May 2, 2021 04:35
Allow curly brackets in Ninja Forms notifications.
<?php
/**
* Allow text between brackets in Ninja Forms notifications.
*
* - How to Use: wrap the text you want to put inside curly brackets in double square brackets, e.g. `[[tag]]`.
* - Setup: Add this code to your website (I recommend using the plugin Code Snippets).
*
* @author Nabil @ REI Conversion
*/
add_filter( 'ninja_forms_action_email_message', function($message) {
@kadimi
kadimi / sp_bp_sportspress_tab_slug.php
Last active October 16, 2020 16:29
Custom slug for the SportsPress tab on a BuddyPress profile
<?php
/**
* Change this line.
*/
define( 'Custom_BP_SprotsPress_Tab_Slug', 'change-this' );
/**
* Do not change below this line.
@kadimi
kadimi / sort_players_by_title_in_event_editing_pages.php
Created July 19, 2020 20:13
SportsPress - Sort players by title in event editing pages
<?php
// SportsPress - Sort players by title in event editing pages
add_action( 'admin_init', function() {
add_filter( 'pre_get_posts', function( $query ) {
if(
get_current_screen()->parent_file === 'edit.php?post_type=sp_player'
&& $query->get( 'post_type' ) === 'sp_player'
) {
$query->set( 'orderby', 'title' );