태그 연관글 애드온과 SNS 공유 시 문서 불러오는 문제입니다.
사용 애드온
1. tag_relation (혹은 rxp_tag_relation)
2. xns_addon_insert_sns_share
이 둘을 함께 사용했을 때 SNS 공유 시 tag_relation 에서 표시한 가장 마지막 글을 불러옵니다.
즉, 해당 문서를 불러와 공유하는 것이 아니라 연관글의 마지막 글이 공유되어 버립니다
코알못이지만
tag_relation 의 마지막 문서 document 번호가 어디 변수(?)에 남아 xns_ 애드온이 이걸 불러오는 게 아닌가 하는 추측을 해 봅니다.
xns_ 애드온에서는
$item_url = getFullUrl('','document_srl',$oDocument->document_srl);
이렇게 문서 정보를 불러오는 것 같습니다.
어떻게 해결해야 할지 도움 주시면 감사 드리겠습니다.
sns 공유 애드온에서
//$oDocument = Context::get('oDocument')
위 코드주석하고 아래것으로 바꿔보세요.
if(!Context::get('document_srl')) return;
$document_srl = Context::get('document_srl');
$oDocumentModel = getModel('document');
$oDocument = $oDocumentModel->getDocument($document_srl);
RXP 태그 연관글 애드온 다른 오류도 있고 애로점이 있네요.....