Results 1 to 2 of 2

Thread: Remove budget from campaign wizard

  1. #1
    YlinYlan is offline Junior Member
    Join Date
    May 2007
    Posts
    2

    Default Remove budget from campaign wizard

    Hello,

    I'm new at sugarcrm (4.5) and attempting to strip some functions that I don't need. Of course I ran into a problem.

    I need the budget portion in the campaign wizard removed (or ignored).

    I can remove the link in the menu and the information regarding the budget in the summary. When I remove the link in the menu (comment out the link) the next and back buttons no longer work. I suspect a problem with total_steps etc. and the javascript. Commenting out the link causes step counting problems?

    Anyone out there with suggestions, input?

    Kind regards,

    YlinYlan

  2. #2
    RobertCary is offline Member
    Join Date
    Mar 2008
    Posts
    7

    Default Re: Remove budget from campaign wizard

    It's not upgrade safe, but you can comment out the steps in /modules/campaigns/WizardNewsletter.php

    PHP Code:
    function create_newsletter_steps(){
        global 
    $mod_strings;
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_GEN1']]          = 'modules/Campaigns/tpls/WizardCampaignHeader.tpl';
        
    //$steps[$mod_strings['LBL_NAVIGATION_MENU_GEN2']]          = 'modules/Campaigns/tpls/WizardCampaignBudget.tpl';
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_TRACKERS']]      = 'modules/Campaigns/tpls/WizardCampaignTracker.tpl';
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_SUBSCRIPTIONS']] = 'modules/Campaigns/tpls/WizardCampaignTargetList.tpl';
        return  
    $steps;
    }

    function 
    create_campaign_steps(){
        global 
    $mod_strings;
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_GEN1']]          = 'modules/Campaigns/tpls/WizardCampaignHeader.tpl';
        
    //$steps[$mod_strings['LBL_NAVIGATION_MENU_GEN2']]          = 'modules/Campaigns/tpls/WizardCampaignBudget.tpl';
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_TRACKERS']]      = 'modules/Campaigns/tpls/WizardCampaignTracker.tpl';
        
    $steps[$mod_strings['LBL_TARGET_LISTS']]                   = 'modules/Campaigns/tpls/WizardCampaignTargetListForNonNewsLetter.tpl';
        return  
    $steps;
    }

    function 
    create_email_steps(){
        global 
    $mod_strings;
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_GEN1']]          = 'modules/Campaigns/tpls/WizardCampaignHeader.tpl';
        
    //$steps[$mod_strings['LBL_NAVIGATION_MENU_GEN2']]          = 'modules/Campaigns/tpls/WizardCampaignBudget.tpl';
        
    $steps[$mod_strings['LBL_NAVIGATION_MENU_TRACKERS']]      = 'modules/Campaigns/tpls/WizardCampaignTracker.tpl';
        
    $steps[$mod_strings['LBL_TARGET_LISTS']]                   = 'modules/Campaigns/tpls/WizardCampaignTargetListForNonNewsLetter.tpl';
        return  
    $steps;


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. HOW-TO guide for Email Campaigns.
    By agupta in forum Marketing/Campaign Management
    Replies: 146
    Last Post: 2012-01-31, 03:08 PM
  2. SugarSuite 4.0 - New Campaign management
    By manoj in forum Feature Requests
    Replies: 2
    Last Post: 2007-11-23, 10:13 PM
  3. Non-email campaign management
    By tomv in forum Feature Requests
    Replies: 0
    Last Post: 2006-06-05, 06:13 PM
  4. Missing Functionalities in SugarCRM 4.0.0 OS Version for Campaign Management
    By ravindram in forum Marketing/Campaign Management
    Replies: 1
    Last Post: 2006-05-16, 10:26 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •