[ad_1]
Hello,
I am trying to add some content before checkout form using the following block of code but the content does not show up on the page.
function yf_additional_content_before_checkout() {
// Check if the current page has a post ID of 1463
if (is_page(1463)) {
echo '<div class="custom-content">';
echo '<table>';
echo '<tr><th>Header 1</th><th>Header 2</th></tr>';
echo '<tr><td>Data 1</td><td>Data 2</td></tr>';
echo '<tr><td>Data 3</td><td>Data 4</td></tr>';
echo '</table>';
echo '</div>';
}
}
add_action('learn_press_checkout_before_checkout_form', 'yf_additional_content_before_checkout');
I will appreciate some help.
Thank you!
The page I need help with: [log in to see the link]
