Hello,
I need someone to make a brand add-on.
I NEED:
- This to be able to bulk upload (just like we can with description, product code, etc. I want this to be part of my excel spreadsheet upload)
- Needs to be able to export to Google base without a problem
- This to be completed within 2 days
I DON'T NEED:
- Don't need this to be shown on product pages
- Don't need to be printed, shown, etc.
WANT TO DO THIS FOR ME?
Make me an offer by emailing me at bigjmart@mail.com
If I respond back to you, I like your offer.
Looking to have this completed ASAP.
Thanks.
Not that I don't like making a few extra bucks, but this is something that you could do yourself.
Here is what to do:
1.) In you phpMyadmin run this SQL:
ALTER TABLE `cscart_products` ADD `brand` VARCHAR(100) AFTER `product_code` ;
2.) In skins/basic/admin/views/products/update.tpl
After:
{hook name="companies:product_details_fields"}
{include file="views/companies/components/company_field.tpl" title=$lang.vendor name="product_data[company_id]" id="product_data_company_id" selected=$product_data.company_id}
{/hook}
Add:
```php
```
3.) In schemas/exim/products.php
After:
```php
'Price' => array (
'table' => 'product_prices',
'db_field' => 'price',
'convert_put' => array ('fn_exim_import_price', '@price_dec_sign_delimiter'),
'process_get' => array ('fn_exim_export_price', '#this', '@price_dec_sign_delimiter'),
),
```
Add:
```php
'Brand' => array (
'db_field' => 'brand',
),
```
4.) In schemas/exim/google.php
After:
```php
'upc' => array (
'db_field' => 'product_code'
),
```
Add:
```php
'brand' => array (
'db_field' => 'brand',
),
```
This could be cleaned up and put into an addon, but this will do the job.
Hope it helps,
Brandon
wow, looks good,
Im stuck on step 2… i cannot find this file path?
2.) In skins/basic/admin/views/products/components/update.tpl
Please help. thanks.
Sorry, wrote that wrong.
It should be:
skins/basic/admin/views/products/update.tpl
Thanks,
Brandon
Brandon,
Should I see a field named “Brand” when i go to products → add new product (sorta like how we see the product id field, or the weight field)?
You will need to clear the cache before the modifications take place.
Try something like yourdomain.com&cc.
Hope this helps.