Coupon Script Assistance

Coupon Script Assistance
Hello,

I have several licenses and I need someone to help me combine two coupon scripts together.

I have OWS Software coupon script that uses a MySQl database. What I am looking for is a programmer to look at the other coupon script that I have that uses a additional MySql database to import coupons and other items associated with the coupon site like merchants.

I’m looking for a script that could import the data from the 2nd mysql database into the ows database in their format.

like merchant name, coupon start date, coupon/offer end date, description and other variables that are included. I tested a wordpress version that does not function for all users.

Please help.

Website Design For Game Site

Website Design For Game Site
I am looking for creative and professional web graphic designer to create graphics interesting new web site. It is a billiards gaming web site. We would like the finished site to have a similar look to www.gameduel.com or www.betfair.com and the finished site should be of a similar standard.

The graphics for this web site include:

a) A site logo and branding.

b) Icons, page designs and page graphics for the 18 included HTML pages.

The home page should have:
– Four main icons for the four games,
8 Ball Pool, 9 Ball Pool, Snooker, UK 8 Ball Pool
– Login and Sign Up icons
– Practice Game icon
– Site Help icon

Icons for:
– Go to My Account
– My Account Help
– Logout

Additionally banner headers for game these will be placed on the help pages for each game.

Please see the attached file for the HTML pages. The tables, forms etc should be styled, there is also a basic style template used on the pages which should be used as a foundation for the site pages.

The two site “home” pages are index.html for the main site home page and dashboard.html for the account area home page. The rest of the site can be navigated from these two pages.

Oscommerce Manufacturers Info

Oscommerce Manufacturers Info
I am looking for a developer to make a simple modification to an existing oscommerce site. I need the following change:

Add manufacturer description to product listing page (product_listing.php) So when I view products by manufacturers, I want to see a description above list of products from this manufacturer. I need to be able to add description to a manufacturer via Admin panel.

Everything is explained clearly in the attached document. However, feel free to contact me if you have any questions.

Please only bid if you have previous experience with Oscommerce.

Good luck

T-shirt Design Application

T-shirt Design Application
We would like a flash online design tool for implementation in a php webshop. (joomla/virtuemart)

The application must include the following attributes:

A squared field to design within
abillity to upload images into the design
font color, size and type selectabillity
arched text and text rotation (previewable)
Layers and layer ordering

The application must output php variables for us to parse into virtuemart shoppingcart. (product name and price) The design information must be reconstructable with both text information and a graphical preview like a pdf.

We want the entire script, not a .swf/.xml solution.
This is for implementation in our webshop only, not for resale. We ask for the .fla file for future adaptation to other products in the same webshop. If you are do not wish to share the .fla file we will not consider your bid.

Create A Taxi Booking System

Create A Taxi Booking System
Hi There,
We are a mini cab office based in North London, UK.
We need some software designed that will enable us to book jobs from the telephone onto the computer. There needs to be different screens for different types of work. We need:
1) BOOKING SCREEN;
This will have entries such as
ACCOUNT: “Cash” / “Account number” (with a pull down menu)
CUSTOMER DETAILS: “name” “phone number”
PICK UP ADDRESS: “house number” “street” “town” “postcode”
DESTINATION ADDRESS: “house number” “street” “town” “postcode”
SPECIAL INSTRUCTIONS
MILEAGE
PRICE

We also need an accounts screen to input all business account details including their account number, contact name etc

These are just very basic details but i would like to explain more to someone who understands what we need.

Write About Carpet Repair 2

Write About Carpet Repair 2
Research on the web and then write 1000 word articles on the following subjects paying special attention to using the keywords below (and using proper English):

1) Carpet Repair
2) How to patch a carpet
3) How to stretch a carpet
4) How to repair a seam in a carpet
5) How to repair a Berber carpet
6) How to install carpet.

Please submit a sample of your writing for my review. Thank you and good luck, Steve

