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

How to Create Two Embedded / Static Page Sections

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design
 
Thread Tools Search this Thread
  #1  
Old 06-10-2008, 08:32 AM
  crazyoval's Avatar 
crazyoval crazyoval is offline
 

X-Adept
  
Join Date: Jun 2006
Location: UK
Posts: 559
 

Default How to Create Two Embedded / Static Page Sections

Hi guys, hope you are all well.

Am wondering if anyone knows how to add a second embedded / static page list? I want to use two distinct sections, one for help topics and one other for markets (i.e. a page for each of the niches I market to so I can create keyword rich landing pages that sit just below the top page).

Any ideas guys?

Is there a mod somewhere for this?

Many thanks

Guy
__________________
X-Cart 4.1.11 on Linux
HandsOnWebHosting: Very helpful & professional
Custom Skin Design by ARS.
Numerous, ney, hundreds of modifications by ARS.
AlteredCart: Download Expander, One Page Checkout,
BCS Engineering: Great team, Top service.
WebsiteCM: good products & very professional
CDSEO, Hidden Categories, Custom Work
Magnetic One Store Manager: Brill
Forms To Go: Excellent+A+support
Reply With Quote
  #2  
Old 06-26-2008, 11:30 AM
  connemara's Avatar 
connemara connemara is offline
 

Senior Member
  
Join Date: Jan 2006
Location: Vancouver Island, Canada
Posts: 167
 

Default Re: How to Create Two Embedded / Static Page Sections

Yes, there is a mod for this- static pages categories by telefirma.
It works great with CDSEO as well. Have it operating here:
http://www.nonuttin.com/shop/ see allergy FAQs and Support sections. Every time you create a new static page, you assign it to the category you want it to go into.

Connie
__________________
Versions 4.7.6
multiple mods and customizations
Reply With Quote
  #3  
Old 06-27-2008, 12:43 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: How to Create Two Embedded / Static Page Sections

Quote:
Originally Posted by crazyoval
Hi guys, hope you are all well.

Am wondering if anyone knows how to add a second embedded / static page list? I want to use two distinct sections, one for help topics and one other for markets (i.e. a page for each of the niches I market to so I can create keyword rich landing pages that sit just below the top page).

Any ideas guys?

Is there a mod somewhere for this?

Many thanks

Guy


For the first page of the block used with the value of field "orderby" less than 300, for the second - more.



PHP Code:
{capture name=menu}
    {
section name=pg loop=$pages_menu}
        {if 
$pages_menu[pg].orderby lt 300}
            <
a href="pages.php?pageid={$pages_menu[pg].pageid}class="VertMenuItems">{$pages_menu[pg].title}</a><br />
        {/if}
    {/
section}
{/
capture}
{include 
file="menu.tpl"  menu_title="First Block" menu_content=$smarty.capture.menu 


PHP Code:
{capture name=menu}
    {
section name=pg loop=$pages_menu}
        {if 
$pages_menu[pg].orderby gt 299}
            <
a href="pages.php?pageid={$pages_menu[pg].pageid}class="VertMenuItems">{$pages_menu[pg].title}</a><br />
        {/if}
    {/
section}
{/
capture}
{ include 
file="menu.tpl"  menu_title="Second Block" menu_content=$smarty.capture.menu 
Reply With Quote
  #4  
Old 06-27-2008, 11:14 AM
  crazyoval's Avatar 
crazyoval crazyoval is offline
 

X-Adept
  
Join Date: Jun 2006
Location: UK
Posts: 559
 

Default Re: How to Create Two Embedded / Static Page Sections

Hi Connie, I cant find a site for telefirma, can you give me a link please? I see your site, its exactly what I am looking for, thank you very much for showing me :O)
__________________
X-Cart 4.1.11 on Linux
HandsOnWebHosting: Very helpful & professional
Custom Skin Design by ARS.
Numerous, ney, hundreds of modifications by ARS.
AlteredCart: Download Expander, One Page Checkout,
BCS Engineering: Great team, Top service.
WebsiteCM: good products & very professional
CDSEO, Hidden Categories, Custom Work
Magnetic One Store Manager: Brill
Forms To Go: Excellent+A+support
Reply With Quote
  #5  
Old 06-27-2008, 11:21 AM
  crazyoval's Avatar 
crazyoval crazyoval is offline
 

X-Adept
  
Join Date: Jun 2006
Location: UK
Posts: 559
 

Default Re: How to Create Two Embedded / Static Page Sections

Found them Connie, you are a star thank you.

Thank you also Yurij, and I took a look at your skins / templates, they look great! I paricularly liked the black one. WIsh I knew about that 6 months ago!! :O)

