Custom Order Management System

Hello,

I am an SEO guy looking to setup an seo service and need a script that works in the following way with wordpress.

Features:

Paypal
Client login
Client Order Page

Admin side must have main admin login + multiple staff logins
Orders that are paid are in the staff section ready for them to complete on a first come first serve basis, (order 1 top of the list and order 100000 etc at the bottom) once the staff have completed the order they need to click to send the client an email to say that the order is complete. The staff need to be able to upload an excel file for the clients to download.

So in summary, the script needs to manage the payments with paypal, be built in wordpress, have a client login section where the client gets an update of the project and can download the report from.

the staff need to be able to login to the task list and i as the admin need to be able to control everything.

If you have made something similar to this before then please let me know in your application.

A site that operates like the way i would like to is ( wl marke ting . com )

E-commerce Website

We need to develop a new E-Commerce Site for a client. They have an existing site, but we would have to redesign the site according to their new image. Their existing site is outdated. The client must be able to load his own products and prices to the site and buyers must be able to pay via EFT, Visa or Mastercard.

We need to get the site completed within 2-3 weeks max.

Need A Kind Of Clone

MOST IMPORTANT: READ TOP TO BOTTOM PROPERLY BEFORE BIDDING

Hello all,
Hope you all doing good. I need some serious programmer who can give me a real time bid on this project. Please don’t waste time if you just not serious about this.

Project: http://nyxta.tv/ ( i need this kind of website made.)

Step 1.> Please go through each and every functionality of this site and let me know whether you can do it perfectly or not. Please bid only when you are confident about it.

Step 2.> Create a proposal word or pdf document with all the information(functionality) , budget(should be affordable and real), and time duration.
Mention all your past work related to this site only.

Step 3.> Attach with your PMB.

NOTE:

* Write ” I am Confident for this project.” While your bid and first PMB with proposal.

1.> your bid will be immediately deleted if you mention just other works but not similar with this.

2.> your bid will be immediately deleted if you don’t submit your proposal. Since i am too serious about it so whoever i like, will straightaway start work with them.

3.> PMB without proposal will not be accepted and bid will be deleted immediately.

Hope to get one deserving bid and lets have a long term business relationship.

Happy bidding.

Thanks and regards,
Consagoustech

Make Flash Url Links

I have an all-flash site based on this template:
http://www.templatemonster.com/flash-templates/11318.html

The template has been customized and the tab names have been changed.

I need to be able to link externally to any one of the tabs directly from the page URL.

So if I want to see the tab named “Contact”, I could link to the URL:
http://mywebsite.com/index.html?page=Contact

And the Flash movie would go directly to the contact tab.

This needs to work for all of the tabs.

I have the FLA source for the modified version.

How to create a built-in contact form for your WordPress theme

Getting Ready

You can see the working form on my site PHP Snippets. It is a site of mine, so don’t hesitate to grab the RSS feed and follow it on Twitter if you want.

Step 1: Creating the page template

The first step is to create a page template. To do so, copy the page.php code into a new file named page-contact.php.

We have to add a comment at the beginning of the contact.php file to make sure WordPress will treat the file as a page template. Here’s the code:

<?php
/*
Template Name: Contact
*/
?>

Your contact.php file should look like this:

<?php
/*
Template Name: Contact
*/
?>

<?php get_header() ?>

	<div id="container">
		<div id="content">
			<?php the_post() ?>
			<div id="post-<?php the_ID() ?>" class="post">
				<div class="entry-content">
				</div><!-- .entry-content ->
			</div><!-- .post-->
		</div><!-- #content -->
	</div><!-- #container -->

<?php get_sidebar() ?>
<?php get_footer() ?>

Step 2: Building the form

Now, we have to create a simple contact form. Simply paste the following code within the entry-content div.

<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
	<ul>
		<li>
			<label for="contactName">Name:</label>
			<input type="text" name="contactName" id="contactName" value="" />
		</li>
		<li>
			<label for="email">Email</label>
			<input type="text" name="email" id="email" value="" />
		</li>
		<li>
			<label for="commentsText">Message:</label>
			<textarea name="comments" id="commentsText" rows="20" cols="30"></textarea>
		</li>
		<li>
			<button type="submit">Send email</button>
		</li>
	</ul>
	<input type="hidden" name="submitted" id="submitted" value="true" />
</form>

Nothing hard with this pretty self-explanatory html code for our form. Note the input type=”hidden” I added on line 19: It will be used later to check if the form has been submitted.

Step 3: data processing and error handling

Our form looks pretty good, but right it is very useless because it does not send any email. What we have to do is to verify if the form has been submitted then verify if fields have been filled correctly.

If fields are correctly filled, we’ll get the blog admin email and send them the email. Otherwise, no email will be sent and errors will be displayed to the user.

Paste the following code between the Page Template declaration and the get_header() function:

