This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Add a new "Subscription Reminders" tab in the Product Data panel | |
* for Simple Subscription products only. | |
*/ | |
add_filter( 'woocommerce_product_data_tabs', 'wcs_add_subscriptions_reminders_tab_simple' ); | |
function wcs_add_subscriptions_reminders_tab_simple( $tabs ) { | |
// Only add this tab for subscription products (excluding variable-subscriptions). | |
// The "show_if_subscription" class ensures the tab is visible only for "simple subscription". | |
$tabs['wcs_sub_reminders_simple'] = array( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery('form.woocommerce-checkout').on('change', 'input.gift_sending_date_time', function(e){ | |
let date_time_wrapper = jQuery(this).closest('.email_sending_date_time_wrapper'); | |
let gift_sending_date_time = jQuery(date_time_wrapper).find('.gift_sending_date_time').val(); | |
if ('' === gift_sending_date_time) { | |
return; | |
} | |
// Split the date and time correctly | |
let gift_sending_date_time_parts = gift_sending_date_time.split(' '); | |
let gift_sending_date = gift_sending_date_time_parts[0]; // Date part (e.g., '23-12-2024') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Register the shortcode | |
add_shortcode( 'learndash_lesson_progress', 'learndash_lesson_progress_bar' ); | |
function learndash_lesson_progress_bar ( $atts = array(), $content = '' ) { | |
global $learndash_shortcode_used; | |
$learndash_shortcode_used = true; | |
$atts = shortcode_atts( | |
array( | |
'lesson_id' => 0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_shortcode( 'learndash_category_progress', 'learndash_category_progress', 10, 3 ); | |
function learndash_category_progress( $atts = array(), $content = '', $shortcode_slug = 'learndash_category_progress' ) { | |
global $learndash_shortcode_used; | |
$learndash_shortcode_used = true; | |
$atts = shortcode_atts( | |
array( | |
'course_category_id' => 0, | |
'user_id' => 0, | |
'array' => false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Hook into init action to set bundled_position to "no" if the shortcode is used | |
function wpc_set_bundled_position() { | |
add_filter('woosb_get_setting', 'wpc_disable_bundled_position', 10, 3); | |
} | |
// Function to set bundled_position to "no" if the shortcode is used | |
function wpc_disable_bundled_position($setting, $name, $default) { | |
// Check if the shortcode is used on the current page | |
if ($name === 'bundled_position' && wpc_is_show_bundled_shortcode_used()) { | |
return 'no'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Register custom sidebar | |
function custom_register_sidebars() { | |
register_sidebar( array( | |
'name' => 'Header', | |
'id' => 'header_sidebar', | |
'description' => 'Widgets in this area will be shown in the header.', | |
'before_widget' => '<div id="%1$s" class="widget %2$s">', | |
'after_widget' => '</div>', | |
'before_title' => '<h2 class="widgettitle">', | |
'after_title' => '</h2>', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Initialize the global flag on the wp action hook | |
add_action('wp', 'initialize_force_public_page_flag'); | |
function initialize_force_public_page_flag() { | |
global $is_force_public_page, $wp_query; | |
$is_force_public_page = false; | |
if (!empty($wp_query->queried_object_id)) { | |
$is_force_public_page = get_post_meta($wp_query->queried_object_id, '_wc_memberships_force_public', true) === 'yes'; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Output an ACF post relationship field type using a shortcode: | |
* [acf_relationship_field field="field_name" show="all"] | |
* You can also pass `post_id` as an attribute | |
* | |
* Show parameter accepts any comma seperated combination of: all, title, title_linked, date, author, post_excerpt, post_content | |
* | |
* Works with Post Object and Relationship fields, when the return | |
* format is both post object and post ID | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'affwp_leaderboard_defaults', 'group_affwp_leaderboard_defaults', 10 ); | |
function group_affwp_leaderboard_defaults( $defaults ) { | |
$defaults['connected_to'] = array( | |
'get_connectable' => 'affiliate', | |
'where_connectable' => 'group', | |
'where_id' => 2, // ID of the affiliate group | |
'where_group_type' => 'affiliate-group', | |
); | |
return $defaults; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//For Use with Elementor Lesson List & topic List Grid widgets | |
add_filter( 'learndash_course_grid_html_output', 'learndash_course_grid_add_avilable_date', 10, 4 ); | |
function learndash_course_grid_add_avilable_date( $data, $post, $shortcode_atts, $user_id ) { | |
if ( 'sfwd-topic' == $post->post_type || 'sfwd-lessons' == $post->post_type ) { | |
$course_id = $shortcode_atts['course_id']; | |
if( $course_id ){ | |
$attributes = learndash_get_course_step_attributes( $post->ID, $course_id, $user_id ); | |
$is_sample = ( isset( $lesson->sample ) ? $post->sample : false ); | |
$ld_lesson_has_access = sfwd_lms_has_access( $post->ID, $user_id ); | |
$ld_available_date = learndash_course_step_available_date( $post->ID, $course_id, $user_id, true ); |
NewerOlder