WordPress With Magic Members

I have partially created a WordPress website for a client. I am not an expert in WordPress, therefore there are matters I cannot figure out. I am using Karma Template 1.2 by True Themes on WordPress 3.3.1 along with Magic Members 1.5.23.

You can view what stage I am at: http://bartdehrman.com/members/

I need a skilled WordPress person, who knows how to modify the CSS and PHP stylesheets, which will be minor edits at best. The candidate will also need to hand hold me through some category additions, and complete a number of tasks that is simple to a WordPress pro, but not so obvious to me. I am guessing the initial task might entail a couple hours, but tweaks and edits may incur more time later. Would like to be quoted a retainer initially, for the couple hours assistance, with payment through Scriptlance.

I am behind schedule, therefore next day response on edits are needed.

Fix Site Problems

i had my site designed and programmed by someone on scriptlance namely automation web who have now let me down and are very unreliable.

the site has some problems that need fixing.

please have a look at www.eatpasha.co.uk

please click on product in special offers and add to cart.

you will see a green popup box that appears with options.

now the problem is when ever i add this green options box onto any product in a different category. the product comes out of that category and goes to special. please can someone with php and java fix for me thankou

Jobberbase Convert To Business Directory

Jobberbase is an opensource job search platform.
I need it to be able to list businesses not jobs:
The fields required are (* is a required field):
*Business Category
*Business Name
*Business Information
*Business Address
*Business Telephone Number
Business Website(this can be your facebook website address)
Business E-mail(will not be viewable by users)
*Show business address? YES OR NO (either way users will still be able to find you by location, but if you select NO your address will not be viewable)
Upload pictures(max of 5)
——-
The main page and search function should be like gumtree.co.uk , the search should use the google maps api or google location api don’t really know which.
There is some information avaliable here:
redjumpsuit.net/2010/03/27/integrating-google-maps/
——
The listings page for each business should show:
*Business Category
*Business Name
*Business Rating
*Business Information
*Business Address (If the business has opted to show it)
*Business Telephone Number
Business Website(this can be your facebook website address)
Business E-mail(will not be viewable by users)
Picture Gallery
(Please check a gumtree.co.uk listing to see how it should look)
——-
Each Business should have comments and reviews listed beneath it, which would allow users to review a business and give it a rating of 1-5, if possible shown in stars. It should only show up when the admin has approved it.
——-
Any activity should be posted to the rss feed
——-
There will be only one yearly subscription fee the payment will be taken via paypal, the admin should be able to set the fee and also set the paypal payment address, and upon successful payment post the business listing.
——
The website will be UK based
——
This really isn’t much work, jobberbase offers a great platform to work with, with great fautures. Please test out jobberbase and the current admin panel before placing your bid.
After you have tested it out please place your bid,and write in the bid “understood”, otherwise the bid will be ignored.

Form To Email Script

The form I have attached needs to be put into a email to me form but I need it to include a photo attache meant were the user can send a photo
I will need it include a spot were they can also attache a logo two it will also need a selection box Whitetail Deer, White whitetail deer,piedbald deer, fallow deer,elk I will be using this information to manually up date a website

WordPress Theme

I need a stock wordpress to be modified to add a specific set of features. The theme will need to be able to automatically create categories and import data from a feed service.

I will need a cloaking feature that uses an out.php type of file so that any affiliate links are not visible to the search engines.

The theme will need to be developed so that, outwardly, the site looks tidy and matches a set of criteria that I will specify.

Ideally, any developers that have worked with CouponPress or icodes.co.uk framework script are welcome to bid but I will need proff of prior work.

Account Inheritance Hierarchy

Create an inheritance hierarchy that a bank might use to represent customers’ bank accounts. All customers at this bank can deposit (i.e., credit) money into their accounts and withdraw (i.e., debit) money from their accounts.More specific types of accounts also exist. Savings accounts, for instance, earn interest on the money they hold. Checking accounts, on the other hand, charge a fee per transaction (i.e., credit or debit).

