phpwordpresswoocommerceadvanced-custom-fieldsproduct

Using wc_get_product() with a PHP variable for product ID


I'm building out custom landing pages for products in WooCommerce and I'd like to get the product price amongst other things in order to display them on the landing page.

Each landing page has some custom fields which allow the WP Admin to add in content, for the landing page as well as the product ID, which will then be used to generate the product price, checkout URL etc..

I can't get the wc_get_product(); to work with my custom field or a variable built off that. It only works when I use a straight ID. I think there's something I'm not understanding about how variables work within PHP. Here's my code.

<?php 

//Gets the course ID from the custom field entered by user
$courseID = the_field('course_id');

// This line is where the problem is...
$_product = wc_get_product('$courseID');

// If I replace the line above with this line
// $_product = wc_get_product('7217');
//  everything works great, but that does not let 
// each landing page function based on the custom fields where the user determines 
// the product ID they are selling on that landing page.


// Get's the price of the product
$course_price = $_product->get_regular_price();

// Output the Course price
?>  <span class="coursePrice">$<?php echo $course_price;?></span>

Update

I get the following error using wc_get_product( $courseID ); or get_product( $courseID );:

Fatal error: Call to a member function get_regular_price() on a non-object in ... 

Solution

  • I figured out the answer after running through the possible solution routes that @LoicTheAztec supplied in his response. None of these worked and so I assumed something else was up.

    I use Advanced Custom Fields to add custom fields in the back end and I was using ACF's the_field() in order to create my variable. That is incorrect usage of that function as it's designed to display the field, (it's basically using php's echo). To work with these custom field's you need to use ACf's get_field() which is to use it to store a value, echo a value and interact with a value.

    Once I switched to setting my $courseID to this..

    $courseID = get_field('course_id'); 
    

    Everything worked. My code worked, and all @LoicTheAztec's code approaches also worked.