Jimako
Jimako
Confirmed. Still issue.
https://github.com/e107inc/e107/discussions/4674
**Adding SEF** generation button to FAQs category Like: `'writeParms'=>array('size'=>'xxlarge', 'sef'=>'faq_info_title' ) ` **Adding breadcrumbs** - when you click on the category, there is no option to return to the main...
Thanks. I will check it. But maybe it's safer to create menu and put it in frontpage... I will see. It's hard to debug this if localhost works.
@Moc using custom URL solved this problem (@rica-carv suggestion from above-mentioned issue). With the same URL as in e_frontpage with {e_PLUGIN} Just to have it completed. https://github.com/e107inc/e107/issues/927 Maybe this can...
This is from _blank plugin example: ``` $event[] = array( 'name' => "login", // when this is triggered... (see http://e107.org/developer-manual/classes-and-methods#events) 'function' => "myfunction", // ..run this function (see below). );...
The field in user table? :)
@Moc If I remember correctly, it is triggered, but it fails here: ``` $insert = array( 'penname' => $userData['user_name'], 'email' => $userData['user_email'], 'password' => '', //delete 'date' => $userData['user_join'], 'user_id'...
It sounds good to me. USERID is used in most examples, so... I will try it, thanks.
Tested this way in e_event: ``` $new_userid = e107::getUser()->getId(); $userData = e107::user($new_userid); var_dump($new_userid); var_dump($userData); die; ``` result: `int(0) bool(false) ` Then I found a similar test is in the forum...