Create an inheritance hierarchy containing base class Account and derived classes Savings-Account and CheckingAccount that inherit from class Account. Base class Account should include one data member of type double to represent the account balance. The class should provide a constructor that receives an initial balance and uses it to initialize the data member. The constructor should validate the initial balance to ensure that it is greater than or equal to 0.0. If not, the balance should be set to 0.0 and the constructor should display an error message, indicating that the initial balance was invalid. The class should provide three member functions. Member function credit should add an amount to the current balance. Member function debit should withdraw money from the Account and ensure that the debit amount does not exceed the Account’s balance.
If it does, the balance should be left unchanged and the function should print the message “Debit amount exceeded account balance.” Member function getBalance should return the current balance.

Derived class SavingsAccount should inherit the functionality of an Account, but also include a data member of type double indicating the interest rate (percentage) assigned to the Account.SavingsAccount’s constructor should receive the initial balance, as well as an initial value for the SavingsAccount’s interest rate. SavingsAccount should provide a public member function calculateInterest that returns a double indicating the amount of interest earned by an account.
Member function calculateInterest should determine this amount by multiplying the interest rate by the account balance. [Note: SavingsAccount should inherit member functions credit and debit as is without redefining them.]

Derived class CheckingAccount should inherit from base class Account and include an additional data member of type double that represents the fee charged per transaction. CheckingAccount’s constructor should receive the initial balance, as well as a parameter indicating a fee amount. Class CheckingAccount should redefine member functions credit and debit so that they subtract the fee from the account balance whenever either transaction is performed successfully. CheckingAccount’s versions of these functions should invoke the base-class Account version to perform the updates to an account balance. CheckingAccount’s debit function should charge a fee only if money is actually withdrawn (i.e., the debit amount does not exceed the account balance). [Hint: Define Account’s debit function so that it returns a bool indicating whether money was withdrawn. Then use the return value to determine whether a fee should be charged.]

After defining the classes in this hierarchy, write a program that creates objects of each class and tests their member functions. Add interest to the SavingsAccount object by first invoking its calculateInterest function, then passing the returned interest amount to the object’s credit function.

Sample Output:

account1 balance: $50.00
account2 balance: $25.00
account3 balance: $80.00

Attempting to debit $25.00 from account1.
Attempting to debit $13.00 from account2.
Attempting to debit $40.00 from account3.
$1.00 transaction fee charged.

account1 balance: $25.00
account2 balance: $12.00
account3 balance: $39.00

Crediting $40.00 to account1.
Crediting $65.00 to account2.
Crediting $20.00 to account3.
$1.00 transaction fee charged.

account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00

Attempting to debit $125.00 from account1.
Debit amount exceeded account balance.
Attempting to debit $113.00 from account2.
Debit amount exceeded account balance.
Attempting to debit $140.00 from account3.
Debit amount exceeded account balance.

account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00

Adding $2.31 interest to account2.
New account2 balance: $79.31

Initial balance is invalid.
Initial balance is invalid.
Initial balance is invalid.
account4 balance: $0.00
account5 balance: $0.00
account6 balance: $0.00

Driver Program:

#include <iostream>
#include <iomanip>
using namespace std;

#include “Account.h”
#include “SavingsAccount.h”
#include “CheckingAccount.h”

int main()
{
Account account1( 50.0 ); // create Account object
SavingsAccount account2( 25.0, .03 ); // create SavingsAccount object
CheckingAccount account3( 80.0, 1.0 ); // create CheckingAccount object

cout << fixed << setprecision( 2 );

// display initial balance of each object
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// attempt valid debits
cout << “Attempting to debit $25.00 from account1.” << endl;
account1.debit( 25.0 ); // try to debit $25.00 from account1
cout << “Attempting to debit $13.00 from account2.” << endl;
account2.debit( 13.0 ); // try to debit $13.00 from account2
cout << “Attempting to debit $40.00 from account3.” << endl;
account3.debit( 40.0 ); // try to debit $40.00 from account3
cout << endl;

// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// attempt valid credits
cout << “Crediting $40.00 to account1.” << endl;
account1.credit( 40.0 ); // credit $40.00 to account1
cout << “Crediting $65.00 to account2.” << endl;
account2.credit( 65.0 ); // credit $65.00 to account2
cout << “Crediting $20.00 to account3.” << endl;
account3.credit( 20.0 ); // credit $20.00 to account3
cout << endl;

// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// attempt invalid debits
cout << “Attempting to debit $125.00 from account1.” << endl;
account1.debit( 125.0 ); // try to debit $125.00 from account1
cout << “Attempting to debit $113.00 from account2.” << endl;
account2.debit( 113.0 ); // try to debit $113.00 from account2
cout << “Attempting to debit $140.00 from account3.” << endl;
account3.debit( 140.0 ); // try to debit $140.00 from account3
cout << endl;

// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// add interest to SavingsAccount object account2
double interestEarned = account2.calculateInterest();
cout << “Adding $” << interestEarned << ” interest to account2.”
<< endl;
account2.credit( interestEarned );
cout << “New account2 balance: $” << account2.getBalance() << endl;
cout << endl;

// create accounts with invalid initial balances
Account account4( -50.0 ); // create Account object
SavingsAccount account5( -25.0, .03 ); // create SavingsAccount object
CheckingAccount account6( -80.0, 1.0 ); // create CheckingAccount object

// display initial balance of each object
cout << “account4 balance: $” << account4.getBalance() << endl;
cout << “account5 balance: $” << account5.getBalance() << endl;
cout << “account6 balance: $” << account6.getBalance() << endl;
cout << endl;

return 0;
} // end main

