Log in

View Full Version : Mini Mods - [LMKWD] Create Your Own Custom Advertising Page


HM666
12-01-2014, 10:00 PM
Brought To You By: Len M. Kaiser Web Design (http://lenmkaiser.com)
Author: Len M. Kaiser
vBulletin Version: 4.0X (Should pretty much work with all vb versions although this was produced on a vB 4.2.2 site.)
DEMO: Be sure to choose the Default Template. DEMO LINK (http://lenmkaiser.com/vb/vb4/advertise.php)

Please do not PM me for support. Please click "Install" to get help with your page. Those who wish not to click "Install" will get no support from me.

This little add on is for those who do not have the vBulletin Suite and do not want to be bothered with installing a whole portal for just one advertising page. This mod will help you generate revenue to your website.

Suggestions:

1. You will need some idea about editing HTML & CSS in order for this mod to do you any good. I suggest that if you are not familiar with either language that you look HTML (http://www.w3schools.com/html/) & CSS (http://www.w3schools.com/css/default.asp) up on W3Schools to help you edit the template.

2. You install the Rotating Banner System (https://vborg.vbsupport.ru/showthread.php?t=188328&highlight=banner) to help you place your ads.

3. Be sure to have some ideas about how you want to do your advertising page before getting started.

This little mod will work for free banners, adsense, affiliates as well as banners you sell space for.

Steps To Create Your Custom Template:

1. Login to your AdminCP.
2. Go to Styles & Templates>Styles Manager & find the skin that you want to add the advertising page to.
3. Click on the drop down on the far right and choose "Add New Template".
4. Place the following information:
----Title Field: custom_advertising
----Template:{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml"<vb:if condition="$vboptions['enablefacebookconnect']"> xmlns:fb="http://www.facebook.com/2008/fbml"</vb:if> dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
<title>{vb:raw vboptions.bbtitle}</title>
<script type="text/javascript" src="clientscript/vbulletin_read_marker.js?v={vb:raw vboptions.simpleversion}"></script>
{vb:raw headinclude_bottom}
</head>
<body>

{vb:raw header}

{vb:raw navbar}

<div id="pagetitle">
<h1>Advertise With Us!</h1>
</div>
<!--Create your custom ad code below this line //-->
<p>Here is where your advertising content would go. In order to edit this you will need some HTML/CSS experience to style it and make it look the way you want. If you are unsure you can get great information off the <a href="http://www.w3schools.com/html/">W3Schools Website</a>!</p>

<!-- DO NOT CHANGE BELOW THIS LINE! //-->
{vb:raw footer}
</body>
</html>

----Editable Regions: All areas that are marked in red are the ones that you can change. The rest do not change it unless you really know what you are doing and are proficient in HTML. Edit the area for your advertising information before you save the template.
5. Click the "Save" button.

Creating The advertise.php File:

1. Open a HTML Editor or Notepad (if in Windows). DO NOT use Word Pad or MS Word!
2. Copy and paste the following code into the page:
<?php

error_reporting(E_ALL & ~E_NOTICE);

define('THIS_SCRIPT', 'custom_advertising');
define('CSRF_PROTECTION', true);
define('CSRF_SKIP_LIST', '');
define('VB_ENTRY', 'advertise.php');

$phrasegroups = array();


$specialtemplates = array();


$globaltemplates = array('custom_advertising',
);


$actiontemplates = array();


require_once('./global.php');

$navbar = render_navbar_template(construct_navbits($navbits) );

$templater = vB_Template::create('custom_advertising');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
print_output($templater->render());

?>

No changes to that code are needed if you followed everything above for the template.
3. Save the page as "advertise.php".
4. Upload advertise.php to your forum root. Don't know where your forum root is? You can ask your host or find out in your AdminCP by going to Maintenance>View PHP Info - look for DOC_ROOT or DOCUMENT_ROOT for the correct pathway. To upload you will need a FTP client.

Now you should be able to view your advertising page by going to http://yourdomain.com/advertise.php. Obviously you will replace "yourdomain" with your domain. :)

ozzy47
12-02-2014, 09:19 PM
Len, is there a reason you did not make this into a mod, instead of a template edit?

Nevermind, I see the end user would have to do template editing anyway, to add the advertising code. :)

HM666
12-02-2014, 09:57 PM
Len, is there a reason you did not make this into a mod, instead of a template edit?

Nevermind, I see the end user would have to do template editing anyway, to add the advertising code. :)

The main reason is I'm not well versed in php code just yet. I hand code HTML & CSS, but programming languages I have not done just yet. I know enough to edit them and make changes and sometimes fix them, but other than that it would make a better template...for now lol.

Also you are right there would be edits anyways. :) Of course if I had the knowledge to create the templates within a product then that most likely would work, but that might be awhile.

ahobilam
12-04-2014, 01:19 PM
if I had the knowledge to create the templates within a product then that most likely would work
Can anybody give the link for Article How to create a mod product (xml)?!
Thanks in advance.

ahobilam
12-04-2014, 01:20 PM
The Demo link is not rendering anything?!

HM666
12-04-2014, 01:40 PM
The Demo link is not rendering anything?!

Refresh and try now.

ahobilam
12-04-2014, 03:33 PM
Refresh and try now.
OK fine.
Let me try the Modification and mark as installed.
thanks

HM666
12-04-2014, 09:40 PM
OK fine.
Let me try the Modification and mark as installed.
thanks

No problem. Let me know if you still cannot see the advertising demo page.

joeychgo
12-25-2014, 08:42 AM
How is this different than this?
https://vborg.vbsupport.ru/showthread.php?t=228112

HM666
12-25-2014, 11:35 AM
How is this different than this?
https://vborg.vbsupport.ru/showthread.php?t=228112

Not really too much different really. There was a thread that I had answer a little while ago about advertising and I had made a post giving them lots of info and just figured I would show how to make an advertising page at the same time with the CMS installed. I was not able to find that post you referred to and sometimes its easier for some people to see it as the page they want rather than incorporate their own stuff especially if they are not a coding guru lol.

joeychgo
12-25-2014, 11:53 AM
Gotcha. That's what I thought.

I'm curious, do you have any example advertising pages we could see?

HM666
12-25-2014, 01:09 PM
Gotcha. That's what I thought.

I'm curious, do you have any example advertising pages we could see?

Just the demo link that is in the first post. You should be able to see it. If not let me know. I have not created an advertising page that is live and used for this template if that is what you are asking. But the template makes it where you can pretty much style it how you want using html & css.

helenblog
06-22-2015, 07:05 AM
I am having a vB forum 4.2.x and I find this useful for my site, will try as soon as possible.

How can I create more pages with this?

HM666
06-22-2015, 10:41 PM
I am having a vB forum 4.2.x and I find this useful for my site, will try as soon as possible.

How can I create more pages with this?

Same was as described above just for each page you need to change the file name that you upload, the template name & the PHP file to match for the new page.

Parts you would need to change in the PHP file are:

define('THIS_SCRIPT', 'custom_yourfilename');

define('VB_ENTRY', 'yourfilename.php');


$globaltemplates = array('custom_yourfilename',
);


$templater = vB_Template::create('custom_yourfilename');

Replace yourfilename with the name of the new file you are creating. Make sure you replace all those instances with it and that you use the smae name in each place.

blind-eddie
04-01-2017, 05:09 PM
Demo link goes to a virus alert page