I want to ask how to hide some menu for seller, there is some menu like export and import i want to hide from seller
Thank you.
I want to ask how to hide some menu for seller, there is some menu like export and import i want to hide from seller
Thank you.
I want to ask how to hide some menu for seller, there is some menu like export and import i want to hide from seller
Thank you.
Do you mean vendors in Multi-Vendor?
Yes, currently i am using multivendor cs cart.
app/schemas/permissions/vendor_multivendor.php
Please replace
'exim' => array ( 'modes' => array( 'export' => array( 'permissions' => true, ), 'import' => array( 'permissions' => true, ), ), 'permissions' => true, ),
with
'exim' => array ( 'permissions' => false, ),
Then clear cache
Thank you, that's work but can we use my change addon for this one.
Thank you, that's work but can we use my change addon for this one.
Sure, schema can be extended with addon
e.g.
app/addons/my_changes/schemas/permissions/vendor_multivendor.post.php
false, ); return $schema;
Thank you that's really great help for me now I have another question at sellers menu there is two submenu seller and accounting,
for the seller, the URL should be companies.manage and for accounting companies.balance
I try to remove using companies, it makes all menu website gone.
And also there is some menu using profiles.manage&user_type=V, profiles.manage&user_type=C i want hide type V.
Thank you before.
Please try
false, ); $schema['controllers']['companies']['modes']['manage']['permissions'] = false; $schema['controllers']['companies']['modes']['balance']['permissions'] = false; $schema['controllers']['profiles']['modes']['manage']['param_permissions']['user_type']['C'] = false; return $schema;
(!) Not tested
Hello,
This maybe is not completely related, but i want to change the language variable of the main customers menu in the backend. There is a menu in the backend named customers, and the menu also have a "customers" sub-menu. i want to set another language variable for the main menu in my multivendor.
Can anyone help me?
Hello,
This maybe is not completely related, but i want to change the language variable of the main customers menu in the backend. There is a menu in the backend named customers, and the menu also have a "customers" sub-menu. i want to set another language variable for the main menu in my multivendor.
Can anyone help me?
- app/schemas/menu/menu.php
replace
'customers' => array( 'items' => array(
with
'customers_new' => array( 'items' => array(
- app/schemas/menu/menu_multivendor.php
replace
$schema['central']['customers']['items'] = $customers_items + $schema['central']['customers']['items'];
with
$schema['central']['customers_new']['items'] = $customers_items + $schema['central']['customers_new']['items'];
- create the "customers_new" language variable on the Administration -> Languages -> Translations page
- clear cache and check
(!) Not tested
- app/schemas/menu/menu.php
...
...
...
It worked perfectly.
Thank you very much.
Hi Ecom,
Thank you for helping us, all your suggestion work for me.
how to hide reviews from at vendor page. http://nimb.ws/rwjkHUand also http://nimb.ws/uUs9Eh
I try to search the whole forum but look like there is no one use addon my_change to hide the review thank you before.
also, i want to set up for bank payment account if the customer from the country A they will use payment from the bank A, if customer from country b automatic they will use Bank B
how i can do that
Thank you before.
Yes, it is possible, but more complex changes are required if you want to apply them as an addon.
Hi Ecom,
For now, i create folder my_changes at design/backend/templates/addons/
inside that folder overrides/views/products/update.tpl
i am copying update.tpl from product_variations/overrides/views/products/update.tpl
and i remove this part
{if $product_type->isFieldAvailable("options_type") || $product_type->isFieldAvailable("exceptions_type")}
{include file="common/subheader.tpl" title=__("options_settings") target="#acc_options"} {if "ULTIMATE:FREE"|fn_allowed_for} {$promo_class = "cm-promo-popup"} {$disable_selectors = true} {/if}
{/if}
but looks like nothing happen, could you help me, about this one
Thank you.