Posts: 683
Joined: Dec 2009
Reputation: 0 Points: 1096
ArcadeBB Trade V5 WordPress Plugin
ArcadeBB Trade V4 WordPress Plugin may be out only since 24th Dec 2010, I am already thinking of how to improve it. You may also suggest anything that is related to the Trade Plugin.
1) Partner Trade Site Status Auto Approve after submitting site for traffic trading. Setting will be 1-enable, 0-disable under ArcadeBB/Trade Setup.
iBannerX.com Arcade Banner Click Exchange Sign up now and get 80,000 free credits!!! http://ibannerx.com
12-28-2010, 08:06 PM (This post was last modified: 12-28-2010 08:11 PM by MickOS.)
One thing I think would help grow the number of users of your plugin would be to automate as much of the install process as possible. The SQL queries and creating pages could be done on activation of the plugin e.g
function trade_plugin_initialise() { if (!(get_option( 'arcadebb_trade_version' ) == "3") ){ // Update to version 3... global $wpdb;
$wpdb->query("CREATE TABLE IF NOT EXISTS `trade_ipaddress` (`ipaddress` varchar(15) NOT NULL default '', `websiteurl` text NOT NULL, `post_id` int(11) NOT NULL default '0', `io` int(1) NOT NULL default '0', `time` int(11) NOT NULL default '0', PRIMARY KEY (`ipaddress`)) ENGINE=MyISAM DEFAULT CHARSET=latin1;"); $wpdb->query("CREATE TABLE IF NOT EXISTS `trade_plugs` (`plugid` int(10) unsigned NOT NULL auto_increment, `post_id` int(10) NOT NULL default '0', `websiteid` int(10) NOT NULL default '0', `plugurl` text NOT NULL, `plugstatus` int(1) NOT NULL default '0', `plugdayout` int(10) NOT NULL default '0', `plugtotalout` int(10) NOT NULL default '0', `plugnote` text NOT NULL, PRIMARY KEY (`plugid`)) ENGINE=MyISAM DEFAULT CHARSET=latin1"); $wpdb->query("CREATE TABLE IF NOT EXISTS `trade_links` (`linkid` int(11) unsigned NOT NULL auto_increment, `linktype` varchar(255) NOT NULL, `websiteid` int(11) NOT NULL default '0', `linkurl` varchar(255) NOT NULL, `linkstatus` int(1) NOT NULL default '0', `linkdayout` int(11) NOT NULL default '0', `linktotalout` int(11) NOT NULL default '0', `linknote` varchar(255) NOT NULL, PRIMARY KEY (`linkid`)) ENGINE=MyISAM DEFAULT CHARSET=latin1");
// Insert the post into the database $gotPage = wp_insert_post( $my_post1 ); // Set page template... update_post_meta($gotPage, "_wp_page_template", "trade-traffic.php"); // Needs to be able to find trade-traffic.php in theme directory for this to work
// Insert the post into the database $gotPage2 = wp_insert_post( $my_post2 ); // Set page template... update_post_meta($gotPage2, "_wp_page_template", "trade-stats.php");// Needs to be able to find trade-stats.php in theme directory for this to work
// Set new version add_option( 'arcadebb_trade_version', "3" ) or update_option( 'arcadebb_trade_version', "3" ); } } <?
That is an incomplete example( not the full queries and pages ) but I'm sure you get the idea. The CRON job to reset the stats could be run on the built in wordpress CRON. It's not super precise on the exact minute it triggers at ( triggers when any post/page is viewed after the specified time ) but it would reduce the install worries for people who aren't too technically minded. Again, I said it on AWF but I'll say it here too: kudos for making it easy for people to download.
PS: excuse the slight table breakage from the code block.
No problem. Were you planning to add floating icons for trading out? I thought that might be what the Banner Setup section of the plugin would be eventually. They float on the bottom right of every page and link to out.php
If so I have some code that might save you some time on it. Paste the code into arcadebb.php plugin, upload tradeBanner.jpg and the .js file from the zip:
jquery.floatingbox.zip (Size: 1.59 KB / Downloads: 2)
to the plugin directory also.
Posts: 683
Joined: Dec 2009
Reputation: 0 Points: 1096
RE: ArcadeBB Trade V5 WordPress Plugin
(01-08-2011 05:59 AM)4ks Wrote: I have regular suggestions, which relate to statistics on traders:
1. Convertion rate or click prod. %
2. RAW stats
It's very important IMO
Thanks )
Hi 4KS,
One thing about Conversion rate, What is counted a convert? I am not sure if it is possible to count click on ads, that is not own by the site, eg, cpmstar, ad4game, adsense,
What do you mean by RAW stats?
iBannerX.com Arcade Banner Click Exchange Sign up now and get 80,000 free credits!!! http://ibannerx.com
(01-08-2011 05:59 AM)4ks Wrote: I have regular suggestions, which relate to statistics on traders:
1. Convertion rate or click prod. %
2. RAW stats
It's very important IMO
Thanks )
Hi 4KS,
One thing about Conversion rate, What is counted a convert? I am not sure if it is possible to count click on ads, that is not own by the site, eg, cpmstar, ad4game, adsense,
What do you mean by RAW stats?
Hi ArcadeBB,
I would like to explain my point of view that regards the trade traffic.
I appreciate the traders on such key criteria:
1. Click productivity or convertion rate. This means % of visitors who made the transition to other traders. This is important, because according to this indicator
estimated how productive traffic from the trader. More productive traffic, the better the growing trade site. If traffic is unproductive, the trade site
blown away )
2. AdSense Revenue which can be viewed in GA.
3. Geo IP.
4. RAW hits - those visitors who have already visited the site in the current day. If the trader send or receives a lot of RAW hits it is bad.
Posts: 683
Joined: Dec 2009
Reputation: 0 Points: 1096
RE: ArcadeBB Trade V5 WordPress Plugin
@MickOS, I really missed 4KS reply.
So, as what 4KS said,
Productivity here means converting visitor to another trade.
RAW means counting all hits including repeated visitors.
Initially I thought productivity include converting traffic into revenue.
That will not be easy as it's not easy to count clicks on ads. However if it only includes converting traffic into trades, then it's much easier.
I will include them in V5.
iBannerX.com Arcade Banner Click Exchange Sign up now and get 80,000 free credits!!! http://ibannerx.com