Announcement

Collapse
No announcement yet.

Change Extended Layout base upon stock

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Change Extended Layout base upon stock

    I have looked for this on the forum, but to be honest I am not quite sure what to search for.

    Basically I use extended info pages.

    Would it be possible to have a standard extended info page that can be viewed most of the time, but Actinic changes it to a different page during upload if the item is out of stock.

    If possible is this something which would be easy, or difficult to do?

    Any help would be appreciated.

    Many thanks

    Jason
    Regards

    Jason

    Titan Jewellery (Swift Design)
    Zirconium Rings
    Damascus Steel Rings

    #2
    It would be easier to do this by having the normal Extended Info page but giving it two sets of content with blockif's displaying one or the other depending on the state of the IsInStock variable. E.g.
    Code:
    <actinic:block if="%3cactinic%3avariable%20name%3d%22IsInStock%22%20%2f%3e" >
    	NORMAL PAGE CONTENT
    </actinic:block>
    <actinic:block if="%21%20%3cactinic%3avariable%20name%3d%22IsInStock%22%20%2f%3e" >
    	OUT OF STOCK PAGE CONTENT
    </actinic:block>
    Where NORMAL PAGE CONTENT could be everything between <body> and </body> (not inclusive) on the Extended Info Layout.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Many thanks Norman, will give it a try at the weekend.

      Cheers

      Jason
      Regards

      Jason

      Titan Jewellery (Swift Design)
      Zirconium Rings
      Damascus Steel Rings

      Comment


        #4
        Only just got around to doing this Norman and must say that it works a treat.

        Here is yet another thank you to add to all my previous.

        The time you spend on helping out really is appreciated.

        Kind regards

        Jason
        Regards

        Jason

        Titan Jewellery (Swift Design)
        Zirconium Rings
        Damascus Steel Rings

        Comment

        Working...
        X