Title: Christian Freeman (codelion)'s Replies | WordPress.org

---

# Christian Freeman (codelion)

  [  ](https://wordpress.org/support/users/takinglife2themax/)

 *   [Profile](https://wordpress.org/support/users/takinglife2themax/)
 *   [Topics Started](https://wordpress.org/support/users/takinglife2themax/topics/)
 *   [Replies Created](https://wordpress.org/support/users/takinglife2themax/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/takinglife2themax/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/takinglife2themax/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/takinglife2themax/engagements/)
 *   [Favorites](https://wordpress.org/support/users/takinglife2themax/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 101 total)

1 [2](https://wordpress.org/support/users/takinglife2themax/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/takinglife2themax/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/takinglife2themax/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/takinglife2themax/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/takinglife2themax/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/takinglife2themax/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Points Management System For Gamification, Ranks, Badges, and Loyalty Rewards Program - myCred] Default WooCommerce Error on Checkout with Insufficient Funds](https://wordpress.org/support/topic/default-woocommerce-error-on-checkout-with-insufficient-funds/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/default-woocommerce-error-on-checkout-with-insufficient-funds/#post-18210061)
 * Thanks [@bukhari10](https://wordpress.org/support/users/bukhari10/)!
 * I uploaded the updated plugin and it’s working smoothly now. I was also able 
   to change the “Insufficient funds” message via the included filter. Here’s the
   code snippet:
 *     ```wp-block-code
       function bgb_mycred_insufficient_funds( $message ) {if ( ! function_exists( 'mycred_get_users_balance' ) ) return $message;$user_id = get_current_user_id();$balance = mycred_get_users_balance( $user_id );$cart_total = WC()->cart->cart_contents_total;$amount_needed = $cart_total - $balance;$url = home_url() . '/add-points'; // The page where the buyCRED shortcode exists$link = '<a href="'. $url .'" target="_blank" class="button">Add Points</a>';$message = sprintf( __( 'You don\'t have enough Points. <span>Add %d Points</span> to your account to continue. %s', 'bgb-theme'), $amount_needed, $link );return $message;}add_filter( 'mycred_woo_error_insufficient_funds', 'bgb_mycred_insufficient_funds', 10 );
       ```
   
 * I also created another similar code snippet, that calculates the amount of points
   they need to add to make the purchase, and adds the buyCRED button with that 
   exact amount to the WooCommerce checkout:
 *     ```wp-block-code
       function bgb_add_buycred_to_checkout() {if ( ! function_exists( 'mycred_get_users_balance' ) ) return;$user_id = get_current_user_id();$balance = mycred_get_users_balance( $user_id );$cart_total = WC()->cart->cart_contents_total;$amount_needed = $cart_total - $balance;// Don't show the button if the user has enoughif ( $amount_needed < 0 ) return;echo do_shortcode( '[mycred_buy gateway="paypal-standard" class="button checkout-buycred" amount="'. $amount_needed .'" ]Add '. $amount_needed .' Points[/mycred_buy]' );}add_action( 'woocommerce_review_order_before_submit', 'bgb_add_buycred_to_checkout', 10 );
       ```
   
 * It’s working great. Thanks again.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WCFM - Frontend Manager for WooCommerce] 404 Error on Store anager Settings](https://wordpress.org/support/topic/404-error-on-store-anager-settings/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [3 years, 6 months ago](https://wordpress.org/support/topic/404-error-on-store-anager-settings/#post-16433452)
 * OK, after clearing my browser cache as well as the server cache, and restarting
   the browser, the 404 is gone.
 * Looks like this problem is solved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP ULike – Like Buttons, Voting & Engagement Analytics] 0 in Blog Archive Post Content](https://wordpress.org/support/topic/0-in-blog-archive-post-content/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/0-in-blog-archive-post-content/#post-13980702)
 * Thanks Alimir,
 * I turned off the auto display and added to my theme template. Everything is working
   great now. Thanks again, and keep up the good work!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BP Birthday Greetings] Does it show Birthdays Coming?](https://wordpress.org/support/topic/does-it-show-birthdays-coming/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/does-it-show-birthdays-coming/#post-13505221)
 * Awesome, thanks!
 * Do you have any estimated time for when the update will be released?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BP Birthday Greetings] Does it show Birthdays Coming?](https://wordpress.org/support/topic/does-it-show-birthdays-coming/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/does-it-show-birthdays-coming/#post-13368184)
 * My Time Zone is set to New York in WordPress.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BP Birthday Greetings] Does it show Birthdays Coming?](https://wordpress.org/support/topic/does-it-show-birthdays-coming/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/does-it-show-birthdays-coming/#post-13351345)
 * Hi Prashant,
 * For me, when I enter the Birthday for the current day, it doesn’t appear in the
   widget. It only shows up if I set the Birthday to Tomorrow.
 * How is the date calculated? Is it based on your Time Zone, or the Time Zone set
   in my WordPress install?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Avatars List/Block] Showing BP XProfile Fields via Shortcode](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/#post-9717980)
 * Thanks a ton Paul!
 * I updated to the latest version and the comma separated values are working smoothly.
   Now, I just need to use the filter you showed me to add the field labels before
   the field values.
 * Thanks again!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Avatars List/Block] Showing BP XProfile Fields via Shortcode](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/#post-9714751)
 * Hey Paul,
 * I’m just checking back in with you on this. Do you have any ideas on how I can
   get convert the Array output into a comma separated string of values? Do I need
   to edit core files for this? And if so, which ones?
 * Thanks, and keep up the good work!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Avatars List/Block] Showing BP XProfile Fields via Shortcode](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/#post-9696160)
 * Thanks Paul,
 * I tried to adapt the filter you provided to swapping out the array value to a
   comma separated list, but it’s just not working for replacing the value within
   the html variable.
 * Thanks, that would be awesome if you could implode arrays into a string of comma
   separated values.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Avatars List/Block] Showing BP XProfile Fields via Shortcode](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/#post-9691173)
 * Thanks for the quick solution Paul!
 * I’m not able to add those xProfile fields to the Authors List. However, I noticed
   that it doesn’t display the field data for XProfile fields that are in a multi-
   check/list format, with multiple values. It only outputs “Array”.
 * Do you think that you could update this to output a comma separated list of values
   for these type of fields?
 * Thanks again, and nice work my friend!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Author Avatars List/Block] Showing BP XProfile Fields via Shortcode](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/showing-bp-xprofile-fields-via-shortcode/#post-9616821)
 * Hi Paul,
 * What do you mean by disable options? I don’t see anything related to xprofile
   fields on the shortcode creation button in the TinyMCE. Is there an argument 
   that I can use to add the xprofile field name to the shortcode manually?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress for LearnDash] No Settings in WP Admin](https://wordpress.org/support/topic/no-settings-in-wp-admin/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/no-settings-in-wp-admin/#post-9463969)
 * Well, I also have the Enable MultiBlog constant enabled, so I guess I expected
   BP for LD to recognize that the constant was enabled (Making BuddyPress Gloabal
   accross all of my sites), but I guess it doesn’t do that.
 * My solution was to Network Deactivate BuddyPress, and Single Site activate it
   on each SubSite (Keeping MultiBlog enabled). So BuddyPress is still Global, but
   now BP for LD works, because BuddyPress is no longer network activated.
 * Thanks guys
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress for LearnDash] No Settings in WP Admin](https://wordpress.org/support/topic/no-settings-in-wp-admin/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/no-settings-in-wp-admin/#post-9459599)
 * Hello,
 * Okay, I updated to the latest version and it fixed the issue with the white screen
   when trying to edit certain Courses. So thanks for that.
 * I’m still experiencing the issues of the missing settings in WP Admin, BP Groups,
   and LD Courses. To answer your question:
    BuddyPress for Learndash (Single Site
   Activated) BuddyPress (Network Activated) LearnDash (Single Site Activated)
 * I tested on another Multisite install where BuddyPress is single site activated,
   and everything works just fine. All of the settings are there in WP Admin, BP
   Groups, and LD Courses.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress for LearnDash] No Settings in WP Admin](https://wordpress.org/support/topic/no-settings-in-wp-admin/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/no-settings-in-wp-admin/#post-9452774)
 * I’m viewing the settings page as a Super Admin (I’m on a WordPress MultiSite)
   and even if I try logging in as an another Admin user on the site, the settings
   still aren’t appearing. And, when I check the group settings (On the front end
   and in WP Admin), there are no settings for LearnDash Courses listed there.
 * I’m also having the same issue a Blank Page when trying to edit certain courses,
   as posted by quite a few others here:
    [https://wordpress.org/support/topic/blank-page-course-backend/](https://wordpress.org/support/topic/blank-page-course-backend/)
 * So, there are obviously some bugs in this version of the BP for LearnDash plugin.
   How quickly can you fix these issues? Right now, I can’t use this plugin at all
   because none of the settings are there.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Awesome Support - WordPress HelpDesk & Support Plugin] Auto-Assign Tickets by Product](https://wordpress.org/support/topic/auto-assign-tickets-by-product/)
 *  Thread Starter [Christian Freeman (codelion)](https://wordpress.org/support/users/takinglife2themax/)
 * (@takinglife2themax)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/auto-assign-tickets-by-product/#post-7305689)
 * Any thoughts on this guys?
 * I understand that this is a feature that you said you were developing, but that
   was quite some time ago, and I need this feature in order to start using Awesome
   Support fully.
 * It’s a great plugin, but I feel that this is a major missing element.

Viewing 15 replies - 1 through 15 (of 101 total)

1 [2](https://wordpress.org/support/users/takinglife2themax/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/takinglife2themax/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/takinglife2themax/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/takinglife2themax/replies/page/6/?output_format=md)
[7](https://wordpress.org/support/users/takinglife2themax/replies/page/7/?output_format=md)
[→](https://wordpress.org/support/users/takinglife2themax/replies/page/2/?output_format=md)