<?php
if(isset($_POST['submitted'])) {
	if(trim($_POST['contactName']) === '') {
		$nameError = 'Please enter your name.';
		$hasError = true;
	} else {
		$name = trim($_POST['contactName']);
	}

	if(trim($_POST['email']) === '')  {
		$emailError = 'Please enter your email address.';
		$hasError = true;
	} else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", trim($_POST['email']))) {
		$emailError = 'You entered an invalid email address.';
		$hasError = true;
	} else {
		$email = trim($_POST['email']);
	}

	if(trim($_POST['comments']) === '') {
		$commentError = 'Please enter a message.';
		$hasError = true;
	} else {
		if(function_exists('stripslashes')) {
			$comments = stripslashes(trim($_POST['comments']));
		} else {
			$comments = trim($_POST['comments']);
		}
	}

	if(!isset($hasError)) {
		$emailTo = get_option('tz_email');
		if (!isset($emailTo) || ($emailTo == '') ){
			$emailTo = get_option('admin_email');
		}
		$subject = '[PHP Snippets] From '.$name;
		$body = "Name: $name \n\nEmail: $email \n\nComments: $comments";
		$headers = 'From: '.$name.' <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;

		mail($emailTo, $subject, $body, $headers);
		$emailSent = true;
	}

} ?>

What I’ve done here was simply to make sure that the form has been submitted and filled correctly. If an error, such as an empty field or incorrect email address occurred, a message is returned and the form isn’t submitted.

Now we have to display error messages below the related field, for example “Please enter your name”. Below you’ll find the complete form page template that you can use “as it”.

<?php
/*
Template Name: Contact
*/
?>

<?php
if(isset($_POST['submitted'])) {
	if(trim($_POST['contactName']) === '') {
		$nameError = 'Please enter your name.';
		$hasError = true;
	} else {
		$name = trim($_POST['contactName']);
	}

	if(trim($_POST['email']) === '')  {
		$emailError = 'Please enter your email address.';
		$hasError = true;
	} else if (!eregi("^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$", trim($_POST['email']))) {
		$emailError = 'You entered an invalid email address.';
		$hasError = true;
	} else {
		$email = trim($_POST['email']);
	}

	if(trim($_POST['comments']) === '') {
		$commentError = 'Please enter a message.';
		$hasError = true;
	} else {
		if(function_exists('stripslashes')) {
			$comments = stripslashes(trim($_POST['comments']));
		} else {
			$comments = trim($_POST['comments']);
		}
	}

	if(!isset($hasError)) {
		$emailTo = get_option('tz_email');
		if (!isset($emailTo) || ($emailTo == '') ){
			$emailTo = get_option('admin_email');
		}
		$subject = '[PHP Snippets] From '.$name;
		$body = "Name: $name \n\nEmail: $email \n\nComments: $comments";
		$headers = 'From: '.$name.' <'.$emailTo.'>' . "\r\n" . 'Reply-To: ' . $email;

		mail($emailTo, $subject, $body, $headers);
		$emailSent = true;
	}

} ?>
<?php get_header(); ?>
	<div id="container">
		<div id="content">

			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
				<h1 class="entry-title"><?php the_title(); ?></h1>
					<div class="entry-content">
						<?php if(isset($emailSent) && $emailSent == true) { ?>
							<div class="thanks">
								<p>Thanks, your email was sent successfully.</p>
							</div>
						<?php } else { ?>
							<?php the_content(); ?>
							<?php if(isset($hasError) || isset($captchaError)) { ?>
								<p class="error">Sorry, an error occured.<p>
							<?php } ?>

						<form action="<?php the_permalink(); ?>" id="contactForm" method="post">
							<ul class="contactform">
							<li>
								<label for="contactName">Name:</label>
								<input type="text" name="contactName" id="contactName" value="<?php if(isset($_POST['contactName'])) echo $_POST['contactName'];?>" class="required requiredField" />
								<?php if($nameError != '') { ?>
									<span class="error"><?=$nameError;?></span>
								<?php } ?>
							</li>

							<li>
								<label for="email">Email</label>
								<input type="text" name="email" id="email" value="<?php if(isset($_POST['email']))  echo $_POST['email'];?>" class="required requiredField email" />
								<?php if($emailError != '') { ?>
									<span class="error"><?=$emailError;?></span>
								<?php } ?>
							</li>

							<li><label for="commentsText">Message:</label>
								<textarea name="comments" id="commentsText" rows="20" cols="30" class="required requiredField"><?php if(isset($_POST['comments'])) { if(function_exists('stripslashes')) { echo stripslashes($_POST['comments']); } else { echo $_POST['comments']; } } ?></textarea>
								<?php if($commentError != '') { ?>
									<span class="error"><?=$commentError;?></span>
								<?php } ?>
							</li>

							<li>
								<input type="submit">Send email</input>
							</li>
						</ul>
						<input type="hidden" name="submitted" id="submitted" value="true" />
					</form>
				<?php } ?>
				</div><!-- .entry-content -->
			</div><!-- .post -->

				<?php endwhile; endif; ?>
		</div><!-- #content -->
	</div><!-- #container -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>

Step 4: Adding jQuery verification

Our form is now working perfectly. But we can enhance it by adding a client side verification. To do so, I’m going to use jQuery and the validate jQuery plugin. This plugin is great because it allows you to verify that a form has been filled correctly, quickly and easily.