Account Inheritance Hierarchy

Create an inheritance hierarchy that a bank might use to represent customers’ bank accounts. All customers at this bank can deposit (i.e., credit) money into their accounts and withdraw (i.e., debit) money from their accounts.More specific types of accounts also exist. Savings accounts, for instance, earn interest on the money they hold. Checking accounts, on the other hand, charge a fee per transaction (i.e., credit or debit).

Create an inheritance hierarchy containing base class Account and derived classes Savings-Account and CheckingAccount that inherit from class Account. Base class Account should include one data member of type double to represent the account balance. The class should provide a constructor that receives an initial balance and uses it to initialize the data member. The constructor should validate the initial balance to ensure that it is greater than or equal to 0.0. If not, the balance should be set to 0.0 and the constructor should display an error message, indicating that the initial balance was invalid. The class should provide three member functions. Member function credit should add an amount to the current balance. Member function debit should withdraw money from the Account and ensure that the debit amount does not exceed the Account’s balance.
If it does, the balance should be left unchanged and the function should print the message “Debit amount exceeded account balance.” Member function getBalance should return the current balance.

Derived class SavingsAccount should inherit the functionality of an Account, but also include a data member of type double indicating the interest rate (percentage) assigned to the Account.SavingsAccount’s constructor should receive the initial balance, as well as an initial value for the SavingsAccount’s interest rate. SavingsAccount should provide a public member function calculateInterest that returns a double indicating the amount of interest earned by an account.
Member function calculateInterest should determine this amount by multiplying the interest rate by the account balance. [Note: SavingsAccount should inherit member functions credit and debit as is without redefining them.]

Derived class CheckingAccount should inherit from base class Account and include an additional data member of type double that represents the fee charged per transaction. CheckingAccount’s constructor should receive the initial balance, as well as a parameter indicating a fee amount. Class CheckingAccount should redefine member functions credit and debit so that they subtract the fee from the account balance whenever either transaction is performed successfully. CheckingAccount’s versions of these functions should invoke the base-class Account version to perform the updates to an account balance. CheckingAccount’s debit function should charge a fee only if money is actually withdrawn (i.e., the debit amount does not exceed the account balance). [Hint: Define Account’s debit function so that it returns a bool indicating whether money was withdrawn. Then use the return value to determine whether a fee should be charged.]

After defining the classes in this hierarchy, write a program that creates objects of each class and tests their member functions. Add interest to the SavingsAccount object by first invoking its calculateInterest function, then passing the returned interest amount to the object’s credit function.

Sample Output:

account1 balance: $50.00
account2 balance: $25.00
account3 balance: $80.00

Attempting to debit $25.00 from account1.
Attempting to debit $13.00 from account2.
Attempting to debit $40.00 from account3.
$1.00 transaction fee charged.

account1 balance: $25.00
account2 balance: $12.00
account3 balance: $39.00

Crediting $40.00 to account1.
Crediting $65.00 to account2.
Crediting $20.00 to account3.
$1.00 transaction fee charged.

account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00

Attempting to debit $125.00 from account1.
Debit amount exceeded account balance.
Attempting to debit $113.00 from account2.
Debit amount exceeded account balance.
Attempting to debit $140.00 from account3.
Debit amount exceeded account balance.

account1 balance: $65.00
account2 balance: $77.00
account3 balance: $58.00

