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

X-Cart Ability Template v4.4.x

 
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4
 
Thread Tools
  #151  
Old 02-23-2012, 06:35 AM
  David-Allan's Avatar 
David-Allan David-Allan is offline
 

eXpert
  
Join Date: Oct 2011
Location: Scotland, UK
Posts: 313
 

Default Re: X-Cart Ability Template v4.4.x

Hay Phil,

Is there a way of showing only categories above a certain position on the top drop down flyout menu? Say something like only show Categories with a position that is set as exactly 666?

The reason I ask is I'd love to use the top flyout menus but as we have so many categories its not possible as it overlaps the menu and ends up listing them all down the page.

I have had a play about with it but can't seem to figure it out, I have used this before for my old design on the flyout menu so I could separate the menu in to certain blocks.
__________________
Live Version : 4.5.2
Licensed Products:
X-Cart Gold
Ability Theme
CDSEO
xCMS
Abandoned Cart
Food Packaging Scotland
Reply With Quote
  #152  
Old 02-23-2012, 06:57 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart Ability Template v4.4.x

Quote:
Is there a way of showing only categories above a certain position on the top drop down flyout menu?

Sure, in skin/ability/custom/addons/menus/horiz/dropdown/dropdown.tpl

After...
Code:
{foreach from=$categories_menu_list item=c}

Insert...

Code:
{if $c.order_by gte "666"}

Then before the last...

Code:
{/foreach}

Insert...
Code:
{/if}

You can do the same for subsequent category levels also.
__________________
xcartmods.co.uk
Reply With Quote

The following user thanks PhilJ for this useful post:
David-Allan (02-23-2012)
  #153  
Old 02-23-2012, 07:21 AM
  David-Allan's Avatar 
David-Allan David-Allan is offline
 

eXpert
  
Join Date: Oct 2011
Location: Scotland, UK
Posts: 313
 

Default Re: X-Cart Ability Template v4.4.x

That worked a treat Phil mate, you make it look so easy.

Thanks so much it works perfect on this and the mega drop down

your a super star
__________________
Live Version : 4.5.2
Licensed Products:
X-Cart Gold
Ability Theme
CDSEO
xCMS
Abandoned Cart
Food Packaging Scotland
Reply With Quote

The following user thanks David-Allan for this useful post:
PhilJ (02-26-2012)
  #154  
Old 02-28-2012, 03:35 PM
 
Ian Ian is offline
 

Senior Member
  
Join Date: Sep 2002
Location: Adelaide, South Australia
Posts: 127
 

Default Re: X-Cart Ability Template v4.4.x

Is there a way to have the description tab on the product page to include the short and full description in the same area? It would be handy as a search may take the visitor directly to the product page and some details are only in the short description.

My other task is, I'm trying to get the pagination at the bottom of the page as well as the top on the tabular layout. Any help would be most appreciated.
__________________
_____________________________________

4.6.6 Gold Plus
and 4.7.4 Gold
MySQL server 5.6.29
PHP 5.5.34
Reply With Quote
  #155  
Old 03-01-2012, 08:04 AM
 
jrsvsp jrsvsp is offline
 

Advanced Member
  
Join Date: Oct 2011
Posts: 73
 

Default Re: X-Cart Ability Template v4.4.x

Quote:
Originally Posted by Ian
Is there a way to have the description tab on the product page to include the short and full description in the same area? It would be handy as a search may take the visitor directly to the product page and some details are only in the short description.

My other task is, I'm trying to get the pagination at the bottom of the page as well as the top on the tabular layout. Any help would be most appreciated.

I would also like to display the short description on the product details page, ideally alongside the thumbnail. Can you point me at the right place for where this layout is set up so I can have a play with it ?

Thanks
__________________
X-Cart 4.4.5 Live
X-cart 4.5.5 Live
Reply With Quote
  #156  
Old 03-01-2012, 09:17 AM
 
PhilJ PhilJ is offline
 

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

Default Re: X-Cart Ability Template v4.4.x

Quote:
Is there a way to have the description tab on the product page to include the short and full description in the same area? It would be handy as a search may take the visitor directly to the product page and some details are only in the short description.

If using product tabs...

skin/ability/custom/addons/tabs/tabs_below.tpl

Replace...

Code:
<div id="abi_ptab_1" class="abi_ptab_content descr"> {$product.fulldescr|default:$product.descr} </div>

With something like...

