[vQmod] Edit Multiple Products from Products List Page
Re: [vQmod] Edit Multiple Products from Products List Page
thanks for this its GREAT!!!
i have one problem well two... one is that the word "price" is missing
Image Product Name Model Quantity Status Action its just blanks...
and does this mod normally show the existing price? or just a blank box to change it?
is there away to set a default price in case its left blank and updated? something odd like $999.99
i have one problem well two... one is that the word "price" is missing
Image Product Name Model Quantity Status Action its just blanks...
and does this mod normally show the existing price? or just a blank box to change it?
is there away to set a default price in case its left blank and updated? something odd like $999.99
- nzitguy@live.com
- Posts: 4
- Joined: Thu Apr 28, 2011 1:47 am
Re: [vQmod] Edit Multiple Products from Products List Page
The word 'price' should be displaying, and the price of the product should be in the box (this shouldn't be blank, be careful this mod doesn't remove your prices when you update).
What version of OpenCart are you using?
What version of OpenCart are you using?
- jadedstudio
- Posts: 17
- Joined: Thu Feb 03, 2011 1:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Hi all & Many thanks to jadedstudio for this really usefull vQmod.
I use 1.4.9.3 and installed and run your "edit prices admin product list" together with "Filter Products by Category" (from philbydevil) succesfully !
french or dutch user may be interested in this (non-vQ) "mod" for a pretty translated button
:
After (for multi-lingual users) or Replace (for uni-lingual users) :
Add or With :
For french translation :
For dutch translation :
Wish you... Satisfaction !
I use 1.4.9.3 and installed and run your "edit prices admin product list" together with "Filter Products by Category" (from philbydevil) succesfully !
french or dutch user may be interested in this (non-vQ) "mod" for a pretty translated button
:After (for multi-lingual users) or Replace (for uni-lingual users) :
- Code: Select all
$_['button_simple_pu'] = 'Update Selected';
]]></add>
</operation>
</file>
Add or With :
For french translation :
- Code: Select all
<file name="admin/language/french/french.php">
<operation error="skip">
<search position="after"><![CDATA[
$_['button_copy'] = 'Copier';
]]></search>
<add trim="true"><![CDATA[
$_['button_simple_pu'] = 'MàJ Sélection';
]]></add>
</operation>
</file>
For dutch translation :
- Code: Select all
<file name="admin/language/dutch/dutch.php">
<operation error="skip">
<search position="after"><![CDATA[
$_['button_copy'] = 'Kopieer';
]]></search>
<add trim="true"><![CDATA[
$_['button_simple_pu'] = 'Geselecteerd aanpassen';
]]></add>
</operation>
</file>
Wish you... Satisfaction !
- crosshair
- Posts: 2
- Joined: Wed May 18, 2011 9:47 am
Re: [vQmod] Edit Multiple Products from Products List Page
I get this error in version 1.4.9.5 =>
Undefined variable: button_simple_pu in /usr/home/bolsoclub/www/vqmod/vqcache/vqcache_admin_view_template_catalog_product_list.tpl
Don't know if it's got anything to do with the vqmods I've got, but I haven't seen any conflicts between files...
Undefined variable: button_simple_pu in /usr/home/bolsoclub/www/vqmod/vqcache/vqcache_admin_view_template_catalog_product_list.tpl
Don't know if it's got anything to do with the vqmods I've got, but I haven't seen any conflicts between files...
- msmith
- Posts: 128
- Joined: Mon Oct 18, 2010 12:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Hi msmith,
I don't think the variable is being added in the controller file. on lines 87 - 93 of my vQmod you should see the following:
Try changing this:
to this:
I haven't tested on 1.4.9.5, but the reason you're getting the error is because the line above is not in the updated (1.4.9.5) controller file.
Hope this helps!
I don't think the variable is being added in the controller file. on lines 87 - 93 of my vQmod you should see the following:
- Code: Select all
<operation error="skip">
<search position="after"><![CDATA[
$this->data['button_delete'] = $this->language->get('button_delete');
]]></search>
<add trim="true"><![CDATA[
$this->data['button_simple_pu'] = $this->language->get('button_simple_pu');
]]></add>
Try changing this:
- Code: Select all
$this->data['button_delete'] = $this->language->get('button_delete');
to this:
- Code: Select all
$this->data['token'] = $this->session->data['token'];
I haven't tested on 1.4.9.5, but the reason you're getting the error is because the line above is not in the updated (1.4.9.5) controller file.
Hope this helps!
- jadedstudio
- Posts: 17
- Joined: Thu Feb 03, 2011 1:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Everything's the same....
- msmith
- Posts: 128
- Joined: Mon Oct 18, 2010 12:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Do you mean the error's gone, but the product list is not editable? Or is the error still there?
- jadedstudio
- Posts: 17
- Joined: Thu Feb 03, 2011 1:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Sorry for not being specific enough... The same error is still there... !
- msmith
- Posts: 128
- Joined: Mon Oct 18, 2010 12:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
You could try removing the variable from the template file altogether and replacing with the actual text as follows:
Change this (line 138):
with this
Change this (line 138):
- Code: Select all
<div class="buttons"><a onclick="location = '<?php echo $insert; ?>'" class="button"><span><?php echo $button_insert; ?></span></a><a onclick="$('#form').attr('action', '<?php echo $simple_pu; ?>'); $('#form').submit();" class="button"><span><?php echo $button_simple_pu; ?></span></a><a onclick="$('#form').attr('action', '<?php echo $copy; ?>'); $('#form').submit();" class="button"><span><?php echo $button_copy; ?></span></a><a onclick="$('form').submit();" class="button"><span><?php echo $button_delete; ?></span></a></div>
with this
- Code: Select all
<div class="buttons"><a onclick="location = '<?php echo $insert; ?>'" class="button"><span><?php echo $button_insert; ?></span></a><a onclick="$('#form').attr('action', '<?php echo $simple_pu; ?>'); $('#form').submit();" class="button"><span>Update Selected</span></a><a onclick="$('#form').attr('action', '<?php echo $copy; ?>'); $('#form').submit();" class="button"><span><?php echo $button_copy; ?></span></a><a onclick="$('form').submit();" class="button"><span><?php echo $button_delete; ?></span></a></div>
- jadedstudio
- Posts: 17
- Joined: Thu Feb 03, 2011 1:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
That seems to have done it !! Thanks, this is a different world altogether !!
- msmith
- Posts: 128
- Joined: Mon Oct 18, 2010 12:57 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Any chance this will be updated to work with OC 1.5?
- opencartisalright
- Posts: 375
- Joined: Sun Feb 20, 2011 8:09 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Please do it for 1.5.1. 

