Post by ugintl » Wed Jun 25, 2014 12:01 am

Hi,

I have successfully installed customer support free extension v 3.3.1, but when I open my website, I do not see any link for customer support. How can customers or visitors be able to contact support team? Is it only for registered customers or guests can also submit a ticket through this extension?

New member

Posts

Joined
Tue Jun 24, 2014 11:42 pm

User avatar
Guru Member

Posts

Joined
Wed Nov 16, 2011 11:53 am
Location - Singapore

Post by ugintl » Wed Jun 25, 2014 12:59 am

this extension does not require vqmod. Following was the procedure posted by the developer

Module: 1:1 Customer Support V3.3.1 for version 1.5.1.0
========================================

Description
========================================

This module enables that customers can inquire their questions and administrator is able to answer about the inquiry.

If customers inquire their questions, customer and administrator will get an email.
If administrator answers customers' enquiries in administration section, customers can receive notification by administrator's choice.

This module also support categories of enquiry to identify the matter of enquiry.
Administrator is able to manage categories in administration section.

This module will improve customer relationship by communicating effectively and fast.
Thread-style topics will keep the topic instead of creating new enquiry.

Please read carefully and follow instructions.


* This module is working for OC version 1.5

========================================
Features
========================================
* Customer personal enquiry directly to administrator
* Multiple enquiries for each topic
* Email Notification
* Categorize for enquiry
* Ticket Reference
* Enquiry Status Setting - Open/Closed
* Enquiry Search Function in administrator section

========================================
Updated on 17/07/2011
----------------------------------------
1. Support opencart v1.5.1

========================================
Updated on 16/06/2011
----------------------------------------
1. Fixed "Undefined index" errors

========================================
Updated on 06/06/2011
----------------------------------------
1. Support opencart v1.5

========================================
Updated on 08/05/2011
----------------------------------------
1. Administrator can search enquiries based on search criteria: id, category, reference, subject and enquiry date.
2. Customer will be assigned ticket number to help enquiry.
3. Customer/Administrator can choose the status of the enquiry like Open/Closed

========================================
Updated on 26/04/2011
----------------------------------------
1. Customers and administrator can leave multiple articles.
2. Administrator can choose to notify customer or not.

========================================
Updated on 24/04/2011
----------------------------------------
1. Fixed the issue that displays multiple enquries in multi-language store.

========================================

Compatibilities
----------------------------------------

- opencart v1.5.0.0 Test: PASS


========================================

Installation Instruction
========================================

Step 1:
Copy the contents of the "upload" folder to your store's top level directory, preserving the directory structure.
The contents will not overwrite anything due to new files.
========================================

Step 2: [New install only]
Log in store administrator and access below url

http://{your-store.com}/admin/index.php?route=catalog/customer_support/install_v3&token={99999999999999999999999999}
ex) http://www.opencart.com/admin/index.php ... 1681b9770d

* Make sure appending &token=; otherwise, it won't work.
* If you are upgrading from version 2, then see the document "readme_upgrade_from_v2_to_v3.txt"
========================================

Step 3:
Find below code in 'admin/controller/common/header.php: 97'
----------------------------------------

$this->data['text_zone'] = $this->language->get('text_zone');
----------------------------------------

Add below code after found code
----------------------------------------

// Module: Customer Support
$this->data['text_customer_support'] = $this->language->get('text_customer_support');
// Module: Customer Support
========================================

Find below code in 'admin/controller/common/header.php: 180'
----------------------------------------

$this->data['zone'] = $this->url->link('localisation/zone', 'token=' . $this->session->data['token'], 'SSL');
----------------------------------------

Add below code after found code
----------------------------------------

// Module: Customer Support
$this->data['customer_support'] = $this->url->link('catalog/customer_support', 'token=' . $this->session->data['token'], 'SSL');
// Module: Customer Support
========================================

