Skip to content

Instantly share code, notes, and snippets.

View adeel-raza's full-sized avatar

Adeel adeel-raza

View GitHub Profile
@adeel-raza
adeel-raza / functions.php
Last active January 29, 2025 09:25
Snippet to automatically mark LearnDash Lessons and Topics as complete when the user clicks "Next Lesson" or "Next Topic," eliminating the need to manually click "Mark Complete."
/**
* Handle the AJAX request to mark a LearnDash topic or lesson as complete.
*
* @return void
*/
function custom_evolve_handle_ld_mark_topic_complete() {
// Verify the nonce for security.
check_ajax_referer( 'ld_complete_nonce', 'nonce' );
// Get and sanitize input data.
@adeel-raza
adeel-raza / query.sql
Last active August 8, 2024 10:14
Delete all users on a WordPress site who haven't logged in for one year
-- Step 1: Delete from wp_usermeta
DELETE FROM wp_usermeta
WHERE user_id IN (
SELECT ID
FROM wp_users
WHERE ID IN (
SELECT user_id
FROM wp_usermeta
WHERE meta_key = 'last_login'
AND FROM_UNIXTIME(meta_value) < DATE_SUB(NOW(), INTERVAL 1 YEAR)
@adeel-raza
adeel-raza / csldapi.php
Last active July 31, 2024 14:06
Custom Endpoints to Fetch Learndash Courses and Users Information for a LD Group
<?php
/**
* Plugin Name: Custom LD Rest API
* Plugin URI: https://elearningevolve.com/
* Description: Provides custom REST API endpoints utilizing LearnDash
* Version: 1.0.0
* Author: eLearning evolve
* Author URI: https://elearningevolve.com/
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
@adeel-raza
adeel-raza / functions.php
Last active June 26, 2024 22:34
Get ACF custom field value for the current logged in WordPress user
/**
* Shortcode to get ACF field value for the current user.
*
* This shortcode retrieves the value of an Advanced Custom Fields (ACF) field
* for the currently logged-in user.
*
* Usage:
* [acf_custom_field field_name="your_acf_field_name"]
*
* The field_name attribute corresponds to the ACF field name.
@adeel-raza
adeel-raza / functions.php
Last active June 23, 2024 18:17
Add Custom CSS only to LearnDash pages and not the entire site
function load_custom_css_for_learndash( $hook = '' ) {
// Get the current post type
global $post;
$current_post_type = get_post_type( $post );
// Define the LearnDash post types, including certificates, exams, groups, assignments, and coupons
$learndash_post_types = array( 'sfwd-courses', 'sfwd-lessons', 'sfwd-topic', 'sfwd-quiz', 'sfwd-question', 'sfwd-certificates', 'ld-exam', 'groups', 'sfwd-assignment' );
// Check if the current post type is one of the LearnDash post types
if ( in_array( $current_post_type, $learndash_post_types ) ) {
@adeel-raza
adeel-raza / custom-code-plugin.php
Last active June 6, 2024 21:42
When using Uncanny automator sending a certificate link to user does not open the certificate due to security reasons, this snippet provides a solution for that
<?php
/*
Plugin Name: Custom Code By eLearning evolve
Description: This plugin holds the custom code implemented for this site by eLearning evolve
Version: 1.0
Author: Adeel Raza
Author URI: https://elearningevolve.com/learndash-developer
*/
/**
@adeel-raza
adeel-raza / functions.php
Created March 9, 2024 23:12
Show LearnDash Certificate Link For User By Certificate ID - Custom Shortcode
if ( isset( $_GET['user_id'] ) && $_GET['ld_certificate'] ) {
include_once LEARNDASH_LMS_PLUGIN_DIR . 'includes/ld-convert-post-pdf.php';
learndash_certificate_post_shortcode(
$cert_args = array(
'user_id' => esc_attr(
$_GET['user_id']
),
'cert_id' => esc_attr(
$_GET['ld_certificate']
),
@adeel-raza
adeel-raza / create-meeting-api-zoom-wordpress-plugin.php
Last active January 8, 2024 16:04
Dynamically Create a Meeting in your code with Zoom WordPress Plugin
function create_meeting_with_zoom_wordpress() {
// Place your Zoom user Host ID. Check it from Zoom Meetings -> Zoom Users -> Host ID
$zoom_host_id = 'x3VbIu8mT-m8-gWQNL05pQ';
// Your Meeting Settings
$create_meeting_arr = array(
'userId' => $zoom_host_id,
'meetingTopic' => 'Your_Meeting_Topic',
'start_date' => '2024-01-09 05:00:00', // Set it to a Future date/time for a scheduled meeting
@adeel-raza
adeel-raza / insertion-sort.php
Created December 20, 2023 12:06
Insertion sort contact list with PHP
<!--
Pusedo Code:
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Coding Arena</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
@adeel-raza
adeel-raza / functions.php
Last active December 13, 2023 16:02
Uppercase First Name, Last Name or User Login Name on LearnDash LMS Certificates
add_filter( 'learndash_usermeta_shortcode_field_value_display', 'ee_learndash_usermeta_shortcode_field_value_display_callback', 10, 2 );
function ee_learndash_usermeta_shortcode_field_value_display_callback( $value, $attr ) {
global $post;
// Don't apply logic if not on a certificate
if ( isset( $post->post_type ) ) {
$is_certificate_page = $post->post_type;
if ( 'sfwd-certificates' != $is_certificate_page ) {
return $value;
}
}