Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

SKU is hidden X-Cart Business 5.0.13 Admin

 
Reply
   X-Cart forums > X-Cart 5 > Dev Questions (X-Cart 5)
 
Thread Tools Search this Thread
  #1  
Old 04-14-2014, 10:47 AM
 
Mona Not Mona Not is offline
 

Advanced Member
  
Join Date: Jun 2008
Posts: 87
 

Default SKU is hidden X-Cart Business 5.0.13 Admin

When viewing the product list
http://mystore.com/admin.php?target=product_list part of the SKU and the Product Name is hidden.

I've tried to change the font size to a smaller font in the custom CSS, but nothing. I've tried refreshing the cache, as it appears as though the CSS is cached, still nothing.

Anybody have an idea where I can fix this? It makes it difficult to maintain products when only a part of the SKU or product name is visible.

Thanks.
__________________
Lite Commerce Ver: 2.2.35 [linux] - Retired
X-Cart Gold Plus Ver: 4.6.0 [linux] - Live php 5.3.3
X-Cart 5.1.11 Business [linux] - Live -
X-Cart 5.2.5 Free [linux] - Live-
X-Cart 5.2.6 Business [linux] - Live -
X-Cart 5.x mobile [linux] - inactive
Reply With Quote
  #2  
Old 04-14-2014, 12:01 PM
 
Mark N Mark N is offline
 

Senior Member
  
Join Date: Sep 2011
Posts: 121
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Maybe not the best way to fix it, but here is how I did it:

- Copy style.css from skins\admin\en\items_list\model\table to skins\custom_skin\admin\en\items_list\model\table (you'll have to create the items_list\model\table directory structure in the custom skin

- Modify that CSS to use smaller text, I think what you want to change is .items-list-table table.list tbody.lines td .plain-value span

- Make sure the "Custom Skins" module is enabled

- If changes don't show up initially, rebuild the cache - subsequent changes to the CSS shouldn't require a rebuild I don't think.

Hope this helps,

-Mark
__________________
X-Cart Gold Plus 4.6.5
Mods - WebsiteCM Dynamic Product Tabs, Smack Digital CDSEO Pro, AlteredCart Smart Search, AlteredCart One Page Checkout, Cart Works Power Filter, Firetank Software Feed Manager
Reply With Quote

The following 2 users thank Mark N for this useful post:
qualiteam (04-16-2014), tony_sologubov (04-03-2015)
  #3  
Old 04-14-2014, 04:18 PM
 
Mona Not Mona Not is offline
 

Advanced Member
  
Join Date: Jun 2008
Posts: 87
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Quote:
Originally Posted by Mark N
Maybe not the best way to fix it, but here is how I did it:

- Copy style.css from skins\admin\en\items_list\model\table to skins\custom_skin\admin\en\items_list\model\table (you'll have to create the items_list\model\table directory structure in the custom skin

- Modify that CSS to use smaller text, I think what you want to change is .items-list-table table.list tbody.lines td .plain-value span

- Make sure the "Custom Skins" module is enabled

- If changes don't show up initially, rebuild the cache - subsequent changes to the CSS shouldn't require a rebuild I don't think.

Hope this helps,

-Mark

Thanks Mark, not quite, but you triggered my memory...

Problem solved. Go to System settings > Look & Feel > select "Performance" tab, uncheck "Aggregate CSS files" click "Clear aggregation cache"

Open up your favorite FTP and go to /var/www/html/skins/admin/en/items_list/model/table/product/
Open up style.css in your editor and change the part below to 130px

Code:
.items-list.products table.list td.sku.no-wrap .plain-value { width: 130px; }

I think X-Cart had it at 92px I don't remember, I didn't take note.

Anyway, it makes the viewable area for the SKU wider so you can actually read the whole SKU.

I think XC should add some more CSS to their carts, there isn't enough of them.
__________________
Lite Commerce Ver: 2.2.35 [linux] - Retired
X-Cart Gold Plus Ver: 4.6.0 [linux] - Live php 5.3.3
X-Cart 5.1.11 Business [linux] - Live -
X-Cart 5.2.5 Free [linux] - Live-
X-Cart 5.2.6 Business [linux] - Live -
X-Cart 5.x mobile [linux] - inactive
Reply With Quote
  #4  
Old 04-15-2014, 06:05 AM
 
Mark N Mark N is offline
 

Senior Member
  
Join Date: Sep 2011
Posts: 121
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Yes, it is possible to modify that file, however when you upgrade the store those changes will be wiped out - by moving the mods into a module, you protect against that happening.
__________________
X-Cart Gold Plus 4.6.5
Mods - WebsiteCM Dynamic Product Tabs, Smack Digital CDSEO Pro, AlteredCart Smart Search, AlteredCart One Page Checkout, Cart Works Power Filter, Firetank Software Feed Manager
Reply With Quote

The following 2 users thank Mark N for this useful post:
Mona Not (04-16-2014), qualiteam (04-16-2014)
  #5  
Old 04-16-2014, 05:23 AM
 
Mona Not Mona Not is offline
 

Advanced Member
  
Join Date: Jun 2008
Posts: 87
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Thanks Mark, I see what you are saying. I was more focused on sorting out the SKUs which I couldn't read.

By using the custom CSS, the custom CSS will ultimately override the the original CSS when updates are done. Thereby retaining the custom changes.
The trick is still figuring out what CSS code controls what you want to change. Sometimes that's a project in itself.

Anyway, I'm taking your advice and adding it to the custom CSS unless I already did? I'll have to check.
__________________
Lite Commerce Ver: 2.2.35 [linux] - Retired
X-Cart Gold Plus Ver: 4.6.0 [linux] - Live php 5.3.3
X-Cart 5.1.11 Business [linux] - Live -
X-Cart 5.2.5 Free [linux] - Live-
X-Cart 5.2.6 Business [linux] - Live -
X-Cart 5.x mobile [linux] - inactive
Reply With Quote
  #6  
Old 04-16-2014, 11:18 PM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Hi!

Mark is right - you should not edit core files because the next upgrade will replace changed files with unmodified ones from the new XC5 version.
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions
Reply With Quote
  #7  
Old 03-24-2015, 08:04 AM
 
Mona Not Mona Not is offline
 

Advanced Member
  
Join Date: Jun 2008
Posts: 87
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Quote:
Originally Posted by qualiteam
Hi!

Mark is right - you should not edit core files because the next upgrade will replace changed files with unmodified ones from the new XC5 version.

That would normally work and I would agree except that this is for the administration side which appears to be unaffected by the custom css which controls the Customer side.

Bottom line... keep a copy of your custom css for the administration side so you can reinstall it after you do an update.
__________________
Lite Commerce Ver: 2.2.35 [linux] - Retired
X-Cart Gold Plus Ver: 4.6.0 [linux] - Live php 5.3.3
X-Cart 5.1.11 Business [linux] - Live -
X-Cart 5.2.5 Free [linux] - Live-
X-Cart 5.2.6 Business [linux] - Live -
X-Cart 5.x mobile [linux] - inactive
Reply With Quote
  #8  
Old 04-03-2015, 05:21 AM
  tony_sologubov's Avatar 
tony_sologubov tony_sologubov is offline
 

X-Cart team
  
Join Date: Jan 2009
Posts: 2,431
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Hello @Mona Not, could you please send me a snapshot of how your SKUs were overlapped? I feel, maybe this is a bug which should be fixed.

Tony
__________________
Found a bug in X-Cart? Post it to our bug tracker!
Know how to make X-Cart better? Suggest an idea!
Reply With Quote
  #9  
Old 04-03-2015, 06:18 AM
 
Brian Watts Brian Watts is offline
 

Advanced Member
  
Join Date: Jul 2014
Posts: 38
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Tony,
I also have the same problem
Attached Thumbnails
Click image for larger version

Name:	Screenshot (9).png
Views:	183
Size:	290.7 KB
ID:	4090  
__________________
XCART 5.1.10
Banner System
Customer Rewards by BCSE
Pay with Amazon
Quickbooks by Webgility
Shop by Brand
Template #33 AutoParts
X-Payments
xCDN
Reply With Quote
  #10  
Old 04-06-2015, 11:08 AM
 
Mona Not Mona Not is offline
 

Advanced Member
  
Join Date: Jun 2008
Posts: 87
 

Default Re: SKU is hidden X-Cart Business 5.0.13 Admin

Quote:
Originally Posted by tony_sologubov
Hello @Mona Not, could you please send me a snapshot of how your SKUs were overlapped? I feel, maybe this is a bug which should be fixed.

Tony

Hi Tony,

Screenshot is similar to what Brian Watts has posted.
You can not see the last few digits of the sku.

It's a simple fix, I'm going to change the admin css in my store when I have some time. We don't need the fade image, although it does look cool.

Peter
Attached Thumbnails
Click image for larger version

Name:	skuScreenShot.jpg
Views:	178
Size:	160.7 KB
ID:	4091  
__________________
Lite Commerce Ver: 2.2.35 [linux] - Retired
X-Cart Gold Plus Ver: 4.6.0 [linux] - Live php 5.3.3
X-Cart 5.1.11 Business [linux] - Live -
X-Cart 5.2.5 Free [linux] - Live-
X-Cart 5.2.6 Business [linux] - Live -
X-Cart 5.x mobile [linux] - inactive
Reply With Quote
Reply
   X-Cart forums > X-Cart 5 > Dev Questions (X-Cart 5)



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 02:59 PM.

   

 
X-Cart forums © 2001-2020