Step 4:
Add below code at the end of file in 'admin/language/english/common/header.php:76'
----------------------------------------

// Module: Customer Support
$_['text_customer_support'] = '1:1 Customer Support';
========================================


Step 5:
Find below code in 'admin/view/template/common/header.tpl:76'
----------------------------------------

<li><a href="<?php echo $information; ?>"><?php echo $text_information; ?></a></li>
----------------------------------------

Add below code after found code
----------------------------------------

<li><a href="<?php echo $customer_support; ?>"><?php echo $text_customer_support; ?></a></li>
========================================


Step 6:
Log in 'Administration' section and go to 'System'->'User'->'User Group'
Click edit for user group that you want to give permissions
Check 'catalog/customer_support' in the list of 'Access Permission' and 'Modify Permission'
Click 'Save' button
========================================


Step 7:
Find below code in 'catalog/controller/account/account.php:53'
----------------------------------------

$this->data['newsletter'] = $this->url->link('account/newsletter', '', 'SSL');
----------------------------------------

Add below code after found code
----------------------------------------

//######################################
// Module: Customer Support
//######################################
$this->data['text_customer_support'] = $this->language->get('text_customer_support');
$this->data['customer_support'] = HTTPS_SERVER . 'index.php?route=account/customer_support';
//######################################
// Module: Customer Support
//######################################
========================================


Step 8:
Find below code in 'catalog/language/english/account/account.php:15'
----------------------------------------

$_['text_newsletter'] = 'Subscribe / unsubscribe to newsletter';
----------------------------------------

Add below code after found code
----------------------------------------

$_['text_customer_support'] = '1:1 Customer Support';
========================================


Step 9:
Find below code in 'catalog/view/theme/default/template/account/account.tpl:25'
----------------------------------------

<h2><?php echo $text_my_newsletter; ?></h2>
<div class="content">
<ul>
<li><a href="<?php echo $newsletter; ?>"><?php echo $text_newsletter; ?></a></li>
</ul>
</div>
----------------------------------------

Add below code after found code
----------------------------------------
<h2><?php echo $text_customer_support; ?></h2>
<div class="content">
<ul>
<li><a href="<?php echo str_replace('&', '&', $customer_support); ?>"><?php echo $text_customer_support; ?></a></li>
</ul>
</div>
========================================


Step 10 [Optional]:
* Tip: If you want to add menu in left information menu, you can follow below steps.
Find below code in 'catalog/controller/module/information.php:24'
----------------------------------------

$this->data['sitemap'] = HTTP_SERVER . 'index.php?route=information/sitemap';

----------------------------------------

Add below code after found code
----------------------------------------

//######################################
// Module: Customer Support
//######################################
$this->data['text_customer_support'] = $this->language->get('text_customer_support');
$this->data['customer_support'] = HTTPS_SERVER . 'index.php?route=account/customer_support';
//######################################
// Module: Customer Support
//######################################
========================================


Step 11 [Optional]:
Find below code in 'catalog/language/english/module/information.php:7'
----------------------------------------

$_['text_sitemap'] = 'Site Map';
----------------------------------------

Add below code after found code
----------------------------------------

$_['text_customer_support'] = '1:1 Customer Support';
========================================



Step 12 [Optional]:
Find below code in 'catalog/view/theme/default/template/module/information.tpl:9'
----------------------------------------

<li><a href="<?php echo str_replace('&', '&', $sitemap); ?>"><?php echo $text_sitemap; ?></a></li>
----------------------------------------

Add below code after found code
----------------------------------------

<li><a href="<?php echo str_replace('&', '&', $customer_support); ?>"><?php echo $text_customer_support; ?></a>
========================================

New member

Posts

Joined
Tue Jun 24, 2014 11:42 pm

Post by IP_CAM » Tue May 26, 2015 7:06 am

