{docurl}
Is there any way to configure specific global headers and footers for each affiliate that will show up any time a customer they referred is shopping in the store?
There is a sub-tab for each individual affiliate (and also on the main "Options" tab where defaults can be set) that permits particular "design settings" to be configured for that affiliate (and as a default on the main "Options" tab). Soon these "design settings" will include most of the store's configuration options (such as fonts, colors, etc.) but currently only the Global Header and Footer are supported.
You'll find the fields to specify the header and footer on the "Design Settings" tabs.
Once configured, the global header and footer can be displayed with the token:
&mvt:global:AffiliateData:GLOBAL_HEADER;
which will NOT process any tokens in the field. In the alternative, you can have the Affiliate Manager process the field for the same tokens that are available for use in the invoice by using the item:
<mvt:item name="BROK_AFFILIATES" param="GLOBAL_HEADER" />
(in both of those cases you would display the global footer by changing GLOBAL_HEADER to GLOBAL_FOOTER).
In addition, the module sets a global variable:
g.AffiliateData:use_design
which will have a value of 1 if the module has been configured to use the Design Settings (currently just the global header and footer) for that affiliate. So you can conditionally display the global header by checking that variable. For example, to display the affiliate's global header if that affiliate has been configured to use the design settings and to display the default global header if not you would put the conditional around the standard global_header token:
<mvt:if expr="g.AffiliateData:use_design" >
<mvt:item name="BROK_AFFILIATES" param="GLOBAL_HEADER" />
<mvt:else>
<mvt:item name="hdft" param="global_header" />
</mvt:if>
Similarly, for the footer:
<mvt:if expr="g.AffiliateData:use_design" >
<mvt:item name="BROK_AFFILIATES" param="GLOBAL_FOOTER" />
<mvt:else>
<mvt:item name="hdft" param="global_footer" />
</mvt:if>
If you want the Affiliate's header/footer to display on only some pages, then the above approach is the one to take (i.e. replacing the global_header and global_footer items with the conditional) On the other hand, if you want the Affilate's global header/footer to display on every page in your store then instead of modifying each page's template you could modify only the templates for the global header and footer. You can edit them by clicking on the "Global Header & Footer" tab on any page in the 'Pages" section of your store's admin (the same templates will apply to every page that uses the global_header and global_footer items; by default, I think that's every page in stock Merchant).
In the Global Header template you would replace the contents with:
<mvt:if expr="g.AffiliateData:use_design" >
<mvt:item name="BROK_AFFILIATES" param="GLOBAL_HEADER" />
<mvt:else>
contents of default global header
</mvt:if>
and in the Global Footer template:
<mvt:if expr="g.AffiliateData:use_design" >
<mvt:item name="BROK_AFFILIATES" param="GLOBAL_FOOTER" />
<mvt:else>
contents of default global footer
</mvt:if>
Of course, anything that would be common to the Affiliate' headers & footers and the global header & footer can be outside of that conditional so that it will always display.
To determine if the affiliate specific design settings should be used, the module first checks to see if the individual affiliate is configured on it's "Design Settings" tab to use the settings. If not, it checks to see if default "Use design settings?" option is set (on the "Design Settings" tab under "Options"). If that is set, the module uses the settings configured on that tab, if not, then the module does not display anything for the design settings.
To get a bit more detailed on how the "design settings" feature works will require more technical detail. The "design settings" feature actually sets a global structure variable g.AffiliateData which contains all of the referring affiliate's data in it (you'll obviously want to be careful what of the affiliate's data you expose to your customers). For example, the affiliate's first name is set in the variable:
g.AffiliateData:fname
and this can be displayed in the template,without token processing, with the token
&mvt:global:AffiliateData:fname;
and with token processing with the item:
<mvt:item name="BROK_AFFILIATES" param="fname">
NOTE that for the item to work you'll need to make sure that the module's item, BROK_AFFILIATES is assigned to the template in which you're using it.
Last update: 2008-06-02 18:28
Author: Thor
Revision: 1.1
You cannot comment on this entry
Records in this category
- Is it possible to display data about the referring affliate on the Merchant pages and on the Invoice screen and notification emails?
- How do we get multi tier payout this is very important that if level 1 sign ups a level 2 affiliate they get credit for the orders that the level 2 has.
- How do I configure product specific payouts for each affiliate? I'd like to pay some affiliates more than others for certain products or categories of products.
- How do I display data from Affiliate Manager in the orders exported by Generic Orders Export?
- When a new affiliate signs up I would like to have the notification emails sent to every affiliate in the referral chain. Is this possible?
- Is there any way to configure specific global headers and footers for each affiliate that will show up any time a customer they referred is shopping in the store?
- Making fields on the "New Affiliate Sign-up" page required
- What does the "Associate by zip code?" option do?
- Displaying messages for failed login attempts
- Displaying the referral prompt at checkout
- Displaying the products in affiliate order notification emails