Code:
<div id="abi_ptab_1" class="abi_ptab_content descr"> <p>{$product.descr}</p> {if $product.fulldescr ne ""}<p>{$product.fulldescr}</p>{/if} </div>

Quote:
My other task is, I'm trying to get the pagination at the bottom of the page as well as the top on the tabular layout. Any help would be most appreciated.

skin/ability/customer/main/subcategories.tpl

After...

Code:
{include file="customer/main/products.tpl" products=$cat_products}

Insert...

Code:
{include file="customer/main/navigation_tabular.tpl"}

In skin/ability/customer/main/search_result.tpl

After...

Code:
{include file="customer/main/products.tpl"}

Insert...

Code:
{include file="customer/main/navigation_tabular.tpl"}
__________________
xcartmods.co.uk
Reply With Quote
  #157  
Old 03-01-2012, 02:45 PM
 
Ian Ian is offline
 

Senior Member
  
Join Date: Sep 2002
Location: Adelaide, South Australia
Posts: 127
 

Default Re: X-Cart Ability Template v4.4.x

Brilliant, Thanks Phil that worked perfectly. Just in case someone else is going to use this too, I think where you mention -

skin/ability/custom/main/subcategories.tpl

you mean

skin/ability/customer/main/subcategories.tpl

The pagination at the bottom has been requested by a quite a lot of our regular customers as we have quite a lot of multiple paged categories.

Thanks again
Ian
__________________
_____________________________________

4.6.6 Gold Plus
and 4.7.4 Gold
MySQL server 5.6.29
PHP 5.5.34
Reply With Quote
  #158  
Old 03-04-2012, 12:01 PM
 
yages yages is offline
 

eXpert
  
Join Date: Sep 2004
Location: Australia
Posts: 332
 

Default Re: X-Cart Ability Template v4.4.x

Phil

Sent you an email 1st March no reply, Its about adding the Easy View Variants to your mod, can you please reply
Thanks
__________________
yages
x-cart version 4.5.5
Reply With Quote
  #159  
Old 03-04-2012, 03:43 PM
 
jkwalz jkwalz is offline
 

Advanced Member
  
Join Date: May 2005
Location: Mesa, AZ
Posts: 52
 

Default Re: X-Cart Ability Template v4.4.x

Anyone have issues in Chrome with secure/unsecure mixed content warnings? I've had potential customers not want to register because when at the registration page Chrome tells them that something on the page is not SSL secure. Everything seems to be HTTPS. I even took out the Xcartmods link which is not secure and the Twitter links.

When I was using Smart Template I fixed this by changing my Livezilla help button to HTTPS but that doesn't do it for Ability.

https://www.jetbeads.com/xcart/register.php

www.jet
__________________
=========
Jason K. Walz
X-Cart v4.4.2
X-Cart Config v4.4.2
www.custommalashop.com
Mesa, AZ
=========
Reply With Quote
  #160  
Old 03-05-2012, 03:57 AM
 
candc candc is offline
 

eXpert
  
Join Date: Jul 2009
Location: UK
Posts: 292
 

Default Re: X-Cart Ability Template v4.4.x

Quote:
Originally Posted by jkwalz
Anyone have issues in Chrome with secure/unsecure mixed content warnings? I've had potential customers not want to register because when at the registration page Chrome tells them that something on the page is not SSL secure. Everything seems to be HTTPS. I even took out the Xcartmods link which is not secure and the Twitter links.

When I was using Smart Template I fixed this by changing my Livezilla help button to HTTPS but that doesn't do it for Ability.

https://www.jetbeads.com/xcart/register.php

www.jet

We had the same, you will probably find it is the Google fonts.

Fix is in the docs

http://www.xcartmods.co.uk/docs/ability/

HTH
__________________
Ver 4.4.4 Gold
Ability
BCSE Pre Order
BCSE Global Product Options
BCSE Stock Notify
CDSEO Pro
MM OPC - Gave up with it
Altered Cart OPC
XMobile
Powered by EWD

Ver 4.4.4 Gold
Ability
BCSE Pre Order
BCSE Global Product Options
BCSE Stock Notify
CDSEO Pro
Altered Cart OPC
XMobile
Powered by EWD
Reply With Quote

The following user thanks candc for this useful post:
PhilJ (03-05-2012)
Reply
   X-Cart forums > X-Cart 4 > Third Party Add-Ons for X-Cart 4


Thread Tools

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 01:14 PM.

   

 
X-Cart forums © 2001-2020