I was just working for a few Hours, and got the former Version done, just about, anyway, until I found
an updated Extension, matching my OC v.1.5.6.4+ ;)
A DB-QUERY Routine is included as separate File, the DB-PREFIX used is oc_

More Information on this:
http://weblenti.com/opencart-customer-s ... age-s1-p69
http://epiksel-free.googlecode.com/svn/ ... es/v1.5.x/
https://github.com/epiksel/free-extensi ... er-support
Information to the Error-message:
https://answers.yahoo.com/question/inde ... 127AAjrnpR

Ernie
Last edited by IP_CAM on Wed Jul 29, 2015 2:59 am, edited 1 time in total.

My Github OC Site: https://github.com/IP-CAM
5'200 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland

Post by litecoinstore » Tue Jul 28, 2015 6:24 am

Hi

Installed this on my 1.5.6.1 opencart. Everything shows up in backend and frontend, however, when I try to submit a request, it says ''Please wait'' (red warning) with a broken image, requests are not submitted.

Do you have version that works with 1.5.6.1 ? :)

New member

Posts

Joined
Tue Mar 17, 2015 12:31 am

Post by IP_CAM » Wed Jul 29, 2015 2:50 am

sorry, I was unaware, at first, receiving your mail,
you can find the v.1.5.6.x Version here:

https://weblenti.com/opencart-customer- ... age-s1-p69
https://github.com/epiksel/free-extensions
ePixel has a lot more of useful Mod's!

I have used this version (I guess...!?) but I don't recall, if I made any Modifications.
Therefore, I added my Files, as I just tested on my hitline.info/shop/ Server,
into the ZIP Subdirectory IP_CAM_FILES.

http://www.ipc.li/os/customer_support_1_5_x_v_3_5_2.zip

A DB-QUERY Routine is included as separate File, the DB-PREFIX used is oc_

Use the MySQL Routine, enclosed in the ZIP, to make it work, DB-wise.
Make sure, to HAVE, or then define, the CORRECT DC-Prefix, as advised above.
Good Luck
Ernie

My Github OC Site: https://github.com/IP-CAM
5'200 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland

Post by scanreg » Fri Aug 14, 2015 12:49 am

can this be tied to order numbers?

in other words, the ticket contents become part of the order history sorta, you can pull up all communications related to Order 12345

Active Member

Posts

Joined
Thu May 06, 2010 12:15 am

Post by sunsys » Sun Sep 13, 2015 8:57 am

IP_CAM wrote:I have used this version (I guess...!?) but I don't recall, if I made any Modifications.
Therefore, I added my Files, as I just tested on my hitline.info/shop/ Server,
into the ZIP Subdirectory IP_CAM_FILES.
http://www.ipc.li/os/customer_support_1_5_x_v_3_5_2.zip

Ernie
Ernie, you have 3 folders in your zip file:
1. Details aboutcustomer_support
2. IP_CAM_Files
3. upload
so which folder should I use to install customer_support module for oc-1564 please advise.

Thank You.

Regards,
Sun Systems
Industrial Electronics and Instrumentation


User avatar
Active Member

Posts

Joined
Tue Jan 27, 2015 5:19 am

Post by IP_CAM » Sun Sep 13, 2015 12:15 pm

the "IP_CAM_Files" Directory contains everything in order and placed in their subs,
as I use it in my Test Shops. The UPLOAD Directory contains epiksel's original Files,
but I do not recall, what I did to them, in my revised Version, and/or where I've got 'em.
Therefore, open the IP_CAM_Files Sub and UPLOAD it's Content

latest version:
customer_support_1_5_x_v_3_5_2.zip

Good Luck ;)
Ernie
http://www.bigmax.ch/shop/
getting better, day by day...

My Github OC Site: https://github.com/IP-CAM
5'200 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland

Post by sunsys » Sun Sep 13, 2015 9:44 pm

