Как использовать плагин userultra с шаблоном страницы в Wordoress

У меня проблема с плагином usersultra для WordPress.

I have  created a template page for search, but i only want to display it for the client who is logged in, how can i use usersultra for this case.

Secondly when i check 'Only Logged in Users' checkbox in page settings it displays the content of my page and form of registration at the same time.

Please how can i resolve this problem.

РЕДАКТИРОВАТЬ:

это то, что я пытаюсь, но это не работает

<?php echo do_shortcode("[usersultra_protect_content display_rule='logged_in_based'  custom_message_loggedin='Only Logged in users can see the content']

    <b>myfield :</b><?php the_field('myfield');?>

[/usersultra_protect_content]"); ?>

он показывает только текст, а не значение.

РЕДАКТИРОВАТЬ 2:

он работал с кодом, предоставленным Ахмедом

<?php echo do_shortcode("[usersultra_protect_content display_rule='logged_in_based'  custom_message_loggedin='Only Logged in users can see the content']

        <b>myfield :</b>".the_field('myfield')."

    [/usersultra_protect_content]"); ?>

1 ответ

Решение

Вы можете сделать это с помощью этого шорткода,

<?php echo do_shortcode("[usersultra_protect_content display_rule='logged_in_based'  custom_message_loggedin='Only Logged in users can see the content']Your private content here [/usersultra_protect_content]"); ?>

Шорткод указан здесь на странице документации: https://usersultra.com/userultra/

Другие вопросы по тегам