- ripper
- Posts: 31
- Joined: Tue Jul 05, 2011 8:37 pm
Re: [vQmod] Edit Multiple Products from Products List Page
Already downloadeble for 1.5.1 

-

SVN - Posts: 204
- Joined: Mon Jan 03, 2011 3:59 pm
Re: [vQmod] Edit Multiple Products from Products List Page
I am currently using Open Cart 1.5.0 and try to use your mod and when I attempt to update a product get the following error in the address bar and nothing happens:
Hashes are my website btw
Any advice for a fix? I have attempted the fixes from above with no luck =(
Hashes are my website btw

#######/shop/admin/%3Cb%3ENotice%3C/b%3E:%20Undefined%20variable:%20simple_pu%20in%20%3Cb%3E/home/#####/######/shop/vqmod/vqcache/vq-admin_view_template_catalog_product_list.tpl%3C/b%3E%20on%20line%20%3Cb%3E51%3C/b%3E
Any advice for a fix? I have attempted the fixes from above with no luck =(
- boxrick
- Posts: 10
- Joined: Thu Aug 18, 2011 4:06 pm
Re: [vQmod] Edit Multiple Products from Products List Page
boxrick wrote:I am currently using Open Cart 1.5.0 and try to use your mod and when I attempt to update a product get the following error in the address bar and nothing happens:
Hashes are my website btw#######/shop/admin/%3Cb%3ENotice%3C/b%3E:%20Undefined%20variable:%20simple_pu%20in%20%3Cb%3E/home/#####/######/shop/vqmod/vqcache/vq-admin_view_template_catalog_product_list.tpl%3C/b%3E%20on%20line%20%3Cb%3E51%3C/b%3E
Any advice for a fix? I have attempted the fixes from above with no luck =(
I get exactly the same when using 1.5.0, has any one got a fix for this?
Thanks in advance
- SimonW
- Posts: 5
- Joined: Tue Aug 23, 2011 11:51 am
Re: [vQmod] Edit Multiple Products from Products List Page
Also waiting for compatible version for 1.5.1.1
Thank you in advance!
Thank you in advance!
- harryal
- Posts: 1
- Joined: Fri Aug 26, 2011 9:56 am
Re: [vQmod] Edit Multiple Products from Products List Page
SimonW wrote:boxrick wrote:I am currently using Open Cart 1.5.0 and try to use your mod and when I attempt to update a product get the following error in the address bar and nothing happens:
Hashes are my website btw#######/shop/admin/%3Cb%3ENotice%3C/b%3E:%20Undefined%20variable:%20simple_pu%20in%20%3Cb%3E/home/#####/######/shop/vqmod/vqcache/vq-admin_view_template_catalog_product_list.tpl%3C/b%3E%20on%20line%20%3Cb%3E51%3C/b%3E
Any advice for a fix? I have attempted the fixes from above with no luck =(
I get exactly the same when using 1.5.0, has any one got a fix for this?
Thanks in advance
Guess there isnt a fix then........

- SimonW
- Posts: 5
- Joined: Tue Aug 23, 2011 11:51 am
Re: [vQmod] Edit Multiple Products from Products List Page
harryal wrote:Also waiting for compatible version for 1.5.1.1
Thank you in advance!
Actually it works fine with 1.5.1.1
Just tried
-

dony_b - Posts: 233
- Joined: Wed Aug 18, 2010 1:56 pm
- Location: Boston, MA
Re: [vQmod] Edit Multiple Products from Products List Page
dony_b wrote:harryal wrote:Also waiting for compatible version for 1.5.1.1
Thank you in advance!
Actually it works fine with 1.5.1.1
Just tried
Wish it would work for my 1.5.0.0
- SimonW
- Posts: 5
- Joined: Tue Aug 23, 2011 11:51 am
Re: [vQmod] Edit Multiple Products from Products List Page
dony_b wrote:harryal wrote:Also waiting for compatible version for 1.5.1.1
Thank you in advance!
Actually it works fine with 1.5.1.1
Just tried
1.5.1.2 not working.
any chance for update?
-

Eva30 - Posts: 30
- Joined: Fri Sep 09, 2011 8:17 am
Who is online
Users browsing this forum: No registered users and 3 guests