IP_CAM wrote:the "IP_CAM_Files" Directory contains everything in order and placed in their subs,
as I use it in my Test Shops. The UPLOAD Directory contains epiksel's original Files,
but I do not recall, what I did to them, in my revised Version, and/or where I've got 'em.
Therefore, open the IP_CAM_Files Sub and UPLOAD it's Content

latest version:
customer_support_1_5_x_v_3_5_2.zip

Good Luck ;)
Ernie
http://www.bigmax.ch/shop/
getting better, day by day...
Yup Ernie, that's perfect information as usual from you, your folder files working 100% perfect, no issues.

I would like to change the buyer and admin conversation text in different colors please let me know where to make the changes in both admin and catalog side.

Thank you for your time and effort.

Regards,
Sun Systems
Industrial Electronics and Instrumentation


User avatar
Active Member

Posts

Joined
Tue Jan 27, 2015 5:19 am

Post by IP_CAM » Mon Sep 14, 2015 1:22 am

one of those things, I did not, cosmetically, work on yet!
But unfortunately, it does not work so easy, it uses the SAME 'Container' to either display the Admin or Customer Reply-Content, following the first Posting. But I worked a little on the User Side display, just to show you, where it can be mocked up a little... ;)

Ernie
bigmax.ch/shop/

Just RENAME/backup your file and then, upload this one instead, to test it:
\shop\catalog\view\theme\default\template\account\customer_support.tpl

Code: Select all

