Community Forums

[vQmod] Enhanced Dashboard

Put any free vQmod scripts here.
vQmod details

[vQmod] Enhanced Dashboard

Postby olimax » Tue Jan 10, 2012 1:39 pm

Enhancement for Admin Dashboard
OC 1.5.1.3
vQmod V2
dashboard_enhance.xml
Enhancement for Admin Dashboard OC 1.5.1.3
(7.83 KiB) Downloaded 371 times


Adds Links to Customers/Reviews/Affiliates awaiting when there are some
Increases Latest Orders to 30
Adds Links to Customers in Orders
Adds Product Low Stock Alerts list
Works with At-a-Glance
..and some other bits

Any other suggestions?
Oli
User avatar
olimax
 
Posts: 77
Joined: Thu Dec 22, 2011 9:08 am
Location: Barcelona & London

Re: [vQmod] Enhanced Dashboard

Postby olimax » Tue Jan 10, 2012 1:47 pm

Sorry. I meant to put this is vQmods thread but cant move it now
User avatar
olimax
 
Posts: 77
Joined: Thu Dec 22, 2011 9:08 am
Location: Barcelona & London

Re: [vQmod] Enhanced Dashboard

Postby 3antz » Tue Jan 10, 2012 3:50 pm

Hi Olimax,

Thank you for sharing this mod, it works great. Saves the trouble having to toggle back and forth.
3antz
 
Posts: 136
Joined: Sun Oct 02, 2011 10:52 am

Re: [vQmod] Enhanced Dashboard

Postby Lisaweb » Tue Jan 10, 2012 9:28 pm

Very nice! Thank you!
Using OC v1.5.4.1 with Evisu Theme
User avatar
Lisaweb
 
Posts: 123
Joined: Tue Dec 06, 2011 4:01 pm

Re: [vQmod] Enhanced Dashboard

Postby Melon » Wed Jan 11, 2012 1:45 am

nice work
Melon
 
Posts: 90
Joined: Thu Feb 03, 2011 12:02 pm

Re: [vQmod] Enhanced Dashboard

Postby Klimskady » Sat Jan 14, 2012 2:31 am

This is really good, thanks.
Klimskady
 
Posts: 160
Joined: Mon Jun 06, 2011 11:57 pm

Re: [vQmod] Enhanced Dashboard

Postby hbg » Thu Jan 19, 2012 11:50 pm

Looks like a great mod. I have just installed it, but nothing has changed. ??? :-\
User avatar
hbg
 
Posts: 198
Joined: Wed Apr 13, 2011 12:52 am
Location: Newcastle NSW Australia

Re: [vQmod] Enhanced Dashboard

Postby olimax » Fri Jan 20, 2012 6:43 am

check your vQmod logs and see if you get any errors
User avatar
olimax
 
Posts: 77
Joined: Thu Dec 22, 2011 9:08 am
Location: Barcelona & London

Re: [vQmod] Enhanced Dashboard

Postby hbg » Fri Jan 20, 2012 7:01 am

Hi, the error log was blank. :-\
User avatar
hbg
 
Posts: 198
Joined: Wed Apr 13, 2011 12:52 am
Location: Newcastle NSW Australia

Re: [vQmod] Enhanced Dashboard

Postby olimax » Fri Jan 20, 2012 9:50 am

Odd
Maybe try clearing your vqmod cache
User avatar
olimax
 
Posts: 77
Joined: Thu Dec 22, 2011 9:08 am
Location: Barcelona & London

Re: [vQmod] Enhanced Dashboard

Postby hbg » Sun Jan 22, 2012 11:05 pm

Hi, I just tried that. Strange. Maybe my VQMod isn't installed correctly. I had an issue recently, & it was re-installed.
User avatar
hbg
 
Posts: 198
Joined: Wed Apr 13, 2011 12:52 am
Location: Newcastle NSW Australia

Re: [vQmod] Enhanced Dashboard

Postby olimax » Sun Jan 22, 2012 11:40 pm

check your vqmod logs
User avatar
olimax
 
Posts: 77
Joined: Thu Dec 22, 2011 9:08 am
Location: Barcelona & London

Re: [vQmod] Enhanced Dashboard

Postby hbg » Tue Jan 24, 2012 3:26 am

VQMod was zero. Obviously something was amiss.
I had some issues recently with the system menu tabs disappearing.
http://forum.opencart.com/viewtopic.php?f=20&t=51131
They came back again after I uploaded the admin folder (minus config.php).
Voila!

http://code.google.com/p/vqmod/wiki/Install_OpenCart
Edit your admin/index.php file
FIND:
// Startup
require_once(DIR_SYSTEM . 'startup.php');

// Application Classes
require_once(DIR_SYSTEM . 'library/currency.php');
require_once(DIR_SYSTEM . 'library/user.php'));
require_once(DIR_SYSTEM . 'library/weight.php');
require_once(DIR_SYSTEM . 'library/length.php');
REPLACE WITH:
// vQmod
require_once('../vqmod/vqmod.php');
$vqmod = new VQMod();