WIll keep them in mind anyway.

ALl the best.
__________________
X-Cart 4.1.11 on Linux
HandsOnWebHosting: Very helpful & professional
Custom Skin Design by ARS.
Numerous, ney, hundreds of modifications by ARS.
AlteredCart: Download Expander, One Page Checkout,
BCS Engineering: Great team, Top service.
WebsiteCM: good products & very professional
CDSEO, Hidden Categories, Custom Work
Magnetic One Store Manager: Brill
Forms To Go: Excellent+A+support
Reply With Quote
  #6  
Old 06-27-2008, 04:06 PM
  connemara's Avatar 
connemara connemara is offline
 

Senior Member
  
Join Date: Jan 2006
Location: Vancouver Island, Canada
Posts: 167
 

Default Re: How to Create Two Embedded / Static Page Sections

great! glad to help
connie
__________________
Versions 4.7.6
multiple mods and customizations
Reply With Quote
  #7  
Old 06-30-2008, 12:32 AM
  Holub's Avatar 
Holub Holub is offline
 

X-Adept
  
Join Date: Jan 2008
Posts: 432
 

Default Re: How to Create Two Embedded / Static Page Sections

Quote:
Originally Posted by crazyoval
I took a look at your skins / templates, they look great! I paricularly liked the black one. WIsh I knew about that 6 months ago!! :O)

Today expires of 15% discount offer for our templates.
__________________
Regards,
Anthony Holub

X-Cart Skins Store
- twenty two different skins available;
- both 4.1.x and 4.2.x versions compatible;
- refresh you store now!

Smart menu X-Cart add-on
Featured Products Slide Show X-Cart add-on
"What's New?" FREE X-Cart add-on
Reply With Quote
  #8  
Old 07-06-2008, 10:41 PM
  crazyoval's Avatar 
crazyoval crazyoval is offline
 

X-Adept
  
Join Date: Jun 2006
Location: UK
Posts: 559
 

Default Re: How to Create Two Embedded / Static Page Sections

UPDATE:

Unfortunately I have discovered too late that TelaFirma are not currently in business. The guy who runs it has not been heard for a while, for whatever reason. Giving the guy a break I would hope his life is ok and that he can come back to normality at some stage. If I find out that TelaFirma is open for business again I will add to this posting but felt it unwise to leave this posting without this current warning to others who may purchase something online and subsequently find that there is no follow up to their purchase.
__________________
X-Cart 4.1.11 on Linux
HandsOnWebHosting: Very helpful & professional
Custom Skin Design by ARS.
Numerous, ney, hundreds of modifications by ARS.
AlteredCart: Download Expander, One Page Checkout,
BCS Engineering: Great team, Top service.
WebsiteCM: good products & very professional
CDSEO, Hidden Categories, Custom Work
Magnetic One Store Manager: Brill
Forms To Go: Excellent+A+support
Reply With Quote
  #9  
Old 07-07-2008, 07:39 AM
  connemara's Avatar 
connemara connemara is offline
 

Senior Member
  
Join Date: Jan 2006
Location: Vancouver Island, Canada
Posts: 167
 

Default Re: How to Create Two Embedded / Static Page Sections

Oh what a shame! I hadn't checked but would one of the other developers, like Jon at WebsiteCM or Carrie carry this mod? You might just try and check. I had originally done a manually coded second menu myself but wasn't completely satisfied; perhaps this is where Yuri's example would be helpful to you.
Good luck
Connie
__________________
Versions 4.7.6
multiple mods and customizations
Reply With Quote
  #10  
Old 07-07-2008, 12:04 PM
  JWait's Avatar 
JWait JWait is offline
 

X-Man
  
Join Date: Nov 2005
Location: California
Posts: 2,440
 

Default Re: How to Create Two Embedded / Static Page Sections

It would seem that you could clone the "help" section, maybe name it help2 or whatever you want and put your additional static pages there. I'm working on something similar but don't need any of the "help" topics, just the static pages. I'll let you know how it works out.
__________________
Two Separate X-Cart Stores
Version 4.4.4 Gold - X-AOM - Vivid Dreams Aquamarine (modified) - Linux
Mods - Newest Products - View All -, and a few others. Numerous upgrades from 4.0.x series.
Integrated with Stone Edge Order Manager + POS

Version 4.1.12 Gold (fresh install) - X-AOM - Linux
Mods - XCSEO free
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions > Changing design



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 11:00 AM.

   

 
X-Cart forums © 2001-2020