<?php echo $header; ?><?php echo $column_left; ?><?php echo $column_right; ?>
<div id="content"><?php echo $content_top; ?>
  <div class="breadcrumb">
    <?php foreach ($breadcrumbs as $breadcrumb) { ?>
    <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
    <?php } ?>
  </div>
  <h1><?php echo $heading_title; ?></h1>
  <div class="content">
    <div class="buttons" style="text-align:right;"> <a class="button" href="javascript:fn_open_new_enquiry();"><span><?php echo $button_enquiry; ?></span></a> </div>
    <div id="new-enquiry" style="display:none;">
      <form action="<?php echo str_replace('&', '&', $new_enquiry_action); ?>" method="post" enctype="multipart/form-data" id="form_new_enquiry">
        <input type="hidden" name="customer_support_status" value="<?php echo isset($list_customer_support_status[0])?$list_customer_support_status[0]:'';?>" />
        <table id="new-enquiry-form" class="form">
          <tbody>
            <?php if(!empty($cs_1st_category)){ ?>
            <tr>
              <td style="width:80px;"><b><?php echo $column_category_1st;?></b></td>
              <td><select id="customer_support_1st_category_id" name="customer_support_1st_category_id">
                  <?php foreach($cs_1st_category as $key => $category){ ?>
                  <option value="<?php echo $category['customer_support_1st_category_id'];?>" <?php echo $key == 0? 'selected="selected"': '';?>><?php echo $category['customer_support_1st_category'];?></option>
                  <?php } ?>
                </select></td>
            </tr>
            <tr>
              <td><?php echo $column_category_2nd;?></td>
              <td><select id="customer_support_2nd_category_id" name="customer_support_2nd_category_id">
                  <?php if(!empty($cs_2nd_category)){ ?>
                  <?php foreach($cs_2nd_category as $key => $category){ ?>
                  <option value="<?php echo $category['customer_support_2nd_category_id'];?>" <?php echo $key == 0? 'selected="selected"': '';?>><?php echo $category['customer_support_2nd_category'];?></option>
                  <?php } ?>
                  <?php }else{ ?>
                  <option value=""><?php echo $text_none;?></option>
                  <?php } ?>
                </select></td>
            </tr>
            <?php }?>
            <tr>
              <td><?php echo $column_subject;?></td>
              <td><input type="text" id="subject" name="subject" value="" style="width:98%;" /></td>
            </tr>
            <tr>
              <td><?php echo $column_enquiry;?></td>
              <td><textarea id="enquiry" name="enquiry" style="width:98%;height:150px;"></textarea></td>
            </tr>
            <tr>
              <td colspan="2" style="text-align:right;padding-right:25px;"><a id="button_submit" class="button" href="javascript:fn_submit_new_enquiry('form_new_enquiry');"><span><?php echo $button_submit;?></span></a></td>
            </tr>
          </tbody>
        </table>
      </form>
    </div>
    <table class="list">
      <thead>
        <tr>
          <td style="padding:4px;text-align:center;" width="5%"><?php echo $column_no;?></td>
          <td style="padding:4px;" width="10%"><?php echo $column_customer_support_status;?></td>
          <td style="padding:4px;"><?php echo $column_subject;?></td>
          <td style="padding:4px;text-align:center;" width="10%"><?php echo $column_created_at;?></td>
          <td style="padding:4px;text-align:center;" width="10%"><?php echo $column_answered;?></td>
        </tr>
      </thead>
      <tbody>
        <?php if ($customer_supports) { ?>
        <?php foreach ($customer_supports as $customer_support) { ?>
        <tr id="enquiry-<?php echo $customer_support['customer_support_id'];?>" class="<?php echo isset($customer_support['answer']) && $customer_support['answer'] == ''? 'attention':'';?>">
          <td style="padding:4px;text-align:center;"><?php echo $customer_support['customer_support_id'];?></td>
          <td style="padding:4px;"><?php echo $customer_support['customer_support_status'];?></td>
          <td style="padding:4px;"><a href="javascript:fn_enquiry('enquiry-detail-<?php echo $customer_support['customer_support_id'];?>');">[<?php echo $customer_support['reference'];?>] <?php echo $customer_support['subject'];?></a></td>
          <td style="padding:4px;text-align:center;" ><?php echo $customer_support['date_added'];?></td>
          <td style="padding:4px;text-align:center;" ><?php echo !empty($customer_support['customer_supports_threads'])? $text_answer_y:$text_answer_n ;?></td>
        </tr>
        <tr id="enquiry-detail-<?php echo $customer_support['customer_support_id'];?>" style="display:none;"  class="<?php echo isset($customer_support['answer']) && $customer_support['answer'] == ''? 'attention':'';?>">
          <td colspan="5"><table id="enquiry-content-<?php echo $customer_support['customer_support_id'];?>" class="form"  style="table-layout: fixed;width:100%;">
              <tbody>
                <?php if($customer_support['customer_support_1st_category'] || $customer_support['customer_support_1st_category']){ ?>
                <tr>
                  <td style="padding:4px;" width="20%"><?php echo $column_category_1st;?></td>
                  <td style="padding:4px;" width="29%"><?php echo $customer_support['customer_support_1st_category'];?></td>
                  <td style="padding:4px;" width="20%"><?php echo $column_category_2nd;?></td>
                  <td style="padding:4px;"><?php echo $customer_support['customer_support_2nd_category'];?></td>
                </tr>
                <?php } ?>
                <tr>
                  <td style="padding:4px; font-size:18px;font-weight:bold;color:#F40000;" bgcolor="#F8F8F8" width="10%"><b><?php echo $column_enquiry;?></b></td>
                  <td style="padding-left:10px;padding-right:10px;padding-top:10px;padding-bottom:4px;" bgcolor="#F8F8F8" colspan="3"><?php echo nl2br($customer_support['enquiry']);?><br />
                  <span style="float:right;"><small><?php echo $text_enquiry_date;?> <?php echo $customer_support['date_added'];?> <?php echo nl2br($customer_support['time_added']);?></small></span></td>
                </tr>
                <?php if (!empty($customer_support['customer_supports_threads'])) { ?>
                <?php foreach($customer_support['customer_supports_threads'] as $key2 => $thread) { ?>
                <tr>
                  <td><?php if($thread['customer_id'] == $this->customer->getId()) { ?>
                  <span style="font-size:14px;font-weight:bold;color:#F20000;" bgcolor="#F8F8F8"><?php echo $column_enquiry; } else { echo $column_answer; } ?> </span></td>
                  <td colspan="3" style="padding-left:10px;padding-right:10px;padding-top:10px;padding-bottom:4px;"><?php echo nl2br($thread['enquiry']);?><br />
                  <span style="float:right;"><small><?php echo $text_answer_date;?> <?php echo date($this->language->get('date_format_time'), strtotime($thread['date_added']));?> <?php echo date($this->language->get('time_format'), strtotime($thread['date_added']));?></span></small></td>
                </tr>
                <?php } } else { ?>
                <tr>
                  <td colspan="4" style="text-align: right;padding:10px;"><a id="button_delete_<?php echo $customer_support['customer_support_id'];?>" href="javascript:fn_delete_enquiry('<?php echo $customer_support['customer_support_id'];?>');" class="button"><span><?php echo $button_delete;?></span></a></td>
                </tr>
                <?php } ?>
                <tr>
                  <td colspan="4" style="padding:20px;"><form action="<?php echo str_replace('&', '&', $new_enquiry_action); ?>" method="post" enctype="multipart/form-data" id="form_enquiry_<?php echo $customer_support['customer_support_id'];?>">
                      <input type="hidden" name="t_topic_id" value="<?php echo $customer_support['customer_support_topic_id'];?>" />
                      <textarea id="enquiry" name="enquiry" style="width:98%;height:100px;"></textarea><br/>&nbsp;<br/>
					<div style="float:right;">
					<select name="customer_support_status">
                        <?php foreach($list_customer_support_status as $status){ ?>
                        <option value="<?php echo $status;?>" <?php echo (strcasecmp($customer_support['customer_support_status'], $status) == 0 ? "selected='selected'": "");?>><?php echo $status;?></option>
                        <?php }?>
                      </select>&nbsp;&nbsp;&nbsp;<a id="button_submit_enquiry" class="button" href="javascript:fn_submit_new_enquiry('form_enquiry_<?php echo $customer_support['customer_support_id'];?>');"><?php echo $button_submit;?></a>
                    </div></form></td>
                </tr>
              </tbody>
            </table></td>
        </tr>
        <?php } ?>
        <?php } else { ?>
        <tr>
          <td colspan="5"><?php echo $text_no_results; ?></td>
        </tr>
        <?php } ?>
      </tbody>
    </table>
    <div class="pagination" style="margin-top:0;"><?php echo $pagination; ?></div>
  </div>
  <?php echo $content_bottom; ?></div>
