<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:wfw="http://wellformedweb.org/CommentAPI/"
     xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:atom="http://www.w3.org/2005/Atom"
     xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
     xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    >

<channel>
    <title>TravMagazine</title>
    <atom:link href="https://www.travmagazine.nl/en/advertise/feed/" rel="self" type="application/rss+xml"/>
    <link>https://www.travmagazine.nl/en/advertise/</link>
    <description>Het grootste reisvakblad van Nederland</description>
    <lastBuildDate>Fri, 18 Sep 2026 22:49:28 +0000</lastBuildDate>
    <language>en-US</language>
    <yeartag>2026</yeartag>

    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>

    <generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://www.travmagazine.nl/wp-content/uploads/2020/12/cropped-cropped-TravMagazine-1-32x32.png</url>
	<title>Advertise - TravMagazine</title>
	<link>https://www.travmagazine.nl/en/advertise/</link>
	<width>32</width>
	<height>32</height>
</image> 

    
        <item>

                        <title>Advertise</title>

            <link>https://www.travmagazine.nl/en/advertise/</link>
            <comments>https://www.travmagazine.nl/en/advertise/#respond</comments>

            <pubDate>Thu, 08 May 2014 12:28:59 +0000</pubDate>

            <dc:creator><![CDATA[TJ van Apeldoorn]]></dc:creator>

            
            <guid isPermaLink="false">https://www.travmagazine.nl/advertise/</guid>

            
            <description><![CDATA[
Media kit Take a look at our media kit below with the total portfolio of TRAVel Media. Would you like to receive information about the possibilities to advertise, our rates, the publication schedule or other matters? Please send an e-mail to sales@travmedia.nl and you will be helped by one of our sales managers as soon &hellip; Lees verder            ]]></description>

            
            <content:encoded><![CDATA[
Media kit  
Take a look at our media kit below with the total portfolio of TRAVel Media.



//----------------------------------------------------------
//------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------
//----------------------------------------------------------

if ( ! gform ) {
	document.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );
	document.addEventListener( 'gform/theme/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );
	window.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );

	var gform = {
		domLoaded: false,
		scriptsLoaded: false,
		themeScriptsLoaded: false,
		isFormEditor: () => typeof InitializeEditor === 'function',

		/**
		 * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.
		 * @remove-in 4.0 this function will not check for gform.isFormEditor().
		 */
		callIfLoaded: function ( fn ) {
			if ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {
				if ( gform.isFormEditor() ) {
					console.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );
				}
				fn();
				return true;
			}
			return false;
		},

		/**
		 * Call a function when all scripts are loaded
		 *
		 * @param function fn the callback function to call when all scripts are loaded
		 *
		 * @returns void
		 */
		initializeOnLoaded: function( fn ) {
			if ( ! gform.callIfLoaded( fn ) ) {
				document.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );
				document.addEventListener( 'gform/theme/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );
				window.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );
			}
		},

		hooks: { action: {}, filter: {} },
		addAction: function( action, callable, priority, tag ) {
			gform.addHook( 'action', action, callable, priority, tag );
		},
		addFilter: function( action, callable, priority, tag ) {
			gform.addHook( 'filter', action, callable, priority, tag );
		},
		doAction: function( action ) {
			gform.doHook( 'action', action, arguments );
		},
		applyFilters: function( action ) {
			return gform.doHook( 'filter', action, arguments );
		},
		removeAction: function( action, tag ) {
			gform.removeHook( 'action', action, tag );
		},
		removeFilter: function( action, priority, tag ) {
			gform.removeHook( 'filter', action, priority, tag );
		},
		addHook: function( hookType, action, callable, priority, tag ) {
			if ( undefined == gform.hooks[hookType][action] ) {
				gform.hooks[hookType][action] = [];
			}
			var hooks = gform.hooks[hookType][action];
			if ( undefined == tag ) {
				tag = action + '_' + hooks.length;
			}
			if( priority == undefined ){
				priority = 10;
			}

			gform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );
		},
		doHook: function( hookType, action, args ) {

			// splice args from object into array and remove first index which is the hook name
			args = Array.prototype.slice.call(args, 1);

			if ( undefined != gform.hooks[hookType][action] ) {
				var hooks = gform.hooks[hookType][action], hook;
				//sort by priority
				hooks.sort(function(a,b){return a["priority"]-b["priority"]});

				hooks.forEach( function( hookItem ) {
					hook = hookItem.callable;

					if(typeof hook != 'function')
						hook = window[hook];
					if ( 'action' == hookType ) {
						hook.apply(null, args);
					} else {
						args[0] = hook.apply(null, args);
					}
				} );
			}
			if ( 'filter'==hookType ) {
				return args[0];
			}
		},
		removeHook: function( hookType, action, priority, tag ) {
			if ( undefined != gform.hooks[hookType][action] ) {
				var hooks = gform.hooks[hookType][action];
				hooks = hooks.filter( function(hook, index, arr) {
					var removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);
					return !removeHook;
				} );
				gform.hooks[hookType][action] = hooks;
			}
		}
	};
}


                
                        Voor- en achternaam*Bedrijfsnaam*E-mail*Telefoonnummer*Ik wil graag meer weten over:
								
								Print advertising
							
								
								Online advertising
							
								
								Events
							
								
								E-learning
							
								
								Verkiezing(en)
							Taal:
								
								Nederlands
							
								
								Engels
							
         Versturen 
            
            
            
            
            
            
            
            
            
            
            
            
            
        
                        
                        

Would you like to receive information about the possibilities to advertise, our rates, the publication schedule or other matters? Please send an e-mail to sales@travmedia.nl and you will be helped by one of our sales managers as soon as possible!
If you have any questions regarding advertising possibilities, our rates, the schedule are any other matter please send an e-mail to sales@travmedia.nl and we will contact you as soon as possible.
Mailing
We regularly send a digital mailing, in which we announce the topics of our Specials for the next month and other interesting opportunities for you. Would you like to stay informed about interesting opportunities to draw attention to your product? Send an e-mail to sales@travmedia.nl.
Below you will find a selection of our total offer.
The Travel Management Club


Business Traveller


MICE Benelux

TravEcademy


View our Terms &amp; Conditions here.
See Privacy Statement TRAVel Media.
The post Advertise appeared first on TravMagazine.
            ]]></content:encoded>

            
            <wfw:commentRss>https://www.travmagazine.nl/en/advertise/feed/</wfw:commentRss>
            <slash:comments>0</slash:comments>

                        
        </item>

    
</channel>
</rss>