Version Notes
Fixed issue that would hang up single page checkout steps when using the HelpOut Tab
Download this release
Release Info
Developer | Eric Witchin |
Extension | LiveHelpNow_Help_Desk_HelpOut_Tab |
Version | 1.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.2 to 1.3.0
- app/code/community/LHN/HelpOutTab/Block/Helpouttab.php +8 -0
- app/code/community/LHN/HelpOutTab/Model/Numberoptions.php +8 -8
- app/code/community/LHN/HelpOutTab/Model/Observer.php +0 -65
- app/code/community/LHN/HelpOutTab/Model/Themeoptions.php +13 -13
- app/code/community/LHN/HelpOutTab/Model/Torfoptions.php +8 -8
- app/code/community/LHN/HelpOutTab/etc/config.xml +28 -24
- app/code/community/LHN/HelpOutTab/etc/system.xml +8 -8
- app/design/frontend/base/default/layout/lhn_helpouttab.xml +8 -0
- app/design/frontend/base/default/template/lhn_helpouttab/helpouttab.phtml +22 -0
- package.xml +8 -17
app/code/community/LHN/HelpOutTab/Block/Helpouttab.php
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class LHN_HelpOutTab_Block_Helpouttab extends Mage_Core_Block_Template
|
3 |
+
{
|
4 |
+
public function getLhnOptions($param)
|
5 |
+
{
|
6 |
+
return str_replace("lhn", "", strtolower(Mage::getStoreConfig('lhn_helpouttab/general/'.$param)));
|
7 |
+
}
|
8 |
+
}
|
app/code/community/LHN/HelpOutTab/Model/Numberoptions.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
<?php
|
2 |
-
class LHN_HelpOutTab_Model_Numberoptions{
|
3 |
-
public function toOptionArray(){
|
4 |
-
return array(
|
5 |
-
array('value' => 'true', 'label' => 'yes'),
|
6 |
-
array('value' => 'false', 'label' => 'no')
|
7 |
-
);
|
8 |
-
}
|
9 |
}
|
1 |
+
<?php
|
2 |
+
class LHN_HelpOutTab_Model_Numberoptions{
|
3 |
+
public function toOptionArray(){
|
4 |
+
return array(
|
5 |
+
array('value' => 'true', 'label' => 'yes'),
|
6 |
+
array('value' => 'false', 'label' => 'no')
|
7 |
+
);
|
8 |
+
}
|
9 |
}
|
app/code/community/LHN/HelpOutTab/Model/Observer.php
DELETED
@@ -1,65 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
class LHN_HelpOutTab_Model_Observer{
|
3 |
-
public function controllerFrontSendResponseAfter(Varien_Event_Observer $observer){
|
4 |
-
if(!Mage::app()->getStore()->isAdmin()){
|
5 |
-
$lhnEmail = "";
|
6 |
-
$lhnCustomer = "";
|
7 |
-
$lhnCart = "";
|
8 |
-
if(Mage::getSingleton('customer/session')->isLoggedIn()){
|
9 |
-
$customer = Mage::getSingleton('customer/session');
|
10 |
-
$customerData = Mage::getModel('customer/customer')->load($customer->getId())->getData();
|
11 |
-
|
12 |
-
$lhnEmail = urlencode($customerData['email']);
|
13 |
-
$lhnCustomer = urlencode($customerData['firstname']." ".$customerData['lastname']);
|
14 |
-
|
15 |
-
$cart = Mage::helper('checkout')->getQuote()->getData();
|
16 |
-
$lhnCart = urlencode("Quantity: ".$cart['all_items_qty']." total items<br />");
|
17 |
-
$lhnCart .= urlencode("Subtotal: ".$cart['subtotal']);
|
18 |
-
}
|
19 |
-
|
20 |
-
$lhn_account_number = Mage::getStoreConfig('lhn_helpouttab/general/account_number');
|
21 |
-
$lhn_account_number = str_replace("lhn", "", strtolower($lhn_account_number));
|
22 |
-
$lhn_chat_window = Mage::getStoreConfig('lhn_helpouttab/general/chat_window');
|
23 |
-
$lhn_invitation_window = Mage::getStoreConfig('lhn_helpouttab/general/invitation_window');
|
24 |
-
$lhn_department = Mage::getStoreConfig('lhn_helpouttab/general/department');
|
25 |
-
$lhn_autochat = Mage::getStoreConfig('lhn_helpouttab/general/autochat');
|
26 |
-
$lhn_theme = Mage::getStoreConfig('lhn_helpouttab/general/theme');
|
27 |
-
$lhn_slideout = Mage::getStoreConfig('lhn_helpouttab/general/slideout');
|
28 |
-
$lhn_chat = Mage::getStoreConfig('lhn_helpouttab/general/chat');
|
29 |
-
$lhn_ticket = Mage::getStoreConfig('lhn_helpouttab/general/ticket');
|
30 |
-
$lhn_callback = Mage::getStoreConfig('lhn_helpouttab/general/callback');
|
31 |
-
$lhn_knowbase = Mage::getStoreConfig('lhn_helpouttab/general/knowbase');
|
32 |
-
$lhn_moreoptions = Mage::getStoreConfig('lhn_helpouttab/general/moreoptions');
|
33 |
-
$lhn_search_title = Mage::getStoreConfig('lhn_helpouttab/general/search_title');
|
34 |
-
$lhn_search_message = Mage::getStoreConfig('lhn_helpouttab/general/search_message');
|
35 |
-
$lhn_no_results = Mage::getStoreConfig('lhn_helpouttab/general/no_results');
|
36 |
-
$lhn_views = Mage::getStoreConfig('lhn_helpouttab/general/views');
|
37 |
-
|
38 |
-
$lhncontent = '<script type="text/javascript">'.PHP_EOL;
|
39 |
-
$lhncontent .= 'var lhnCustom1 = "'.$lhnEmail.'";'.PHP_EOL;
|
40 |
-
$lhncontent .= 'var lhnCustom2 = "'.$lhnCustomer.'";'.PHP_EOL;
|
41 |
-
$lhncontent .= 'var lhnCustom3 = "'.$lhnCart.'";'.PHP_EOL;
|
42 |
-
$lhncontent .= 'var lhnPlugin = "Mage-'.Mage::getVersion().'-HO";'.PHP_EOL;
|
43 |
-
$lhncontent .= 'var lhnAccountN = "'.$lhn_account_number.'";'.PHP_EOL;
|
44 |
-
$lhncontent .= 'var lhnInviteEnabled = '.$lhn_autochat.';'.PHP_EOL;
|
45 |
-
$lhncontent .= 'var lhnWindowN = '.$lhn_chat_window.'; '.PHP_EOL;
|
46 |
-
$lhncontent .= 'var lhnInviteN = '.$lhn_invitation_window.'; '.PHP_EOL;
|
47 |
-
$lhncontent .= 'var lhnDepartmentN = '.$lhn_department.'; '.PHP_EOL;
|
48 |
-
$lhncontent .= 'var lhnTheme = "'.$lhn_theme.'"; '.PHP_EOL;
|
49 |
-
$lhncontent .= 'var lhnHPPanel = '.$lhn_slideout.'; '.PHP_EOL;
|
50 |
-
$lhncontent .= 'var lhnHPKnowledgeBase = '.$lhn_knowbase.'; '.PHP_EOL;
|
51 |
-
$lhncontent .= 'var lhnHPMoreOptions = '.$lhn_moreoptions.'; '.PHP_EOL;
|
52 |
-
$lhncontent .= 'var lhnHPChatButton = '.$lhn_chat.'; '.PHP_EOL;
|
53 |
-
$lhncontent .= 'var lhnHPTicketButton = '.$lhn_ticket.'; '.PHP_EOL;
|
54 |
-
$lhncontent .= 'var lhnHPCallbackButton = '.$lhn_callback.'; '.PHP_EOL;
|
55 |
-
$lhncontent .= 'var lhnLO_helpPanel_knowledgeBase_find_answers = "'.$lhn_search_title.'";'.PHP_EOL;
|
56 |
-
$lhncontent .= 'var lhnLO_helpPanel_knowledgeBase_please_search = "'.$lhn_search_message.'";'.PHP_EOL;
|
57 |
-
$lhncontent .= 'var lhnLO_helpPanel_typeahead_noResults_message = "'.$lhn_no_results.'";'.PHP_EOL;
|
58 |
-
$lhncontent .= 'var lhnLO_helpPanel_typeahead_result_views = "'.$lhn_views.'";'.PHP_EOL;
|
59 |
-
$lhncontent .= '</script>'.PHP_EOL;
|
60 |
-
$lhncontent .= '<script src="//www.livehelpnow.net/lhn/widgets/helpouttab/lhnhelpouttab-current.min.js" type="text/javascript" id="lhnscriptho"></script>'.PHP_EOL;
|
61 |
-
|
62 |
-
echo $lhncontent;
|
63 |
-
}
|
64 |
-
}
|
65 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/code/community/LHN/HelpOutTab/Model/Themeoptions.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
<?php
|
2 |
-
class LHN_HelpOutTab_Model_Themeoptions{
|
3 |
-
public function toOptionArray(){
|
4 |
-
return array(
|
5 |
-
array('value' => 'default', 'label' => 'default'),
|
6 |
-
array('value' => 'red', 'label' => 'red'),
|
7 |
-
array('value' => 'orange', 'label' => 'orange'),
|
8 |
-
array('value' => 'yellow', 'label' => 'yellow'),
|
9 |
-
array('value' => 'green', 'label' => 'green'),
|
10 |
-
array('value' => 'blue', 'label' => 'blue'),
|
11 |
-
array('value' => 'purple', 'label' => 'purple')
|
12 |
-
);
|
13 |
-
}
|
14 |
}
|
1 |
+
<?php
|
2 |
+
class LHN_HelpOutTab_Model_Themeoptions{
|
3 |
+
public function toOptionArray(){
|
4 |
+
return array(
|
5 |
+
array('value' => 'default', 'label' => 'default'),
|
6 |
+
array('value' => 'red', 'label' => 'red'),
|
7 |
+
array('value' => 'orange', 'label' => 'orange'),
|
8 |
+
array('value' => 'yellow', 'label' => 'yellow'),
|
9 |
+
array('value' => 'green', 'label' => 'green'),
|
10 |
+
array('value' => 'blue', 'label' => 'blue'),
|
11 |
+
array('value' => 'purple', 'label' => 'purple')
|
12 |
+
);
|
13 |
+
}
|
14 |
}
|
app/code/community/LHN/HelpOutTab/Model/Torfoptions.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
<?php
|
2 |
-
class LHN_HelpOutTab_Model_Torfoptions{
|
3 |
-
public function toOptionArray(){
|
4 |
-
return array(
|
5 |
-
array('value' => 'true', 'label' => 'yes'),
|
6 |
-
array('value' => 'false', 'label' => 'no')
|
7 |
-
);
|
8 |
-
}
|
9 |
}
|
1 |
+
<?php
|
2 |
+
class LHN_HelpOutTab_Model_Torfoptions{
|
3 |
+
public function toOptionArray(){
|
4 |
+
return array(
|
5 |
+
array('value' => 'true', 'label' => 'yes'),
|
6 |
+
array('value' => 'false', 'label' => 'no')
|
7 |
+
);
|
8 |
+
}
|
9 |
}
|
app/code/community/LHN/HelpOutTab/etc/config.xml
CHANGED
@@ -1,28 +1,32 @@
|
|
1 |
-
<?xml version="1.0"?>
|
2 |
<config>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
|
|
|
|
26 |
<lhn_helpouttab>
|
27 |
<general>
|
28 |
<chat_window>0</chat_window>
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<config>
|
3 |
+
<modules>
|
4 |
+
<LHN_HelpOutTab>
|
5 |
+
<version>1.3</version>
|
6 |
+
</LHN_HelpOutTab>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<blocks>
|
10 |
+
<lhn_helpouttab>
|
11 |
+
<class>LHN_HelpOutTab_Block</class>
|
12 |
+
</lhn_helpouttab>
|
13 |
+
</blocks>
|
14 |
+
<models>
|
15 |
+
<lhn_helpouttab>
|
16 |
+
<class>LHN_HelpOutTab_Model</class>
|
17 |
+
</lhn_helpouttab>
|
18 |
+
</models>
|
19 |
+
</global>
|
20 |
+
<frontend>
|
21 |
+
<layout>
|
22 |
+
<updates>
|
23 |
+
<lhn_helpouttab module="LHN_HelpOutTab">
|
24 |
+
<file>lhn_helpouttab.xml</file>
|
25 |
+
</lhn_helpouttab>
|
26 |
+
</updates>
|
27 |
+
</layout>
|
28 |
+
</frontend>
|
29 |
+
<default>
|
30 |
<lhn_helpouttab>
|
31 |
<general>
|
32 |
<chat_window>0</chat_window>
|
app/code/community/LHN/HelpOutTab/etc/system.xml
CHANGED
@@ -61,7 +61,7 @@
|
|
61 |
<autochat>
|
62 |
<label>Enable automatic chat invitation:</label>
|
63 |
<frontend_type>select</frontend_type>
|
64 |
-
<source_model>
|
65 |
<sort_order>30</sort_order>
|
66 |
<show_in_default>1</show_in_default>
|
67 |
<show_in_website>1</show_in_website>
|
@@ -70,7 +70,7 @@
|
|
70 |
<theme>
|
71 |
<label>HelpOut color theme:</label>
|
72 |
<frontend_type>select</frontend_type>
|
73 |
-
<source_model>
|
74 |
<sort_order>40</sort_order>
|
75 |
<show_in_default>1</show_in_default>
|
76 |
<show_in_website>1</show_in_website>
|
@@ -80,7 +80,7 @@
|
|
80 |
<label>Enable slideout panel:</label>
|
81 |
<comment><![CDATA[No if you will only be using the Live Chat system]]></comment>
|
82 |
<frontend_type>select</frontend_type>
|
83 |
-
<source_model>
|
84 |
<sort_order>50</sort_order>
|
85 |
<show_in_default>1</show_in_default>
|
86 |
<show_in_website>1</show_in_website>
|
@@ -90,7 +90,7 @@
|
|
90 |
<label>Enable chat button:</label>
|
91 |
<comment><![CDATA[No to hide "chat with us" option]]></comment>
|
92 |
<frontend_type>select</frontend_type>
|
93 |
-
<source_model>
|
94 |
<sort_order>60</sort_order>
|
95 |
<show_in_default>1</show_in_default>
|
96 |
<show_in_website>1</show_in_website>
|
@@ -100,7 +100,7 @@
|
|
100 |
<label>Enable ticket button</label>
|
101 |
<comment><![CDATA[No to hide "submit a ticket" option]]></comment>
|
102 |
<frontend_type>select</frontend_type>
|
103 |
-
<source_model>
|
104 |
<sort_order>70</sort_order>
|
105 |
<show_in_default>1</show_in_default>
|
106 |
<show_in_website>1</show_in_website>
|
@@ -110,7 +110,7 @@
|
|
110 |
<label>Enable callback bautton:</label>
|
111 |
<comment><![CDATA[No to hide "request callback" option]]></comment>
|
112 |
<frontend_type>select</frontend_type>
|
113 |
-
<source_model>
|
114 |
<sort_order>80</sort_order>
|
115 |
<show_in_default>1</show_in_default>
|
116 |
<show_in_website>1</show_in_website>
|
@@ -120,7 +120,7 @@
|
|
120 |
<label>Knowledge base search:</label>
|
121 |
<comment><![CDATA[No to hide the knowledge base search bar, and skip to "More Options"]]></comment>
|
122 |
<frontend_type>select</frontend_type>
|
123 |
-
<source_model>
|
124 |
<sort_order>90</sort_order>
|
125 |
<show_in_default>1</show_in_default>
|
126 |
<show_in_website>1</show_in_website>
|
@@ -130,7 +130,7 @@
|
|
130 |
<label>Enable More options panel:</label>
|
131 |
<comment><![CDATA[No to display the "More Options" slide automatically]]></comment>
|
132 |
<frontend_type>select</frontend_type>
|
133 |
-
<source_model>
|
134 |
<sort_order>100</sort_order>
|
135 |
<show_in_default>1</show_in_default>
|
136 |
<show_in_website>1</show_in_website>
|
61 |
<autochat>
|
62 |
<label>Enable automatic chat invitation:</label>
|
63 |
<frontend_type>select</frontend_type>
|
64 |
+
<source_model>lhn_helpouttab/numberoptions</source_model>
|
65 |
<sort_order>30</sort_order>
|
66 |
<show_in_default>1</show_in_default>
|
67 |
<show_in_website>1</show_in_website>
|
70 |
<theme>
|
71 |
<label>HelpOut color theme:</label>
|
72 |
<frontend_type>select</frontend_type>
|
73 |
+
<source_model>lhn_helpouttab/themeoptions</source_model>
|
74 |
<sort_order>40</sort_order>
|
75 |
<show_in_default>1</show_in_default>
|
76 |
<show_in_website>1</show_in_website>
|
80 |
<label>Enable slideout panel:</label>
|
81 |
<comment><![CDATA[No if you will only be using the Live Chat system]]></comment>
|
82 |
<frontend_type>select</frontend_type>
|
83 |
+
<source_model>lhn_helpouttab/torfoptions</source_model>
|
84 |
<sort_order>50</sort_order>
|
85 |
<show_in_default>1</show_in_default>
|
86 |
<show_in_website>1</show_in_website>
|
90 |
<label>Enable chat button:</label>
|
91 |
<comment><![CDATA[No to hide "chat with us" option]]></comment>
|
92 |
<frontend_type>select</frontend_type>
|
93 |
+
<source_model>lhn_helpouttab/torfoptions</source_model>
|
94 |
<sort_order>60</sort_order>
|
95 |
<show_in_default>1</show_in_default>
|
96 |
<show_in_website>1</show_in_website>
|
100 |
<label>Enable ticket button</label>
|
101 |
<comment><![CDATA[No to hide "submit a ticket" option]]></comment>
|
102 |
<frontend_type>select</frontend_type>
|
103 |
+
<source_model>lhn_helpouttab/torfoptions</source_model>
|
104 |
<sort_order>70</sort_order>
|
105 |
<show_in_default>1</show_in_default>
|
106 |
<show_in_website>1</show_in_website>
|
110 |
<label>Enable callback bautton:</label>
|
111 |
<comment><![CDATA[No to hide "request callback" option]]></comment>
|
112 |
<frontend_type>select</frontend_type>
|
113 |
+
<source_model>lhn_helpouttab/torfoptions</source_model>
|
114 |
<sort_order>80</sort_order>
|
115 |
<show_in_default>1</show_in_default>
|
116 |
<show_in_website>1</show_in_website>
|
120 |
<label>Knowledge base search:</label>
|
121 |
<comment><![CDATA[No to hide the knowledge base search bar, and skip to "More Options"]]></comment>
|
122 |
<frontend_type>select</frontend_type>
|
123 |
+
<source_model>lhn_helpouttab/torfoptions</source_model>
|
124 |
<sort_order>90</sort_order>
|
125 |
<show_in_default>1</show_in_default>
|
126 |
<show_in_website>1</show_in_website>
|
130 |
<label>Enable More options panel:</label>
|
131 |
<comment><![CDATA[No to display the "More Options" slide automatically]]></comment>
|
132 |
<frontend_type>select</frontend_type>
|
133 |
+
<source_model>lhn_helpouttab/torfoptions</source_model>
|
134 |
<sort_order>100</sort_order>
|
135 |
<show_in_default>1</show_in_default>
|
136 |
<show_in_website>1</show_in_website>
|
app/design/frontend/base/default/layout/lhn_helpouttab.xml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<layout>
|
3 |
+
<default>
|
4 |
+
<reference name="head">
|
5 |
+
<block type="lhn_helpouttab/helpouttab" name="lhn_helpouttab_helpouttab" template="lhn_helpouttab/helpouttab.phtml" />
|
6 |
+
</reference>
|
7 |
+
</default>
|
8 |
+
</layout>
|
app/design/frontend/base/default/template/lhn_helpouttab/helpouttab.phtml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<script type="text/javascript">
|
2 |
+
var lhnCustom1 = "";
|
3 |
+
var lhnCustom2 = "";
|
4 |
+
var lhnCustom3 = "";
|
5 |
+
var lhnAccountN = "<?php echo $this->getLhnOptions('account_number'); ?>";
|
6 |
+
var lhnInviteEnabled = <?php echo $this->getLhnOptions('autochat'); ?>;
|
7 |
+
var lhnWindowN = <?php echo $this->getLhnOptions('chat_window'); ?>;
|
8 |
+
var lhnInviteN = <?php echo $this->getLhnOptions('invitation_window'); ?>;
|
9 |
+
var lhnDepartmentN = <?php echo $this->getLhnOptions('department'); ?>;
|
10 |
+
var lhnTheme = "<?php echo $this->getLhnOptions('theme'); ?>";
|
11 |
+
var lhnHPPanel = <?php echo $this->getLhnOptions('slideout'); ?>;
|
12 |
+
var lhnHPKnowledgeBase = <?php echo $this->getLhnOptions('knowbase'); ?>;
|
13 |
+
var lhnHPMoreOptions = <?php echo $this->getLhnOptions('moreoptions'); ?>;
|
14 |
+
var lhnHPChatButton = <?php echo $this->getLhnOptions('chat'); ?>;
|
15 |
+
var lhnHPTicketButton = <?php echo $this->getLhnOptions('ticket'); ?>;
|
16 |
+
var lhnHPCallbackButton = <?php echo $this->getLhnOptions('callback'); ?>;
|
17 |
+
var lhnLO_helpPanel_knowledgeBase_find_answers = "<?php echo $this->getLhnOptions('search_title'); ?>";
|
18 |
+
var lhnLO_helpPanel_knowledgeBase_please_search = "<?php echo $this->getLhnOptions('search_message'); ?>";
|
19 |
+
var lhnLO_helpPanel_typeahead_noResults_message = "<?php echo $this->getLhnOptions('no_results'); ?>";
|
20 |
+
var lhnLO_helpPanel_typeahead_result_views = "<?php echo $this->getLhnOptions('views'); ?>";
|
21 |
+
</script>
|
22 |
+
<script src="//www.livehelpnow.net/lhn/widgets/helpouttab/lhnhelpouttab-current.min.js" type="text/javascript" id="lhnscriptho"></script>
|
package.xml
CHANGED
@@ -1,27 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>LiveHelpNow_Help_Desk_HelpOut_Tab</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>The HelpOut Tab plugin displays help desk options to visitors in a snappy right tab.</summary>
|
10 |
-
<description>
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
• Callback Request System<br />
|
17 |
-
• Knowledge Base System<br />
|
18 |
-
<br />
|
19 |
-
This FREE plugin requires a PAID LiveHelpNow Subscription.</description>
|
20 |
-
<notes>Minor bug fixes</notes>
|
21 |
-
<authors><author><name>Eric Witchin</name><user>livehelpnow</user><email>plugins@livehelpnow.com</email></author></authors>
|
22 |
-
<date>2014-05-15</date>
|
23 |
-
<time>09:31:13</time>
|
24 |
-
<contents><target name="magecommunity"><dir name="LHN"><dir name="HelpOutTab"><dir name="Model"><file name="Numberoptions.php" hash="69866ada2a28f913c0a95d7890361ede"/><file name="Observer.php" hash="764c26dc9d8b97a3d74276a1a7d5a3e7"/><file name="Themeoptions.php" hash="59cab048698fb9db808acc373d70b9f0"/><file name="Torfoptions.php" hash="0607e2cee88f601872159836b97a6cd9"/></dir><dir name="etc"><file name="adminhtml.xml" hash="224498779875ca9fb89e3a6f24c9541a"/><file name="config.xml" hash="4a7acb7e2eb241082707cd48c2f2e847"/><file name="system.xml" hash="dac8422fa4a67cf5ae2d612ab3ca6103"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="LHN_HelpOutTab.xml" hash="2527101d29220ad373ee8e4572b70dd7"/></dir></target></contents>
|
25 |
<compatible/>
|
26 |
-
<dependencies><required><php><min>5.
|
27 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>LiveHelpNow_Help_Desk_HelpOut_Tab</name>
|
4 |
+
<version>1.3.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>The HelpOut Tab plugin displays help desk options to visitors in a snappy right tab.</summary>
|
10 |
+
<description>The HelpOut Tab plugin displays help desk options to visitors in a snappy right tab.</description>
|
11 |
+
<notes>Fixed issue that would hang up single page checkout steps when using the HelpOut Tab</notes>
|
12 |
+
<authors><author><name>Eric Witchin</name><user>ewitchin</user><email>ew@livehelpnow.com</email></author></authors>
|
13 |
+
<date>2014-08-18</date>
|
14 |
+
<time>18:09:42</time>
|
15 |
+
<contents><target name="mageetc"><dir><dir name="modules"><file name="LHN_HelpOutTab.xml" hash="2527101d29220ad373ee8e4572b70dd7"/></dir></dir></target><target name="magedesign"><dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="lhn_helpouttab.xml" hash="7a804b748128d2b36fba97203d03f962"/></dir><dir name="template"><dir name="lhn_helpouttab"><file name="helpouttab.phtml" hash="0e08f05b65adb42801413f0bd62f0fae"/></dir></dir></dir></dir></dir></dir></target><target name="magecommunity"><dir><dir name="LHN"><dir name="HelpOutTab"><dir name="Block"><file name="Helpouttab.php" hash="8243640fcfa03104f360825a7e7b3b93"/></dir><dir name="Model"><file name="Numberoptions.php" hash="79eba3fa5369aa46e61a5db5338b4018"/><file name="Themeoptions.php" hash="50b0279a3d6fb54d60d07112d7d7d826"/><file name="Torfoptions.php" hash="779439feb3b5fc4ca88b19e45eaaf7fc"/></dir><dir name="etc"><file name="adminhtml.xml" hash="224498779875ca9fb89e3a6f24c9541a"/><file name="config.xml" hash="06149ff81352e4e1556f799137ac2e6f"/><file name="system.xml" hash="8b746e70ac08fd631bb857fbe214625e"/></dir></dir></dir></dir></target></contents>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|