Keywords for the project are:
carpet repair
carpet repairs
repair carpet
carpet stretch
stretch carpet
stretching carpet
carpet wrinkles
carpet ripples
loose carpet
stretch loose carpet
how to stretch carpet
patch carpet
carpet patch
carpet patches
how to patch carpet
fix carpet
how to fix carpet
carpet burn
carpet burns
burn in a carpet
how to repair a burn in a carpet
Berber carpet patch
Run in a berber carpet
repair Berber Carpet
Fix Berber Carpet
Carpet to tile transition
Carpet to tile transitions
Carpet to floor transition
Carpet to floor transitions
tack carpet
tack down carpet
cut carpet
remove carpet
carpet padding
carpet pad.

How to display Twitter-like “time ago” on your WordPress blog

How to display Twitter-like “time ago” on your WordPress blog

The first thing to do is to create the function. To do so, paste the following into your functions.php file:

function time_ago( $type = 'post' ) {
	$d = 'comment' == $type ? 'get_comment_time' : 'get_post_time';
	return human_time_diff($d('U'), current_time('timestamp')) . " " . __('ago');
}

Once done, you can use the function in your theme files:

<?php echo time_ago(); ?>

Thanks to UpThemes for this trick!

Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!

How to display Twitter-like “time ago” on your WordPress blog

8 useful code snippets to get started with WordPress 3.0

8 useful code snippets to get started with WordPress 3.0

How to create a custom post type

Custom post type are an incredible step forward for WordPress, because it will allow developers to create post types according to their needs.
For now, we have posts, and pages. With WordPress 3.0, we’ll be able to create a new post type called products, where a client can sell his products only, while regular post for his blog.

Creating a custom post type is easy: All you have to do is to open your theme functions.php file and paste the following:

$args = array(
        'label' => __('Products'),
        'singular_label' => __('Product'),
        'public' => true,
        'show_ui' => true,
        'capability_type' => 'page',
        'hierarchical' => false,
        'rewrite' => true,
        'query_var' => 'products',
        'supports' => array('title', 'thumbnail')
);
register_post_type( 'album' , $args );

Once you saved the file, login to your WordPress dashboard and have a look at the navigation on the left: A new post type, named Products, has been added.
Source: http://codex.wordpress.org/Function_Reference/register_post_type

Custom post types with custom taxonomies

In the previous example, I’ve shown you how to create a custom post type, which is pretty useful to use WordPress as a real CMS and not a simple blog publishing platform.

Now, let’s see something a little bit more complex, but extremely interesting: Creating a custom post type associated with custom taxonomies. For those who don’t know, a taxonomy is a term (such as category, tag or anything else) related to posts. For more information about taxonomies, you should have a look at WordPress Codex.

In this example, we’ll create a custom post type named Albums, which belong to “Genres” (the custom categories) and have “Performer” as tags. This snippet has to be pasted in your functions.php file. With those 27 lines of codes, you can create a fully functional music albums archive. Ain’t that powerful?

function post_type_albums() {
	register_post_type(
                     'albums',
                     array('label' => __('Albums'),
                             'public' => true,
                             'show_ui' => true,
                             'supports' => array(
                                        'post-thumbnails',
                                        'excerpts',
                                        'trackbacks',
                                        'comments')
                                )
                      );
// Adding the Custom Taxonomy for Genres. Here we can create categories specific for this post type.
	register_taxonomy( 'genres', 'albums', array( 'hierarchical' => true, 'label' => __('Genres') ) );

// Adding the Custom Taxonomy for Performer. Here we can add tags specific for this post type.
        register_taxonomy( 'performer', 'albums',
		array(
                         'hierarchical' => false,
			 'label' => __('Performer'),
			 'query_var' => 'performer',
			 'rewrite' => array('slug' => 'performer' )
		)
	);
}
add_action('init', 'post_type_albums');

Source: http://wpspecial.net/2010/03/how-to-add-custom-post-types-in-wordpress/

Query custom post types

Now that you’ve learned how to create custom post types, the next step is to learn how to retrieve them from the WordPress database and display it on your blog.