Adding $2.31 interest to account2.
New account2 balance: $79.31

Initial balance is invalid.
Initial balance is invalid.
Initial balance is invalid.
account4 balance: $0.00
account5 balance: $0.00
account6 balance: $0.00

Driver Program:

#include <iostream>
#include <iomanip>
using namespace std;

#include “Account.h”
#include “SavingsAccount.h”
#include “CheckingAccount.h”

int main()
{
Account account1( 50.0 ); // create Account object
SavingsAccount account2( 25.0, .03 ); // create SavingsAccount object
CheckingAccount account3( 80.0, 1.0 ); // create CheckingAccount object

cout << fixed << setprecision( 2 );

// display initial balance of each object
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// attempt valid debits
cout << “Attempting to debit $25.00 from account1.” << endl;
account1.debit( 25.0 ); // try to debit $25.00 from account1
cout << “Attempting to debit $13.00 from account2.” << endl;
account2.debit( 13.0 ); // try to debit $13.00 from account2
cout << “Attempting to debit $40.00 from account3.” << endl;
account3.debit( 40.0 ); // try to debit $40.00 from account3
cout << endl;

// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// attempt valid credits
cout << “Crediting $40.00 to account1.” << endl;
account1.credit( 40.0 ); // credit $40.00 to account1
cout << “Crediting $65.00 to account2.” << endl;
account2.credit( 65.0 ); // credit $65.00 to account2
cout << “Crediting $20.00 to account3.” << endl;
account3.credit( 20.0 ); // credit $20.00 to account3
cout << endl;

// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// attempt invalid debits
cout << “Attempting to debit $125.00 from account1.” << endl;
account1.debit( 125.0 ); // try to debit $125.00 from account1
cout << “Attempting to debit $113.00 from account2.” << endl;
account2.debit( 113.0 ); // try to debit $113.00 from account2
cout << “Attempting to debit $140.00 from account3.” << endl;
account3.debit( 140.0 ); // try to debit $140.00 from account3
cout << endl;

// display balances
cout << “account1 balance: $” << account1.getBalance() << endl;
cout << “account2 balance: $” << account2.getBalance() << endl;
cout << “account3 balance: $” << account3.getBalance() << endl;
cout << endl;

// add interest to SavingsAccount object account2
double interestEarned = account2.calculateInterest();
cout << “Adding $” << interestEarned << ” interest to account2.”
<< endl;
account2.credit( interestEarned );
cout << “New account2 balance: $” << account2.getBalance() << endl;
cout << endl;

// create accounts with invalid initial balances
Account account4( -50.0 ); // create Account object
SavingsAccount account5( -25.0, .03 ); // create SavingsAccount object
CheckingAccount account6( -80.0, 1.0 ); // create CheckingAccount object

// display initial balance of each object
cout << “account4 balance: $” << account4.getBalance() << endl;
cout << “account5 balance: $” << account5.getBalance() << endl;
cout << “account6 balance: $” << account6.getBalance() << endl;
cout << endl;

return 0;
} // end main

Expert WordPress And Wp E-commerce Programmer Needed 2

NB: BIDDERS NEED NOT BE NATIVE ENGLISH SPEAKERS, BUT PERFECT KNOWLEDGE OF THE ENGLISH LANGUAGE IS REQUIRED FOR THIS PROJECT. PLEASE DO NOT BID IF YOU ARE NOT FLUENT IN YOUR UNDERSTANDING OF THE ENGLISH LANGUAGE.

I have two programming requests:

I created an e-commerce website for a client in October last year, using WordPress and the WP e-Commerce plugin. The website sells alternative medical products and food supplements.

(A) CUSTOM IMPORTER PLUGIN

The client had a requirement that the ingredients of each product should be displayed in tabular format in a custom field with custom “sub-fields” in the product description.

I contracted a programmer on ScriptLance who created a plugin to do the job. Basically it works by: (1) specifying the headers of the “sub-fields”; (2) entering the heading of the table in which the ingredients would be sorted; (3) uploading a CSV file containing all products, but with multiple records of each product in accordance with the number of ingredients, each record containing an ingredient; (4) importing it into the database.

The result was that there was still only one record of each product in the products database, but in the extended product display on the site the ingredients for each product were displayed in tabular format under the specified heading. The heading appeared in the same way that the other field headings appear in the display, although it was technically not a field as such.

