Search results

  1. S

    Example extensions for extension developemnt

    Thank you for good example. I was just wondering when building extensions, I got issue on this part of the line on the example /** * Now we can continue only if the extension is enabled from its settings: */ if ($this->getOption('enabled', 'no') != 'yes') {...
  2. S

    How to override existing core view

    Hi Twisted1919, You are right I have removed url manager from my extension and getviewpath method from mycontroller.. and replace my render like this $this->render('ext-previous-click-unclick.customer.view.campaign.step-setup'); Now its working fine..
  3. S

    How to override existing core view

    Hi Twisted1919, you do not have to add custom url rules to overwrite the core ones. If i am overriding core campaigns/setup view.. if anybody hits campaigns/setup url i have to hit my Extenstioncontroller and load my custom view, thats why i have given urlmanager inside my extension. is that...
  4. S

    How to override existing core view

    Hi twisted1919, I am able to override, but now i have another problem This is inside customer/config/main.php array('campaigns/<action>', 'pattern' => 'campaigns/<campaign_uid:([a-z0-9]+)>/<action:(\w+)>'), In my extension i have added following urls...
  5. S

    How to override existing core view

    I saw this comment.. but its not working twisted1919 i used $collection->renderForm = false. but it not hiding default content. /** * This hook gives a chance to prepend content before the active form or to replace the default active form entirely. * Please note that from inside the...
  6. S

    How to override existing core view

    Hi twisted1919, I am trying to override view file, I am using hooks before_active_form_fields to add existing fields and adding extra fields. It seems only appending new view is possible . Is there any way to replace the existing view with new content. For example: Existing view Name field...
  7. S

    How to override existing core view

    Hi Mailwizz Members, I am trying to add new field inside campaign setup form. But i dont have Hook exactly on that place. So how to include our html inbetween core view. Thanks, Developer
Back
Top