Post by intersect » Sun Jun 02, 2013 12:36 pm

Hello!

This template is made as an alternative to the original Admin Template from Opecart. The idea is to have a more intuitive and pleasure experience managing a Opencart store. It was made with the focus in usability and user experience. It has been developed using the Zurb's Foundation Framework [http://foundation.zurb.com], it is responsive and mobile first, but the mobile version isn't finished yet (too many tables...) and will be much more improved.

Some Features:
- Modern and intuitive look;
- Responsive and mobile first;
- Uses HTML5 and CSS3;
- Follows UIX good pratices;
- Focused at the easy of use and a more efficient management of the stores;
- Works on Internet Explorer 9+, Mozilla FireFox, Google Chrome, Safari and mobile browsers.

Page for download: http://labs.intersect.com.br/neoadmin/en/
Link for the demostration: http://labs.intersect.com.br/neoadmin/en/demo/admin/

Any problem, bug, sugestion, feedback or if you want to contribute to this project in some form, please use this topic.

I'd love to hear some feedback. It's meant to be an alternative for the people that prefer something more intuitive. I know that there's a new version coming with a brand new theme for the admin, but it's really meant to be an alternative.

Thanks!

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am

Post by intersect » Sun Jun 02, 2013 9:06 pm

Some screens:
Image

Image

Image

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am

Post by world-internet » Fri Jul 26, 2013 9:11 pm

Hi, your template is awesome, but you have a glitch with the taxes.

You can set them by accessing with a third level of menu in the default theme, and with your theme, you cannot access them anymore :)

Great work, I hope more people will give you some feedback :)
Last edited by world-internet on Mon Jul 29, 2013 8:20 pm, edited 1 time in total.


Posts

Joined
Fri Jul 26, 2013 9:08 pm

Post by intersect » Sun Jul 28, 2013 7:55 pm

world-internet wrote:Hi, your template is awesome, but you have a glitch with the taxes.

You can set them buy accessing with a third level of menu, and with you theme, you cannot access them anymore :)

Great work, I hope more people will give you some feedback :)
Thanks!
I'll have a look in this bug. Can you give me more details about it? Browser version and OS?

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am

Post by world-internet » Mon Jul 29, 2013 8:19 pm

Hi,

I am under Apple Mac OS X 10.7.5 Intel with Firefox 23.0


Posts

Joined
Fri Jul 26, 2013 9:08 pm

Post by joerichards » Tue Sep 03, 2013 12:15 am

Hey, its great! I'm using it!

I made some tweaks... we also call our internal system: OPEN.... here:

Image

Newbie

Posts

Joined
Sat Jun 29, 2013 10:39 am

Post by intersect » Thu Sep 12, 2013 12:28 am

joerichards wrote:Hey, its great! I'm using it!

I made some tweaks... we also call our internal system: OPEN.... here:

Image
Good to hear :D
We're working to add some new features and fix some little bugs. As soon as we do it we'll post in here.

Thx!

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am

Post by Hasan ŞENTÜRK » Thu Oct 03, 2013 9:47 am

error.png

error.png (48.33 KiB) Viewed 14323 times

hi, the theme is very nice, but the "catalog / products / edit" in the field of the fault has occurred in the picture


Posts

Joined
Thu Oct 03, 2013 7:51 am

Post by elrondx » Thu Oct 03, 2013 10:00 am

theme demo at home so much more beautiful. Latest version Are you up to share?

Newbie

Posts

Joined
Thu Oct 03, 2013 9:58 am

Post by intersect » Thu Oct 03, 2013 9:13 pm

elrondx wrote:theme demo at home so much more beautiful. Latest version Are you up to share?
This or next week it'll be released for download with a new dashboard, some bugfixes and improved performance.

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am

Post by intersect » Thu Oct 03, 2013 9:16 pm

Hasan ŞENTÜRK wrote:
error.png
hi, the theme is very nice, but the "catalog / products / edit" in the field of the fault has occurred in the picture
it'll be fixed in the next version. Thanks for pointing this out.

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am

Post by ezrondz » Fri Oct 11, 2013 9:12 am

When will the new version?

Newbie

Posts

Joined
Thu Oct 10, 2013 10:06 pm

Post by vignir » Fri Oct 11, 2013 3:49 pm

Great theme! Thank you.
Setting - Localisation - Taxes / Returns links do not work. Nothing happens when I click those links.

Another thing I´m having problems with. I´m trying to use this extension: http://www.opencart.com/index.php?route ... with%20tax
The settings in "Settings" do show up but the price including taxes field will not show up. Will this be a problem with extensions I want to install?

New member

Posts

Joined
Fri May 25, 2012 12:30 am

Post by robertx » Tue Oct 22, 2013 2:33 am

also Setting - Localisation - Taxes / Returns links do not work. did any one have fix for this ?

Newbie

Posts

Joined
Sat Dec 10, 2011 3:54 am

Post by bycolor.ro » Thu Nov 21, 2013 7:16 am

Yes, there is. You have to edit the file at:
/admin/view/template/common/header.tpl

Returns:
Around line 139 you'll find:

Code: Select all

<li><a class="parent"><?php echo $text_return; ?></a>
<ul>
The <li> has to have the "fly-" class, and the <ul> has to have the "" class. So, change it to:

Code: Select all

<li class="has-flyout"><a class="parent"><?php echo $text_return; ?></a>
					<ul class="flyout">

Taxes:
The same story, change this (around line 155):

Code: Select all

                  <li><a class="parent"><?php echo $text_tax; ?></a>
					<ul>
into this:

Code: Select all

<li class="has-flyout"><a class="parent"><?php echo $text_tax; ?></a>
					<ul class="flyout">
P.S.:
I registered on this forum just to post this. Hope it helps. :)

Newbie

Posts

Joined
Thu Nov 21, 2013 7:08 am

Post by bycolor.ro » Thu Nov 21, 2013 7:20 am

The previous line you'll have to edit for Taxes is 149, not 155. I can't edit my post yet - i'll update it.

Newbie

Posts

Joined
Thu Nov 21, 2013 7:08 am

Post by herukrayz » Fri Nov 29, 2013 10:28 pm

when i click login button, not any respond at my browser, what the problem?

i use opencart 1.5.1.3

Newbie

Posts

Joined
Fri Nov 29, 2013 10:25 pm

Post by cc990 » Thu Dec 19, 2013 3:49 am

hello, maybe i missed seeing it but what is the user name and password for the demonstration link?

Newbie

Posts

Joined
Thu Dec 19, 2013 3:28 am

Post by cc990 » Sat Dec 21, 2013 8:28 am

silly me, i was looking just at the text. but i see user name and password is demo in the screenshot :P

Newbie

Posts

Joined
Thu Dec 19, 2013 3:28 am

Post by intersect » Sat Dec 21, 2013 8:16 pm

Hello!
There is a new version in github: https://github.com/eltonmesquita/NeoAdmin
Unfortunately I will not get to maintain this theme as updated as I planned. I'm through a major shift in platforms and can not dedicate my time for it. If you find any bug and would like to contribute, you can make a pull request on GitHub.

Ps.: The GitHub version already includes the bug fix of the menu.

http://www.intersect.com.br


User avatar
New member

Posts

Joined
Sat May 19, 2012 6:59 am
Who is online

Users browsing this forum: No registered users and 3 guests