Good news for developers, there’s nothing hard or new in the process. Custom post types can be retrieved easily, using the WP_Query object.
The following example will create a custom loop which will get only the albums custom post type.

<ul>

<?php global $wp_query;
$wp_query = new WP_Query("post_type=albums&post_status=publish");

while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
    <li><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>

Source:

Enable multisite feature

One of the most exiting new feature of WordPress 3.0 is definitely multisite management. In brief, with a single installation of WordPress you’ll be able to run a network of WordPress blog. How cool is that?

To take advantage of this feature, simply paste the following line of code in your wp-config.php file. This file is located at the root of your WordPress install.

define('WP_ALLOW_MULTISITE', true);

Source: http://wptheming.com/2010/03/wordpress-3-0-enable-network/

Custom author profiles

Most of the top blogs of the industry do not have a single author but a team of different contributors. WordPress allows you to create author pages, but WordPress 3.0 is introducing a new function which will allow you to use different templates for different authors, like we can currently do with categories.

All you have to do is to create an author page named author-XX.php where XX is either the author ID or nicename. For example, if your user nicename is “john”, you’ll have to call the file author-john.php.

Source: http://codex.wordpress.org/Function_Reference/get_author_template

Add custom backgrounds

WordPress 3.0 is introducing a new feature that will for sure be loved by non tech-friendly users: Custom background. The feature allows the user to upload a background in his WordPress dashboard, specify its position, and automatically have it added to his blog.

Of course, the theme used by the blogger has to support this feature, otherwise the uploaded background will not be visible. To do so, simply open your functions.php file and paste the following line:

add_custom_background();

Style WordPress editor using CSS

WordPress features a WYSIWYG editor, which allow you to see text in bold, italic, and so on. But some people want more, such as being able to visualize their blog post in the blog font and colors.

This new feature allows you to create a css file (named editor-style.css in the example below) and link it to the editor for a better WYSIWYG rendering. Simply paste this code snippet to your functions.php file.

add_filter('mce_css', 'my_editor_style');
function my_editor_style($url) {
  if ( !empty($url) )
    $url .= ',';
  // Change the path here if using sub-directory
  $url .= trailingslashit( get_stylesheet_directory_uri() ) . 'editor-style.css';

  return $url;
}

Source: http://azaozz.wordpress.com/2010/01/02/can-themes-style-the-visual-editor/

Make your theme compatible with WordPress 3.0 menus

WordPress 3.0 is going to feature a totally new menu system, which will allow users to add only the desired pages, add categories, and more. Good news for theme developers; adding WP 3.0 menu support to your themes is extremely easy.

To do so, open functions.php and add the following line:

add_theme_support( 'nav-menus' );

Once added, you can use the brand new wp_nav_menu() function in your theme files:

wp_nav_menu('sort_column=menu_order&container_class=navigation');

As you can see, it accepts the same kind of parameters than the good ol’ wp_list_categories() function.
Source: http://wpspecial.net/2010/04/menu-support-for-wordpress-3-0-themes/

Like CatsWhoCode? If yes, don’t hesitate to check my other blog CatsWhoBlog: It’s all about blogging!

8 useful code snippets to get started with WordPress 3.0

Joomla. Css Module Adjustment.

Joomla. Css Module Adjustment.
I have a Joomla based web site (see it on my development server at www.mindteq.com/ts).
I want to add the Gavick Tabs Manager GK2 module (www.gavick.com, http://tools.gavick.com/demo/tabamanager-gk2).
I did installed it following their instructions but it seems there are some CSS problems as it is not displayed correctly.

See the attached PDF to understand the issue.

The module should be placed in the homepage at the “banner” position.

Clone Of A Facebook Fan Page

Clone Of A Facebook Fan Page
i need a clone of a facebook fan page.

i already have a php file that i was using with my facebook iframing application before the share button stopped to work.
so..everythinbg it is almost done but i need a new working share button to be added on it and some other things that i will tell to the winning coder.

bid on this project only if you are experienced with facebook fan page development.

you will need to use my php file and replace the non working share button with a working one. then you will also need to add something that i will privately explain to the coder.