<?php echo $footer; ?> 
<script type="text/javascript">
	$("#customer_support_1st_category_id").change(function(){
		$('#customer_support_2nd_category_id').load('index.php?route=account/customer_support/get_2nd_category&1st_category=' + $("#customer_support_1st_category_id").val());	
	});
	
	
	function fn_enquiry(row_id){
		$("#" + row_id).toggle();
	}

	function fn_open_new_enquiry(){
		$('.success, .warning').remove();
		$("#new-enquiry").toggle();
	}
	
	function fn_submit_new_enquiry(frm_id){
		$.ajax({
			type: 'POST',
			url: '<?php echo $new_enquiry_action;?>',
			dataType: 'json',
			data: $("#"+frm_id).serialize(),
			beforeSend: function() {
				$('.success, .warning').remove();
				$('#button_submit', '#'+frm_id).attr('disabled', 'disabled');
				$('#'+frm_id).before('<div class="attention"><img src="catalog/view/theme/default/image/loading.gif" alt="" /> <?php echo $text_wait; ?></div>');
			},
			complete: function() {
				$('#button_submit', '#'+frm_id).attr('disabled', '');
				$('.attention').remove();
			},
			success: function(data) {
				if (data.error) {
					$('#'+frm_id).before('<div class="warning">' + data.error + '</div>');
				}
				
				if(data.success) {
					$('#'+frm_id).before('<div class="success">' + data.success + '</div>');
					
					$('#subject', '#'+frm_id).val('');
					$('#enquiry', '#'+frm_id).val('');
					alert(data.success);
					location.reload();
				}
			}
		})
	}
	
	function fn_delete_enquiry(enquiry_id){
		if(confirm("<?php echo $text_confirm_delete;?>") == false) return;
		$.ajax({
			type: 'POST',
			url: '<?php echo $delete_enquiry_action;?>',
			dataType: 'json',
			data: 'enquiry_id=' + enquiry_id,
			beforeSend: function() {
				$('.success, .warning').remove();
				$('#button_delete_' + enquiry_id).attr('disabled', 'disabled');
				$('#enquiry-content-' + enquiry_id).before('<div class="attention"><img src="catalog/view/theme/default/image/loading.gif" alt="" /> <?php echo $text_wait; ?></div>');
			},
			complete: function() {
				$('#button_delete_' + enquiry_id).attr('disabled', '');
				$('.attention').remove();
			},
			success: function(data) {
				if (data.error) {
					$('#enquiry-content-'+enquiry_id).before('<div class="warning">' + data.error + '</div>');
				}
				
				if(data.success) {
					$('#new-enquiry').before('<div class="success">' + data.success + '</div>');
					$('#enquiry-' + enquiry_id).remove();
					$('#enquiry-detail-' + enquiry_id).remove();
				}
			}
		});
	}	
