Recent content by Radi

  1. Radi

    Silverpop Integration

    On new user registration, the user email is inserted the SP database. Every month we send newsletters to our users. I hope that answers your question.
  2. Radi

    Silverpop Integration

    Silverpop is a premium email marketing service. You can read reviews here: https://www.g2crowd.com/products/silverpop-an-ibm-company/reviews
  3. Radi

    Unmaintained Silverpop Integration 0.0.3

    Please submit any bugs or feature requests here: https://github.com/rvarbanov/XenForo-SilverpopIntegration/issues This is an add-on for XenForo that allows you to integrate Silverpop A mysql query that I used to export the xenforo user emails to use on Silverpop: SELECT u.user_id AS...
  4. Radi

    Silverpop Integration

    Radi submitted a new resource: Silverpop Integration - This is an add-on allows you to integrate Silverpop Read more about this resource...
  5. Radi

    Extending _completeRegistration()

    Hi, I am working on a plugin and would like to intercept the registration and save the new user data on a different server. Do you see any issues with using _completeRegistration() for that?
  6. Radi

    Event Listener Hints

    In my case, I am already using load_class_xxx. Does that mean that I do not need to use the "Event Listener Hints"?
  7. Radi

    The field 'silverpopintegration_subscription' was not recognised.

    I found my error. I copied the code and never updated the input name... I am able to update the DB, but now I am not able to retrieve the value from it. EDIT: I found a work around that by using $visitor['silverpopintegration_subscription'], but would like to know what I am doing wrong? Do I...
  8. Radi

    The field 'silverpopintegration_subscription' was not recognised.

    I am testing now with $writer->set('silverpopintegration_subscription', $this->_input->filterSingle('silverpopintegration_subscription', XenForo_Input::BOOLEAN)); but still not good. here is my form: <xen:title>{xen:phrase silverpopintegration_email_preferences}</xen:title> <xen:require...
  9. Radi

    Event Listener Hints

    @Chris D would you please explain what the "Event Listener Hints" are used for and how to use them?
  10. Radi

    The field 'silverpopintegration_subscription' was not recognised.

    @Jake B. do you have any idea why $settings = $this->_input->filter(array('silverpopintegration_subscription' => XenForo_Input::UINT)); is not getting populated from my form?
  11. Radi

    The field 'silverpopintegration_subscription' was not recognised.

    That was it. I added load_class_datawriter and used the same class::method and it worked! Thank you man!
  12. Radi

    The field 'silverpopintegration_subscription' was not recognised.

    When I try to save to xf_user_option I get this: "The field 'silverpopintegration_subscription' was not recognised." Here is my code: class SilverpopIntegration_XenForo_ControllerPublic_Account extends XFCP_SilverpopIntegration_XenForo_ControllerPublic_Account { public function...
  13. Radi

    _preSave() and _postSave() explained?

    I am still not understanding how I am supposed to same my data I created a new page: /index.php?account/email-preferences with a checkbox that I would like to save the state of in the DB. class SilverpopIntegration_XenForo_DataWriter_User extends...
  14. Radi

    _preSave() and _postSave() explained?

    Thank you for the clarification!
Top Bottom