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

X-Cart - reBOOT - Responsive Template

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #1311  
Old 03-29-2018, 03:48 AM
 
memis memis is offline
 

Member
  
Join Date: Aug 2013
Posts: 11
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Phil,
Is there any realistic estimation about when Redux will be available?

Thanks!
__________________
Xcart 4.6.3
Reply With Quote
  #1312  
Old 03-30-2018, 08:43 PM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Is there any realistic estimation about when Redux will be available?

It's coming, trust me, as I'm going to be using it as my main CMS also.

But it's got to be right, I'm not gonna launch a half-baked template. I'm working on the v4.7.9 version which will have a proper installer.

Been working on this for the past year, so it'll be ready soon, I'll update this thread as soon as I release it.
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
elmirage001 (03-31-2018)
  #1313  
Old 04-02-2018, 02:35 PM
 
NeilSheridan NeilSheridan is offline
 

Advanced Member
  
Join Date: Mar 2014
Posts: 44
 

Default Re: X-Cart - reBOOT - Responsive Template

I'm trying to add some "Inline list icons" to product descriptions (see attachment). I can't find an info on the code required to add them
Attached Images
File Type: png Screen Shot 2018-04-03 at 6.39.23 am.png (46.4 KB, 9 views)
__________________
xCart Gold 4.7.9
reBOOT 4.7.9
Reply With Quote
  #1314  
Old 04-03-2018, 02:53 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi, use eg....
Code:
<ul class="checks"> <li>Lorem</li> ... </ul>
Or for inline lists...
Code:
<ul class="checks list-inline"> <li>Lorem</li> ... </ul>
Classes available - angles, carets, chevrons, arrows, checks, checks2, checks3, checks4, stars, hearts, smiles, warnings

https://xcartmods.com/reboot479/Shortcodes.html
__________________
xcartmods.co.uk
Reply With Quote
  #1315  
Old 04-03-2018, 02:54 PM
 
NeilSheridan NeilSheridan is offline
 

Advanced Member
  
Join Date: Mar 2014
Posts: 44
 

Default Re: X-Cart - reBOOT - Responsive Template

Thanks, Phil,

Worked perfectly. I was close

One more question. On the Product Page, is there a way to add custom content, on a product-by-product basis to the Details block? Some of the information in the Description would be better suited higher so it stands out. I know there are "Extra Field" options, but I want to add HTML content, and it would be different for a very large number of products (in excess of 500).

Regards
__________________
xCart Gold 4.7.9
reBOOT 4.7.9
Reply With Quote
  #1316  
Old 04-04-2018, 12:17 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Neil, yes there's a 'Product Additional Data' addon in the template zip file.
Or if you want to add your own custom fields, you can follow this tutorial.
__________________
xcartmods.co.uk
Reply With Quote
  #1317  
Old 04-04-2018, 12:57 AM
 
NeilSheridan NeilSheridan is offline
 

Advanced Member
  
Join Date: Mar 2014
Posts: 44
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Phil,

I have installed the add-on. it seemed to add Banners, Video, Audio and FAQ,s. I'll have a look at the tutorial.

Cheers
__________________
xCart Gold 4.7.9
reBOOT 4.7.9
Reply With Quote
  #1318  
Old 04-04-2018, 04:37 PM
 
NeilSheridan NeilSheridan is offline
 

Advanced Member
  
Join Date: Mar 2014
Posts: 44
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
Hi Neil, yes there's a 'Product Additional Data' addon in the template zip file.
Or if you want to add your own custom fields, you can follow this tutorial.

Hi Phil,

Once again, thank you for your time and sharing your vast knowledge. I've implemented the custom field method mixed with Extra Fields to achieve the desired result.

At the risk of turning "help" into "custom work", I have two questions

1 - Is it possible to make the values of the Custom field line up with the label? (see attached)
2 - Having added the Redactor addon, can this be added to the new HTML custom field? I disabled the standard HTML editor after installing this, subsequently, there's no way to add HTML

Thanks again

PS, still need to speak with you about the product discounts
Attached Images
File Type: png Screen Shot 2018-04-05 at 8.33.11 am.png (27.1 KB, 3 views)
__________________
xCart Gold 4.7.9
reBOOT 4.7.9
Reply With Quote
  #1319  
Old 04-04-2018, 05:05 PM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Hi Neil,

1) That gap's probably the top margin on the UL. In skin/reboot/css/reboot.css

Change...
Code:
ul.angles, ul.carets, ul.chevrons, ul.arrows, ul.checks, ul.checks2, ul.checks3, ul.checks4, ul.stars, ul.hearts, ul.smiles, ul.warnings { list-style: none !important; margin: 15px 0 5px 0; padding: 0 0 10px 15px; }
To...
Code:
ul.angles, ul.carets, ul.chevrons, ul.arrows, ul.checks, ul.checks2, ul.checks3, ul.checks4, ul.stars, ul.hearts, ul.smiles, ul.warnings { list-style: none !important; margin: 0 0 5px 0; padding: 0 0 10px 15px; }

2) Extra fields are fine, but in admin they only appear as input text fields by default (not textareas).

Redactor along with the default HTML editors will only work on textareas.

In the Redactor module settings, there's a setting - "Textareas to use Redactor".

You could put in an IF statement in the admin extra fields template to change your specific extra field to a textarea.

-> modules/Extra_Fields/product_modify.tpl

Note, HTML will only be allowed if you make your new field 'trusted'.

You could add a new textarea field using the tutorial link I posted previously, which covers the HTML 'trusted' shizzle.
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
NeilSheridan (04-04-2018)
  #1320  
Old 04-04-2018, 05:18 PM
 
NeilSheridan NeilSheridan is offline
 

Advanced Member
  
Join Date: Mar 2014
Posts: 44
 

Default Re: X-Cart - reBOOT - Responsive Template

Quote:
Originally Posted by PhilJ
Hi Neil,

1) That gap's probably the top margin on the UL. In skin/reboot/css/reboot.css

Change...
Code:
ul.angles, ul.carets, ul.chevrons, ul.arrows, ul.checks, ul.checks2, ul.checks3, ul.checks4, ul.stars, ul.hearts, ul.smiles, ul.warnings { list-style: none !important; margin: 15px 0 5px 0; padding: 0 0 10px 15px; }
To...
Code:
ul.angles, ul.carets, ul.chevrons, ul.arrows, ul.checks, ul.checks2, ul.checks3, ul.checks4, ul.stars, ul.hearts, ul.smiles, ul.warnings { list-style: none !important; margin: 0 0 5px 0; padding: 0 0 10px 15px; }

2) Extra fields are fine, but in admin they only appear as input text fields by default (not textareas).

Redactor along with the default HTML editors will only work on textareas.

In the Redactor module settings, there's a setting - "Textareas to use Redactor".

You could put in an IF statement in the admin extra fields template to change your specific extra field to a textarea.

-> modules/Extra_Fields/product_modify.tpl

Note, HTML will only be allowed if you make your new field 'trusted'.

You could add a new textarea field using the tutorial link I posted previously, which covers the HTML 'trusted' shizzle.

On the money for both counts

Cheers Phil..
__________________
xCart Gold 4.7.9
reBOOT 4.7.9
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not 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 12:47 PM.

   

 
X-Cart forums © 2001-2020