Thanks Oleg and Tony - that worked like a charm. Also, as Tony mentioned, using "K" is the better option here.
|
arteeni hasn't added any friends yet.
Posted by arteeni
on 21 December 2016 - 06:16 PM
Thanks Oleg and Tony - that worked like a charm. Also, as Tony mentioned, using "K" is the better option here.
Posted by arteeni
on 17 November 2016 - 04:51 PM
I stumbled on a really cool tool from Mailchimp that automatically converts css to inline styles.
So, thought I'd share in case it can help anyone else:
https://templates.ma...ces/inline-css/
Posted by arteeni
on 20 October 2016 - 07:48 PM
Great update to a what was already a really good addon - thanks Cart Power!
Posted by arteeni
on 29 March 2016 - 01:47 AM
Hey everyone, I wanted to give a quick review of my experience with Tony and EZ MS.
I contracted with Tony on a fairly large custom development project to add additional functionality to the multi-vendor platform. Before beginning, Tony reviewed my extensive scoping document and advised me of potential issues that could arise, including one modification that would have negatively affected the security of my site. For the others, he provided alternatives that alleviated the issues identified, while still providing the functionality I was looking for. His knowledge and guidance in this area is very much appreciated.
The project was delivered in less time than he originally stated and he stayed true to his quoted price, even though certain parts of the project took more of his time then anticipated. Tony is also very responsive and, as promised, he has fixed any bugs that have popped up and done so very quickly.
I'd absolutely recommend EZ MS for any custom development work you may be considering.
-Jason
Posted by arteeni
on 16 March 2016 - 05:50 PM
Hi,
Can this be as an add-on rather than a full upgrade to version 4.3.5+ etc.
Thanks
I second that suggestion. I'd love to get access to this without upgrading, as we're stuck on 4.3.4 for a while (had to edit a bunch of core files)
Posted by arteeni
on 25 February 2016 - 01:12 AM
Hi,
I added the following code in app/schemas/menu/menu.php , But it is not working. Is there any mistake in my code. Please review it and help me to solve the issue.
if (Registry::get('runtime.company_id')) {
'connections' => array(
'items' => array(
'addons_divider' => array(
'type' => 'divider',
'position' => 110,
),
'agents' => array(
'href' => 'profiles.agts',
'position' => 200,
),
'manufacturers' => array(
'href' => 'profiles.mnfs',
'position' => 300,
),
),
'position' => 600,
);
}
Regards,
Satya.
Hi Satya. I was just playing around with this myself and I think I have the solution if you're still having this issue. I think it will work if you change the following:
if (Registry::get('runtime.company_id'))
to
if (!Registry::get('runtime.company_id'))
If I am correct, the code effectively is saying "if vendor, show the following menu" and by adding the "!" it should now be "if not vendor, show the following menu". However, I'm not sure about the all the caching stuff, so not sure if that could still be an issue.
Good luck.