</script>
PS. It's just a test file, it's NOT CLEAN, as you can see, with the MISSING left vercital 'Frame-Line', because I test-changed some <TH>..</TH>'s into <TD>..</TD>'s, and so ignoring possible ROWSPAN-related Display Effects, if multiple WHATEVER may be part of this. JUST to mention it, it's a quickdraw Job of a few minutes, not more !!! ;)

My Github OC Site: https://github.com/IP-CAM
5'200 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland

Post by sunsys » Sat Oct 03, 2015 9:36 am

IP_CAM wrote:one of those things, I did not, cosmetically, work on yet!
But unfortunately, it does not work so easy, it uses the SAME 'Container' to either display the Admin or Customer Reply-Content, following the first Posting. But I worked a little on the User Side display, just to show you, where it can be mocked up a little... ;)

Ernie
bigmax.ch/shop/
Ernir, I made the changes in the language file for the required colors and used awesome fonts for icons, now its working great and looking professional too, Thank you for your help Ernie.

Regards,
Sun Systems
Industrial Electronics and Instrumentation


User avatar
Active Member

Posts

Joined
Tue Jan 27, 2015 5:19 am

Post by IP_CAM » Sat Oct 03, 2015 12:28 pm

Your'e welcome. ;)

BTW. I found this v.1.5 to v.2 DB-Upgrade Mod, you seemed to react critical about, and I was stumped, on, how easy it worked, to get a 4'003 Product (autogenerated) v.1.5.6.5 DB onto a, especially installed, v.2.1 Shop, without one single, real problem, not explainable, (ONE MINOR language related one existed, but did not hamper the Upload!) due to some Add-On Installation made sometime before. I already mentioned the MOD positively in a recent Posting here, because I feel, that this is the easiest solution to get a working DB-Content on a v.2. Test Site, before deciding, to screw up a Live Shop, trying to upgrade during Operation! :choke:
Just to mention it ! :D
Good Luck
Ernie

http://forum.opencart.com/viewtopic.php ... 37#p583637

PS. If you are in v.2 already, click the link below, I was doing some tests, just to find out, that v.2.x is not so bad, as it seemed, when I (first!)tested the Fellow's Site :laugh:

http://forum.opencart.com/viewtopic.php ... 42#p583942

My Github OC Site: https://github.com/IP-CAM
5'200 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland
Who is online

Users browsing this forum: No registered users and 15 guests