The first thing to do is to download the validate plugin and upload it into your theme file (under a /js directory). Once done, paste the following into a new file:

$(document).ready(function(){
	$("#contactForm").validate();
});

Save it as verif.js in your /js directory.

Now we have to link the javascript files to our theme. Open your header.php file and paste the following within the <head> and </head> tags:

<?php if( is_page('contact') ){ ?>
	<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.validate.min.js"></script>
	<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/verif.js"></script>
<?php }?>

Once done, your form will be validated on the client side by the jQuery validate plugin. How does it work? It simply picks form element which have the css class required and verifies if they’re filled correctly. If not, a message is displayed.
The plugin is powerful and you can do lots of things with it, however this isn’t the purpose of this article. Hope you enjoy your new WordPress form!

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

How to create a built-in contact form for your WordPress theme

Joomla Virtuemart

I am looking for provetional to work on few of mi website.
Profetional Should be expert in developing sites based on Php
Must have a good knowledge about database in My SQL
Should be able of customizing and developing sites in open source cms
like Joomla and virtuemart
Efficient in SEO and SEF and other marketing tools
Also must have perfect communication skills and willing to work on
real time with me.

Need Magento Edits.. Asap

This is catalog only website.. no selling
Products should only be viewed after login

http://174.120.243.220/~mukulweb/

Links which should only be viewed after login
New products (featured products)
Also give an option from admin panel to add featured products to this section
Product Range (working fine)
Current offers (need to be fixed. Rigth now its accessible without login)

There should not be any option to create login from website.

After someone login, page redirects to dashboard. We dont want that. It should go to products page.

Links to remove from website
Dashboard
my account, my cart, checkout (top menu)
compare products
Create Login
Search Terms, Advanced Search (footer)

Error: Right now products per page is set 500. But if we select it as 9, it crash. Please have a look at it. (very imp)

Add top menu link: Online Enquiry (Should connect to footer link Contact us “contacts/”)

Bottom line: This is only catalog which is viweable only after login. No selling of products

Video Rating Site

Good Day,

I’m looking to get a site created that in purpose with have a community of users uploaded videos to be displayed for contest. videos when it comes to contest the user voting cannot vote until he/she has seen all entries to the contest, only after doing this can he/she cast a vote.

the videos uploaded should automatically be marked with our logo (watermark) and have the embed links similar to youtube to post or share,

built in advertising banner positions, rotation to sell ad space

admin back end for keeping track users, there uploads, there winnings, there paypal info for depositing winnings if any, where I can just click on a user and select pay winnings enter the amount and send paypal payment from me to them, a section for previous winners on the main page, the current contest taking place

i need help here to figure out a nice layout or design as I have nothing in mind and couldn’t find any other sites doing sililar.

Programming Project 90981

Fiverr Clone

Only 49 USD

Download Fiverr Clone

fiverr clone script

Dear all,

I need a fiverr clone asap.
Since there should be enough clones made allready I am keeping the description short short.

I only consider bidders with a complete and fully working DEMO to show. Site should be 100% functional in front- and backend like the original,seo optimized, high security and so on…

We will start with one language, but the site needs to be have many languages.

There are also some minor additions to be made, so you must be able to change the script according to my needs (i.e. option to filter recent, most liked, featured, best rated)

3 months after sale service needed after the launching.

Please ONLY BID if you have a good reputation and a fully functioning demo to show with a CLEAN script, this is a serious project. Regular status updates is required.

Max budget 350 dollars.

Thank you!

Programmer Asap Now 6-8hrs

Hi,

I need an dedicated programmer / developer who is a strong all-rounder URGENTLY TONIGHT for the next 6-8hrs without fail to complete the 1st of many possible projects with me.

PLEASE DO NOT DID IF YOU WILL BE IN BED SLEEPING IN 6-8hrs-
I need dedication on this NOW and if your good you will be rewarded on lots of other work that I will post here.

Let me know ASAP NOW as time is quickly running out-
More details provided on request.

Thanks

Community Builder Expert

Hello..i need somebody that know very well Comunity Builder of Joomla..
I have use it on my website www.hostessmodel.com .. actually the fields that are checking on registration process arent visualizated on profile. This is the page of registration
http://hostessmodel.com/it/registrati.html?chronoformname=models_account
and the profile page its http://hostessmodel.com/it/component/comprofiler/userprofile/Karolina.html
So this project its just to fix this small bugs on registration process.
The component used for registration page its “chronoform”, and for profile we use component “CB PROFILE PRO” .
Im open to suggestions by your side of ways to improve the website.
I will work only with experieced programmer..0 feedback will not be take on consideration.
thanks to everybody
Giancarlo

Copywriter Wanted

I am looking to hire a copywriter for the following project:
200 articles at 500 words each.
Delivery 5 articles per day.

Payment is made on a weekly basis and all articles need to be original.
They are checked using copyscape.
Articles can’t be reused or resold.

The writer needs to be available for contact every few hours.

A sample of your previous work is preferred when bidding.

Thank you.