Where would I get a script like this, and what would it cost...?

1 replies
SwarmJam - Choose Your City | Local Discount Coupons from SwamJam

I want to be able to put a widget in my sidebar for a coupon script like this. I want to use my own script, and not have to be part of the swarmjam site.

A good example of this script in action is on the main page of the Ottawa Citizen (newspaper) website. Ottawa Citizen | Latest Breaking News | Business | Sports | Canada Daily News - the script I am referring to is on the sidebar on the right, 2nd or 3rd box down. I would love to have a similar script for delivering local coupons to retailers.

Here's what the widgetbox looks like on the OC site:



I should ask Sam, but I wonder if this could be done with dlguard? I'll wait to see if anyone has any suggestions here then go and post the question on his board depending on the replies.
#cost #script
  • Profile picture of the author Evan-M
    Originally Posted by Val.S. View Post

    SwarmJam - Choose Your City | Local Discount Coupons from SwamJam

    I want to be able to put a widget in my sidebar for a coupon script like this. I want to use my own script, and not have to be part of the swarmjam site.

    A good example of this script in action is on the main page of the Ottawa Citizen (newspaper) website. Ottawa Citizen | Latest Breaking News | Business | Sports | Canada Daily News - the script I am referring to is on the sidebar on the right, 2nd or 3rd box down. I would love to have a similar script for delivering local coupons to retailers.

    Here's what the widgetbox looks like on the OC site:



    I should ask Sam, but I wonder if this could be done with dlguard? I'll wait to see if anyone has any suggestions here then go and post the question on his board depending on the replies.
    you should be able to add the code directly to your sidebar file, or create a widget that contains the code. like below



    <?php
    /*
    Plugin Name: Name Of The Plugin
    Plugin URI: http://URI_Of_Page_Describing_Plugin_and_Updates
    Description: A brief description of the Plugin.
    Version: The Plugin's Version Number, e.g.: 1.0
    Author: Name Of The Plugin Author
    Author URI: http://URI_Of_The_Plugin_Author
    */
    ?>

    error_reporting(E_ALL);
    add_action("widgets_init", array('Widget_name', 'register'));
    class Widget_name {
    function control(){
    echo 'I am a control panel';
    }
    function widget($args){
    ?>
    code goes here
    <?php
    }
    function register(){
    register_sidebar_widget('Widget name', array('Widget_name', 'widget'));
    register_widget_control('Widget name', array('Widget_name', 'control'));
    }
    }
    Signature

    Evan-M

    Easily The Worlds Best Wordpress Popup plugin

    Visit Website Design Firm For All Your Wordpress Coding Needs

    {{ DiscussionBoard.errors[3358471].message }}

Trending Topics