// VQMODDED Startup
require_once($vqmod->modCheck(DIR_SYSTEM . 'startup.php'));

// Application Classes
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/currency.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/user.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/weight.php'));
require_once($vqmod->modCheck(DIR_SYSTEM . 'library/length.php'));
Load your store homepage and verify it works.

I hope this info helps someone else.
User avatar
hbg
 
Posts: 198
Joined: Wed Apr 13, 2011 12:52 am
Location: Newcastle NSW Australia

Re: [vQmod] Enhanced Dashboard

Postby hbg » Tue Jan 24, 2012 6:45 am

olimax wrote:Enhancement for Admin Dashboard
OC 1.5.1.3
vQmod V2
dashboard_enhance.xml


Adds Links to Customers/Reviews/Affiliates awaiting when there are some
Increases Latest Orders to 30
Adds Links to Customers in Orders
Adds Product Low Stock Alerts list
Works with At-a-Glance
..and some other bits

Any other suggestions?
Oli


I was fiddling with it but had no luck. An option to select either Disabled or Enabled in Products would be handy. 8)
User avatar
hbg
 
Posts: 198
Joined: Wed Apr 13, 2011 12:52 am
Location: Newcastle NSW Australia

Re: [vQmod] Enhanced Dashboard

Postby MrTech » Thu Mar 29, 2012 9:20 pm

olimax wrote: Adds Product Low Stock Alerts list... Any other suggestions?

In my store, most items are unique and not very often do they have more than 1 available. What happens now is when I add products, they automatically show up in my "low stock alert list" on the dashboard. Funny, but not very useful. I'm sure I won't be the only one using unique products and was wondering if it would be easy to modify the code to show the 30 latest out of stock products? This would work with the same reasoning as low stock...if you see low stock you need to re-order. In my case if I see out of stock I would know which products sell and try to get more of that kind.

Would someone in the know be able to provide the code I need to change from "low stock" to "recently out of stock"?

Thanks for your time and for sharing!
~
Image for OpenCart (NEW v2.0) Professional Newsletter & Auto-Responder System
Don't leave money on the table, capturing email addresses is basic business 101.

Profitable Product Pages It's Not a Template... Not a Theme... Just Different
Takes your product pages and turns them on their head and it adds a pop-up QR Code too !!
~
User avatar
MrTech
 
Posts: 309
Joined: Mon Jan 09, 2012 6:39 am
Location: Canada, Eh!

Re: [vQmod] Enhanced Dashboard

Postby olimax » Fri Mar 30, 2012 1:29 pm

I cant check it at the mo
but I think if you change this
Code: Select all
'filter_max_quantity'  => 3

to this
Code: Select all
'filter_max_quantity'  => 0

it should do what you are after

worth a go anyway
User avatar
olimax
 
Posts: 77
Joined: Thu Dec 22, 2011 9:08 am
Location: Barcelona & London

Re: [vQmod] Enhanced Dashboard

Postby MrTech » Fri Mar 30, 2012 4:11 pm

Seems to have done the trick! Wow, if only all mods were this easy...

Thanks for your time!
~
Image for OpenCart (NEW v2.0) Professional Newsletter & Auto-Responder System
Don't leave money on the table, capturing email addresses is basic business 101.

Profitable Product Pages It's Not a Template... Not a Theme... Just Different
Takes your product pages and turns them on their head and it adds a pop-up QR Code too !!
~
User avatar
MrTech
 
Posts: 309
Joined: Mon Jan 09, 2012 6:39 am
Location: Canada, Eh!

Re: [vQmod] Enhanced Dashboard

Postby saintlade » Thu Apr 12, 2012 5:32 pm

Hi, anybody tried this with 1.5.2? Any issues?

Cheers,

Stu
saintlade
 
Posts: 71
Joined: Wed Oct 12, 2011 1:12 am

Re: [vQmod] Enhanced Dashboard

Postby MrTech » Thu Apr 12, 2012 6:18 pm

Yup! That's the version I'm on.
~
Image for OpenCart (NEW v2.0) Professional Newsletter & Auto-Responder System
Don't leave money on the table, capturing email addresses is basic business 101.

Profitable Product Pages It's Not a Template... Not a Theme... Just Different
Takes your product pages and turns them on their head and it adds a pop-up QR Code too !!
~
User avatar
MrTech
 
Posts: 309
Joined: Mon Jan 09, 2012 6:39 am
Location: Canada, Eh!

Re: [vQmod] Enhanced Dashboard

Postby saintlade » Thu Apr 12, 2012 8:17 pm

Thanks, shall give it a whirl.
saintlade
 
Posts: 71
Joined: Wed Oct 12, 2011 1:12 am

Next

Return to vQmods

Who is online

Users browsing this forum: No registered users and 9 guests

Hosted by Arvixe Web Hosting