Answer the question
In order to leave comments, you need to log in
How to see (find) an infoblock element by ID in the Bitrix Admin if it is not known in which infoblock it is located?
How to see (find) an infoblock element by ID in the Bitrix Admin if it is not known in which infoblock it is located, and it is not even known if an element with such an ID even exists?
Answer the question
In order to leave comments, you need to log in
<your site>/bitrix/admin/iblock_redirect_entity.php?lang=ru
in the admin panel it is possible to do this!
in the id of the entity, specify the id of the element
but in the admin panel, most likely not how, create a page with the code
if(!CModule::IncludeModule("iblock")) return;
<?
$res = CIBlockElement::GetByID(%сюда ваш ID%);
if($ar_res = $res->GetNext())
var_dump($ar_res);
?>
<your site>/bitrix/admin/sql.php
select ID, IBLOCK_ID, IBLOCK_SECTION_ID from b_iblock_element where ID = <your id>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question