kostiantyn
Forum Replies Created
-
Hi,
Thanks for a quick reply.
I have one more challenge. When I add a group in conditional logic builder. It stops working and just displays the element. Here is a screenshot to the rule https://prnt.sc/q32q0bHi Gabriel,
It worked, thanks for your help!
Best regards,
KostiantynYes, I’m using the free version.
I have created a custom endpoint to display content on My Account page. And I can display the fields one by one
function my_custom_endpoint_content() {
echo ‘<h3>Next of Kin</h3>’;
global $current_user;
get_currentuserinfo();
echo ‘First Name ‘ . $current_user->next_of_kin_first_name . “\n”;
echo ‘Last Name ‘ . $current_user->next_of_kin_last_name . “\n”;
echo ‘Phone Number ‘ . $current_user->next_of_kin_phone . “\n”;
}add_action( ‘woocommerce_account_my-custom-endpoint_endpoint’, ‘my_custom_endpoint_content’ );
But I would like to display it the way it displays by shortcode on any other page. How do I display a specific form without a shortcode?
Hi @gabrielberzescu
Thanks for your reply.I cannot insert a shortcode into My Account page because it’s generated by WooCommerce. So I think I’m missing something.
Actually I see that it saves the field entries. So, is it possible to display it the way it is displayed on the page using the shortcode?
Forum: Plugins
In reply to: [Countdown Timer] Changing Display StyleFound it. From line 1056
Forum: Plugins
In reply to: [Sermon Manager] 404 Page not Found@nikolam, thanks! It worked for me!!