How do I get the setting screen

ddangerfield

Avatar: ddangerfield

2020-01-07 13:15

When i logged with admin@admin.com , i only get the product and category screen
In your donc , you talk about and admin;php file that is nowhere
thanks

» Quick.Cart v6.x

karadam

Avatar: karadam

2020-11-22 12:52

step 1) Edit file: templates/admin/settings.php

Find code:
<!-- tabs start -->

Add below:
<li id="settings"><a href="#"><?php echo $lang['Settings']; ?></a></li>
<li id="options"><a href="#"><?php echo $lang['Options']; ?></a></li>


step 2) Edit file: templates/admin/settings.php
Find code:
<ul id="tab-pages" class="forms list">

Add above:
<ul id="tab-settings" class="forms list">
<li>
<label for="title"><?php echo $lang['Title']; ?></label>
<input type="text" name="title" id="title" size="70" value="<?php echo ( isset( $config['title'] ) ? $config['title'] : null ); ?>" />
</li>
<li>
<label for="description"><?php echo $lang['Description']; ?></label>
<input type="text" name="description" id="description" size="70" value="<?php echo ( isset( $config['description'] ) ? $config['description'] : null ); ?>" />
</li>
<li>
<label for="logo"><?php echo $lang['Logo']; ?></label>
<input type="text" name="logo" id="logo" size="70" value="<?php echo ( isset( $config['logo'] ) ? $config['logo'] : null ); ?>" />
</li>
<li>
<label for="slogan"><?php echo $lang['Slogan']; ?></label>
<input type="text" name="slogan" id="slogan" size="70" value="<?php echo ( isset( $config['slogan'] ) ? $config['slogan'] : null ); ?>" />
</li>
<li>
<label for="foot_info"><?php echo $lang['Foot_info']; ?></label>
<input type="text" name="foot_info" id="foot_info" size="70" value="<?php echo ( isset( $config['foot_info'] ) ? $config['foot_info'] : null ); ?>" />
</li>
<li>
<label for="web_info"><?php echo $lang['Web_info']; ?></label>
<input type="text" name="web_info" id="web_info" size="70" value="<?php echo ( isset( $config['web_info'] ) ? $config['web_info'] : null ); ?>" />
</li>
<li>
<label for="extra_info"><?php echo $lang['Extra_info']; ?></label>
<input type="text" name="extra_info" id="extra_info" size="70" value="<?php echo ( isset( $config['extra_info'] ) ? $config['extra_info'] : null ); ?>" />
</li>
<!-- tab settings -->
</ul>

<ul id="tab-options" class="forms list">
<li>
<label for="default_language"><?php echo $lang['Default_language']; ?></label>
<select name="default_language" id="languages-select" data-form-check="required">
<?php if( empty( $config['default_language'] ) ){ ?> <option value="" selected="selected"><?php echo $lang['none']; ?></option><?php } ?>
<?php echo listLangSelect( $config['default_language'] ) ?>
</select>
</li>
<li>
<label for="admin_lang"><?php echo $lang['Admin_language']; ?></label>
<select name="admin_lang" id="languages-select" data-form-check="required">
<?php if( empty( $config['admin_lang'] ) ){ ?> <option value="" selected="selected"><?php echo $lang['none']; ?></option><?php } ?>
<?php echo listLangSelect( $config['admin_lang'] ) ?>
</select>
</li>
<!-- tab options -->
</ul>

https://www.chalilozdemir.com

karadam

Avatar: karadam

2020-11-22 12:53

Web info and extra info can you delete

https://www.chalilozdemir.com

Back to top
about us | contact