This plugin worked well for a while, but then suddenly started to malfunction, probably due to WP upgrades leaving it obsolete. I need someone to fix it so it works the way it should again (I can’t get hold of the original coder). It should be upgraded to work with WordPress 3.1 and should preferably be easy to upgrade in future.

You should also change the display of the table slightly so it displays within another table. The table containing the actual ingredients should be invisible, i.e. no borders, background or padding, but the table containing that table (in a single cell) should have a 1px #CCCCCC border with a very light gray background, and the cell containing the other table should have 10px or 15px padding.

Preferably, if it was easy to do, I would have wanted not tables but divs.

I attach the actual plugin (although the previous programmer tinkered with the plugin a bit online after it was installed, so I don’t know if the attached one is the same as the installed one anymore) as well as a CSV file. The CSV file is the one containing multiple records of each product, in accordance with the number of ingredients. This is just so you can make an informed assessment before you bid. The fields in the CSV file containing the ingredients are: “Uomwithcontains”,”Ingredient”,”UOM per UOM”,”UOM”

One other thing: The original coder created the plugin specifically for this site (http://fortifood.co.za)only, in spite of my request to create it as a plugin that could be used with any WordPress site using the WP e-Commerce plugin. If it won’t affect the quote too much, I would like this also to be corrected.

(B) WP E-COMMERCE THEME

Something also went wrong with the WP e-Commerce themes, making it impossible for me to display postage/delivery options in my shopping cart. I would like that to be fixed as well.

Skilled Graphic Designer Needed For Logo Projects

Skilled Creative Designer needed to design logo and identity project designs for established Media Group. Must be creative with clean and fresh take on design work. This is not a one time project, if this works out well, we are looking for ongoing collaboration.

We’ll primarily be needing Logo/Identity Work but also there may be other projects available. For example:

Logo & Identity Design (as mentioned)
Newsletter Template Design
Graphic Design & Vector Illustrations
Stationery
Brochure and Flyer Design
Design for Large Format Graphics (Window Decals, Banners, Displays etc)

Graphics And Image Scroller Installer Installation

1. Seven product images for Featuring seven categories: Household (Images: Refrigerator & food mixer), Electronics (Images: TV & DVD player), Mobile phones (Images: Iphone & Blackberry & Mobile phone), Computers (Images: Laptop & Tablet), Games (Images: Xbox & Playstation), Electricity (Images: Generator), Jewelry (Images: Wristwatch & other Jewelry). The images to be used can be discussed.

The work MUST be original. Efforts should be made to hide the product names in the picture but the most modern of the products mentioned will be used. A typical example of how the products will be put together in the images can be seen in the attached picture by a leading comparison site.

The color of the image background and style will be similar to the one in the attached image. In general images of two or more products belonging to the same category will be combined to creat one picture.

Text for each Image will be supplied by us.

Images size should be large enough for a 600 x 400 although we shall be placing them in a smaller table for now.

Our site name will be stamped discreetly on the images.

The images should blend with the color in the table in which they will be placed.

Image should be seamless, sharp and professional.

These images are to be used to feature product categories on our site. A click on the an image will take you to a particular category.

2. Finally, you will install a image scroller found on and to be download from http://www.benjaminkeen.com/software/image_scroller/ on our site. You will then upload the product images into the scroller and ensure that the scroller is working properly on our index page and that the images fit and works well in the scroller. Images will also be sent to us in zip file. You will instruct us on how we can add, remove, deactivate images in the scroller in the future. This will be installed and made to show on our index page.

This is all. We will appreciate a fast worker so this project is concluded quickly.

Website For An Association With Php/mysql 2

I wish to develop a website for an association that distributes an annual grants to sports clubs. To receive this grant, each club must, of course, provide some basic information (club name, names of leaders, address, the sport name…) and others that are necessary to calculate the amount allocated (number of licensed competitors, number of licensed non-competitors, number of regional travel, number of national travel…).

This association asked me to develop a website that allows clubs to capture these various information. It means that I have already the approximately structure of the mysql database. I will provide this structure. But I’ve no time to develop the web interface. I will also provide a screenshot of each pages with the data it needs.

The first page of the website is the login page (a username that will be define by the association and the password). The password will be given but we have to provide the possibility of changing it. The next pages will contain the differents data needed.
Some club can have about 200 members. So there must be a possibility to copy and paste information from their Excel file (for example) directly into the web page (about 12 fields).

Finally, the association must be able to follow the evolution of inputs made by each club. Therefore the interface should have a page dedicated to the association to access all data and statistics they want. In this area, the association will have to be able to add, change or delete value. They also want to export the data in an excel file or/and access database.

Naturally, the website need to be safe and secure ! The design is important (theme on sports). I need that development is easily understandable (well commented) because I should keep it afterwards and I need to be able to add new information, without calling anyone to help me.

Convert Simple Liberty Basic Program To Vb

I have a simple little program that was written in Liberty Basic and I need it to run under VB Express 2010. The program checks a directory for any files. If no files it sleeps for 30 seconds and checks again. If there are any files it takes them one at a time, makes a copy in a different directory. Then this sequential file is opened, read, parsed into individual fields. (each field is separated by a ~) Then a specific field is changed from a Y to an N and written to a different director with the ~ put back in between the fields. When that is completed checks to see if the file has any more records and does the same till all the records are in the new file in the new director. That file is closed in the new directory and the original file in the original directory is deleted. The program checks to see if any files are left in the original directory and process them the same way and when all the files are processed from the source directory, the program goes to sleep for 30 seconds and goes back through the same process again. It sounds difficult but is quite simple.

Search Product Tree And Forum

SEARCH

Referring to email, please integrate the Sphider into the website. Please remove all other search files from the website so we start from fresh. This includes the drop down menu etc as we will use the autosuggest used with this search engine. Please link with search bar or create a new search bar in index, 404, watch and samplewatch .tpl files. Try and attach the CSS to the CSS file we use for the website or create a new CSS and place into the same folder? I have created a search folder in http for you to upload files to

We’ll need to test to see if it finds the product with a product code or manufacturer’s code which we’ll be creating later.

FOUND ISSUES

– In news, if a store’s products are inactive, make sure the Add Product News is not usable.

– When you log in with a studio or store and you create quick links, then edit them it doesn’t show anything you’ve saved?

– In the admin area in the Stores list can you add a new column called Products which says either ‘Inactive’ or the ‘Expiry Date’ or ‘Never Expire’.

– Make sure it shows the Brands logo on the Products page if a Brand is selected, I have added the script into the .tpl, please update the .inc

– When posting a comment on a Product Review page it says:
Message: ‘document.getElementById(…)’ is null or not an object
Line: 305
Char: 3
Code: 0
URI: http://upcomingbeats.com/inc/js/comments_products.js

Please fix

– Please add the options 3, 6 and 12 month to the Artist Adverts section. This is added in the admin area but not the website so they’ll be able to choose how long their adverts are active for. Please test this to make sure it works.

– Update wish list with the link to the brands profile and make sure it is showing the ‘Currency Signs’ for the ‘Postage and Packaging’, currently isn’t.

– Please add the http:// drop down menu options to the buylinks.tpl/.inc

JAVASCRIPT ISSUES

– I’ve added the ‘Print Details’ to studio.tpl and estore.tpl but for some reason it doesn’t want to work. I’ve added what I think is the correct JavaScript and coding? Please download latest files.

– Seems to be a JavaScript issue when adding a product to a store from a product review?

– Subscription issue, make sure artists, listeners and studios can subscribe to Stores and individual products. I tested this and when you click subscribe to store whilst viewing a product it adds a random product into your subscriptions?

– Make sure artists, listeners and stores can subscribe to Studio news.

– When adding a Product Review or Product to the wish list OR Subscribing to a studio, store or product, I’ve added an extra link instead of just the subscribe button images we use. But now when you click either the link or image only one disappears, can you make it so both disappear? I think the JavaScript just needs updating.

– For some reason it has a button ‘View All Comments’ on this page, when you click it random things change and no comments are shown?? I’m sure this is only meant to appear when 20+ comments have been made. Please turn into standard link and not a button.
http://upcomingbeats.com/track/395

MISSING PRODUCTS?

– There should be 5 product in this category but nothing is showing? http://upcomingbeats.com/reviews/bowed-accessories/strings/
I think a lot of products and reviews aren’t showing, I’m not sure where they’re hiding? Ashley Audio – Missing a few products?
I’ve noticed that on this page if you click ‘Most Commented’ it says ‘Random Reviews’ in the H2 and the drop down menu changes to say ‘All Bowed’? Must be a an error in script.

– In a Product Review and Product Advert can you please add the categories they’re in for example please see category_subcategory_display.png
If it’s a product it should link to the products of that store, category/subcategory
If it’s a product review it should link to the product reviews of that brand category/subcategory

PRODUCT TREE

BRAND: Product Tree in /brand/yamaha/product-tree which will list all the categories and subcategories and products in each. The H2 should be ‘Brand name Product Tree’. Each link will link to each category/subcategory showing only product reviews from this Brand, links should be for example /brand/yamaha/guitars or if they click on a product it will take them to that product.
For each Cagetgory/Subcategory it should show how many products there are.

STORES: Product Tree in /store/8ball/product-tree, same set up as the Brands page but only showing the categories/subcategories they have products listed under. In product-tree there should be two links ‘Product Tree’ which is default and ‘Brands’ which will list all the brands the store has products for. If you click on the brand it will show the products this store has for sale under that Brand.

For each Cagetgory/Subcategory it should show how many products there are.

In /products/ and searches the Brand name should link to the stores products under that brand. For example If Playrecord had a Fender guitar forsale and you clicked Fender it would show all the products PlayRecord has for sale under that brand. This would link to /brand/playrecord/fender with the H2 of ‘PlayRecord Fender Products’

MANAGING PRODUCTS: In ‘Manage Product Reviews’ for Assigned Listeners and ‘Active Adverts’ for Stores, please can it show the last 25 added products but also a link to their product tree for them to update the products they have added. The links should be ‘Latest 25′ ‘Product Tree’ (and ‘Brands’ if store). So if they view their product tree they can still go back to the latest 25 added. If they view brands and select Yamaha for example it will show them the products they have listed under Yamaha for them to edit.
For each Cagetgory/Subcategory in products tree and each Brand under ‘Brands for a store, it should show how many products there are.

In main_page, products and search where it shows the ‘Brands Name’ for a Stores and Artist adverts can this link to /store/8ball/yamaha or /artist/3ac/Yamaha. This link will show only the products for Yamaha that 8ball or 3ac has forsale?

DEALERS (BRANDS & STORES)

– ‘Dealers’ this will be on the Brands Profile page. If a store has a product listed under this brand, their store name will appear on here with a link to their store profile. Also in ‘Brands where it says ‘Store Links’ this will display how many stores are linked to this brand.

– Add a box to the ‘add product to review’ on the website and in the admin area. This will be called Model, this will show on the Product Review page which is the Model number a brand usually gives their products. If someone searches for this code it will bring the product up in the search results hopefully.
Please add this code to th Product Reviews <H2> for example ‘Akai 224DLE Product Review’ and in the details of the review itself.

MUSIC UPLOAD

Can you change the current upload system to only allow mp3s to be uploaded. When selecting a file to upload it should ONLY accept mp3s.
I will make a sign saying they can only upload mp3s and that they should convert their track before uploading.

Do you still have the .flv of the mp3 player? If so can you change the volume control so that the standard volume is the maximum? At the moment if you listen to a track and you put the volume to max it distorts so we need to set the current volume setting which is 50% to 50% volume, when on full it should be 100%?

PHP BB FORUM & BUYLINK

This is a forum produced by PHPBB which we’ve intergrated into our website.

– When viewing the Forum and a users statistics page can you make sure these links are available to link each account with their Ub Music pages.

Stores: Ub Profile, News if any, RSS if any, Contact Form if active, Product Listing if active and Twitter Feed if active

Studios: Ub Profile, News if any, RSS if any, Contact Form if active, Twitter Feed if active and Sample Tracks if any uploaded

Artists: Ub Profile, Adverts if active, Buy Links if active and Contact Form if active

Listeners: Ub Profile

– Make it so the users have to log into the forum separately but with the same account. Currently when you sign into the website you are automatically signed into the Forum. They both read from the same DB table. Please change this so if they sign in threw the forum they will still need to sign into the website. Hopefully this will resolve the problem of the web link when logging into the website?

If possible when logging into the website to still show the number of New Messages they have in the My Account but once they click this they’ll need to log into the forum. Same for ‘Forum Control Panel’

– When an artist has active buy links can you add a link into the Artists Statistics page in the Forum. Also add a link underneath the user’s avatar so it appears with every post they make on the forum.