- Posts: 606
- Thank you received: 13
Order Page Width Error since upgrade to 2.2.0
- mohairbears
-
Topic Author
- Offline
Less
More
13 years 1 month ago - 13 years 1 month ago #118681
by mohairbears
Order Page Width Error since upgrade to 2.2.0 was created by mohairbears
Last edit: 13 years 1 month ago by mohairbears. Reason: update
Please Log in or Create an account to join the conversation.
13 years 1 month ago #118709
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Order Page Width Error since upgrade to 2.2.0
Hi,
Do you have an custom backend CSS file for HikaShop ?
If so, please change your configuration to re-use the default HikaShop backend style (or see to re-import it in your custom one).
If not, please try to clean your browser cache.
Regards,
Do you have an custom backend CSS file for HikaShop ?
If so, please change your configuration to re-use the default HikaShop backend style (or see to re-import it in your custom one).
If not, please try to clean your browser cache.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
- mohairbears
-
Topic Author
- Offline
Less
More
- Posts: 606
- Thank you received: 13
13 years 1 month ago #118721
by mohairbears
Replied by mohairbears on topic Order Page Width Error since upgrade to 2.2.0
Hi, thanks that's solved the width issue but not the Payment Method issue?
It's where the Payment Fee now is, used to be payment method, it's still there when you go in to amend but it's not showing?
thanks
It's where the Payment Fee now is, used to be payment method, it's still there when you go in to amend but it's not showing?
thanks
Please Log in or Create an account to join the conversation.
- mohairbears
-
Topic Author
- Offline
Less
More
- Posts: 606
- Thank you received: 13
13 years 1 month ago #118722
by mohairbears
Replied by mohairbears on topic Order Page Width Error since upgrade to 2.2.0
Please Log in or Create an account to join the conversation.
13 years 1 month ago - 13 years 1 month ago #118729
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Order Page Width Error since upgrade to 2.2.0
Hi,
Some of your payment methods seems to not have a display name.
So it results that you can click to edit them and we will make a patch for this kind of situation.
Edit the file "administrator/components/com_hikashop/views/plugins/tmpl/listing.php" and replace the line
with:
So it will display something "clickable" even if there is no name for the shipping/payment method.
Regards,
Some of your payment methods seems to not have a display name.
So it results that you can click to edit them and we will make a patch for this kind of situation.
Edit the file "administrator/components/com_hikashop/views/plugins/tmpl/listing.php" and replace the line
Code:
<a href="<?php echo hikashop_completeLink('plugins&plugin_type='.$this->plugin_type.'&task=edit&name='. $plugin->$p_type .'&subtask='.$this->plugin_type.'_edit&'.$p_id.'='.$plugin->$p_id);?>"><?php echo $plugin->$p_name;?></a>
Code:
<a href="<?php echo hikashop_completeLink('plugins&plugin_type='.$this->plugin_type.'&task=edit&name='. $plugin->$p_type .'&subtask='.$this->plugin_type.'_edit&'.$p_id.'='.$plugin->$p_id);?>"><?php
echo $plugin->$p_name;
if(empty($plugin->$p_name))
echo '<em>' . JText::_('NO_NAME') . '</em>';
?></a>
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Last edit: 13 years 1 month ago by Jerome.
Please Log in or Create an account to join the conversation.
Time to create page: 0.199 seconds