우커머스 내 계정 - 결제 페이지에서 로그아웃 했을 때 우커머스 로그인 페이지가 출력이 되어
add_filter('the_content', 'my_the_content_filter', 10, 1);
function my_the_content_filter($content){
if(is_account_page() && !is_user_logged_in()){
$content = do_shortcode('[cosmosfarm_members_login_form]');
}
return $content;
}
이 코드를 추가하여 kboard 로그인 페이지가 나타나게 수정은 했습니다.
숏코드가 아닌 로그인 페이지로 리다이렉트를 하려고 하면 어떻게 수정을 해야할까요 ?
감사합니다 ! 해결완료하였습니다 :)
안녕하세요~^^
KBoard 플러그인은 워드프레스 게시판 플러그인입니다.
회원관리 관련된 플러그인은 코스모스팜 회원관리 플러그인입니다.
the_content 필터를 활용해서 페이지 이동하게 하시려면
아래 코드를 활용해보시겠어요?
add_filter('the_content', 'my_the_content_filter', 10, 1);
function my_the_content_filter($content){
if(is_account_page() && !is_user_logged_in()){
?>
<script>
window.location.href = '페이지주소';
</script>
<?php
}
return $content;
}
위의 코드에서 페이지주소 부분에는 실제 이동할 페이지 주소로 적용해보세요.
고맙습니다.