Announcement

Collapse
No announcement yet.

Site Shell

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

    Site Shell

    We run two internet sites through developer, and we need to keep the products on seperate websites - or 'seen' to be seperate, as the distributors say they conflict with each other.
    Is there a way that stock levels on one site can be updated automatically when another site's stock levels change ,without using snapshots?
    Alternatively, could we run a section within a site that has a different facia - we do not know how to do this as Actinic will overwrite the pages every time it uploads. Any suggestions will be apprecited.

    Regards

    Niels

    #2
    could we run a section within a site that has a different facia
    Yes. You can use a completely different Primary Template for each page if you like. However some items like the company logo are are common to all Primary Templates, but it's easy to replace e.g.

    NETQUOTEVAR:LOGOIMAGE

    with

    <!--NETQUOTEVAR:LOGOIMAGE--><img src="customlogo.jpg" height=123 width=456>

    Best way to experiment is to copy Act_primary.html to a new name. Go to the page you want customised (click the Section and under Layout, choose that new template). Now change things on that template and only that single page will change.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Hi Norman,
      I have tried this, but the layout seems to change when we preview in the browser, although all we have changed is the banner at the top. The shopping cart box and other links have changed from the right hand side - to the bottm left, although they are in the correct place in the editor.

      The following text appers at the top also
      The section level can be accessed through: -->

      and under the banner the following appears

      , Cart Value: 0

      -->


      Do you have any ideas ?

      Best regards

      Niels

      Comment


        #4
        Actinic uses tables to lay out the page. Tables require you to keep to a strict structure of <table> <tr> <td> and their coresponding end tags.

        You've probably broken that layout with what you've done. Best start again from scratch and only make tiny changes and test each time.

        Also watch out for HTML comment tags. <!-- and --> these surround blocks of informative text that won't be processed by Actinic. Alter these and you may be turning valid code into comments or vice-versa.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          Thankyou -

          Best regards

          Niels

          Comment


            #6
            still having problems

            Hi,
            Anything I change, no matter how small seems to throw the whole page template out - with the following error at the top
            The section level can be accessed through: --> . Even if I just write 'test' in text at the bottom, it affects the whole page - does anyone have any ideas ?

            Best regards

            Comment


              #7
              I would need to see your Act_Primary.html template to provide a detailed diagnosis, but initially, just try removing the following text from the <HEAD></HEAD> section of the Act_Primary.html template.
              Code:
              <!--
              The NETQUOTEVARs below can be uncommented for getting raw section lists:
              1. Top level section list
              2. Section list from current level and all children
              3. The whole section tree
              The rest covers the standalone structure members for each array - e.g. if
              you only need sName or sURL from an array.
              See the documentation for details.
              
              NETQUOTEVAR:TOPLEVELSECTIONS_RAW
              NETQUOTEVAR:CHILDSECTIONS_RAW
              NETQUOTEVAR:SECTIONTREE_RAW
              
              NETQUOTEVAR:SECTIONTREE_NAMES
              NETQUOTEVAR:SECTIONTREE_URLS
              NETQUOTEVAR:SECTIONTREE_IMAGES
              NETQUOTEVAR:SECTIONTREE_IMAGEWIDTHS
              NETQUOTEVAR:SECTIONTREE_IMAGEHEIGHTS
              NETQUOTEVAR:SECTIONTREE_SECTIONIDS
              
              NETQUOTEVAR:TOPLEVELSECTIONS_NAMES
              NETQUOTEVAR:TOPLEVELSECTIONS_URLS
              NETQUOTEVAR:TOPLEVELSECTIONS_IMAGES
              NETQUOTEVAR:TOPLEVELSECTIONS_IMAGEWIDTHS
              NETQUOTEVAR:TOPLEVELSECTIONS_IMAGEHEIGHTS
              NETQUOTEVAR:TOPLEVELSECTIONS_SECTIONIDS
              
              NETQUOTEVAR:CHILDSECTIONS_NAMES
              NETQUOTEVAR:CHILDSECTIONS_URLS
              NETQUOTEVAR:CHILDSECTIONS_IMAGES
              NETQUOTEVAR:CHILDSECTIONS_IMAGEWIDTHS
              NETQUOTEVAR:CHILDSECTIONS_IMAGEHEIGHTS
              NETQUOTEVAR:CHILDSECTIONS_SECTIONIDS
              
              The section level can be accessed through:
              NETQUOTEVAR:SECTIONLEVEL
              -->

              Comment


                #8
                Hi Chris,
                Still the same problem - sorry, can you help - it is only very basic changes I need to make? I'll send in 2 halves, as it is too long for Forum

                Best regards

                <!-- Primary HTML begin -->
                <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
                <HTML>
                <!-- Primary HTML begin -->
                <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
                <HTML>
                <HEAD>
                <HEAD>
                <TITLE>NETQUOTEVAR:PAGETITLE</TITLE>
                <Actinic:BASEHREF VALUE="NETQUOTEVAR:BASEHREF"/>
                <META NAME="ACTINICTITLE" CONTENT="NETQUOTEVAR:PAGEHEADER">
                <META HTTP-EQUIV="Content-Type" content="text/html; charset=iso-8859-1">
                <!--@act NETQUOTEVAR:HEADERMETA -->
                <!--@act NETQUOTEVAR:LOADFUNCTION -->
                <!--@act NETQUOTEVAR:SUBMITFUNCTION -->
                <!--@act NETQUOTEVAR:P3PFULLPOLICYLINK -->
                <LINK REL=STYLESHEET HREF="actinic.css">
                <SCRIPT LANGUAGE="JavaScript" SRC="actiniccore.js" TYPE="text/javascript"></SCRIPT>
                <SCRIPT LANGUAGE="JavaScript" SRC="actinicextras.js" TYPE="text/javascript"></SCRIPT>

                <!--@act NETQUOTEVAR:SECTIONTREE_RAW -->

                <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
                <!--
                function YahooSections(ar)
                {
                var strIDs = '';
                for (var i=1;i<=ar.length;i++)
                {
                if (ar[i].sURL != null)
                {
                strIDs += '<a href="' + ar[i].sURL + '"><span class="actxxsmall"><b><font color="NETQUOTEVAR:FGCOLORCSS">' + ar[i].sName + '</font></b></span></a><br>';
                {
                if (ar[i].pChild)
                {
                for (var j=1;j<=ar[i].pChild.length;j++)
                {
                if (ar[i].pChild[j].sURL != null)
                {
                strIDs += '<a href="' + ar[i].pChild[j].sURL + '"><span class="actxxsmall"><font color="NETQUOTEVAR:FGCOLORCSS">' + ar[i].pChild[j].sName + '</font></span></a><br>';
                }
                }
                }
                }
                strIDs += '<br>'
                }
                }
                return strIDs
                }
                //-->
                </SCRIPT>


                <!-- Placeholder of cookie checking javascript code. Do not remove it! -->
                <Actinic:COOKIECHECK/>
                <!--
                The NETQUOTEVARs below can be uncommented for getting raw section lists:
                1. Top level section list
                2. Section list from current level and all children
                3. The whole section tree
                The rest covers the standalone structure members for each array - e.g. if
                you only need sName or sURL from an array.
                See the documentation for details.

                NETQUOTEVAR:TOPLEVELSECTIONS_RAW
                NETQUOTEVAR:CHILDSECTIONS_RAW
                NETQUOTEVAR:SECTIONTREE_RAW

                NETQUOTEVAR:SECTIONTREE_NAMES
                NETQUOTEVAR:SECTIONTREE_URLS
                NETQUOTEVAR:SECTIONTREE_IMAGES
                NETQUOTEVAR:SECTIONTREE_IMAGEWIDTHS
                NETQUOTEVAR:SECTIONTREE_IMAGEHEIGHTS
                NETQUOTEVAR:SECTIONTREE_SECTIONIDS

                NETQUOTEVAR:TOPLEVELSECTIONS_NAMES
                NETQUOTEVAR:TOPLEVELSECTIONS_URLS
                NETQUOTEVAR:TOPLEVELSECTIONS_IMAGES
                NETQUOTEVAR:TOPLEVELSECTIONS_IMAGEWIDTHS
                NETQUOTEVAR:TOPLEVELSECTIONS_IMAGEHEIGHTS
                NETQUOTEVAR:TOPLEVELSECTIONS_SECTIONIDS

                NETQUOTEVAR:CHILDSECTIONS_NAMES
                NETQUOTEVAR:CHILDSECTIONS_URLS
                NETQUOTEVAR:CHILDSECTIONS_IMAGES
                NETQUOTEVAR:CHILDSECTIONS_IMAGEWIDTHS
                NETQUOTEVAR:CHILDSECTIONS_IMAGEHEIGHTS
                NETQUOTEVAR:CHILDSECTIONS_SECTIONIDS

                The section level can be accessed through:
                NETQUOTEVAR:SECTIONLEVEL
                -->

                </HEAD>

                <BODY TEXT="NETQUOTEVAR:FGCOLOR" topmargin="0" marginwidth="5" marginheight="0" OnLoad="NETQUOTEVAR:ONLOAD" NETQUOTEVAR:BGIMAGE NETQUOTEVAR:BGCOLOR NETQUOTEVAR:LINKCOLOR NETQUOTEVAR:VLINKCOLOR NETQUOTEVAR:ALINKCOLOR>
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td align="left" bgcolor="NETQUOTEVAR:PALCOLOR2CSS">
                NETQUOTEVAR:LOGOIMAGE
                </td>
                </tr>
                </table>

                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td colspan="3" bgcolor="NETQUOTEVAR:PALCOLOR2CSS">
                <img src="shim.gif" height="1">
                </td>
                </tr>
                <tr>
                <td width="10"><img src="shim.gif" height="30" width="10"></td>
                <td>NETQUOTEVAR:SIMPLESEARCH</td>
                <td align="right">NETQUOTEVAR:FOOTERGUIDE&nbsp;</td>
                </tr>
                <tr>
                <td colspan="3" bgcolor="NETQUOTEVAR:PALCOLOR2CSS">
                <img src="shim.gif" height="3">
                </td>
                </tr>
                </table>
                <br>
                <table width="100%" border="0" cellspacing="0" cellpadding="5" height="100%">
                <tr>

                <td valign="top" width="200">
                <table width="150" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" background="tab_pal2.gif" class="actsmallheading"><b>&nbsp;&nbsp;STORE SECTIONS</b></td>
                </tr>
                <tr>
                <td class="thinred2">
                <table width="100%" cellspacing="2" cellpadding="2">
                <tr>
                <td>
                <script language=Javascript1.2>
                document.write(YahooSections(section_tree))
                </script>
                </td>
                </tr>
                </table> </td>
                </tr>
                </table>

                <br>
                <p>&nbsp;</p>


                <!-- credit card logo table start -->
                <!-- <table width="150" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" background="tab_pal2.gif" class="actsmallheading"><b>&nbsp;&nbsp;CARDS ACCEPTED </b></td>
                </tr>
                <tr align="center" valign="middle">
                <td class="thinred2">
                <table width="100%" cellspacing="2" cellpadding="2">
                <tr align="center" valign="middle">
                <td><img src="visa.gif" width="34" height="22"></td>
                <td><img src="master.gif" width="34" height="22"></td>
                <td><img src="elec.gif" width="32" height="22"></td>
                </tr>
                <tr align="center" valign="middle">
                <td><img src="swi.gif" width="29" height="22"></td>
                <td><img src="solo.gif" width="30" height="19"></td>
                <td><img src="delta.gif" width="32" height="21"></td>
                </tr>
                </table>
                </td>
                </tr>
                </table>-->
                <!-- credit card logo table end -->
                <p><br>
                </p>

                </td>

                <td valign="top">

                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td width="2%" bgcolor="NETQUOTEVAR:PALCOLOR1CSS" valign="top"><img src="lefttab_pal1.gif"></td>
                <td width="92%" bgcolor="NETQUOTEVAR:PALCOLOR1CSS" height="22" class="actsmallheading"><b>NETQUOTEVAR:PAGEHEADER</b></td>
                <td width="6%" bgcolor="NETQUOTEVAR:PALCOLOR1CSS" align="right" valign="top"><img src="righttab_pal1.gif"></td>
                </tr>
                <tr valign="top" align="left">
                <td colspan="3" class="thinred">
                <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="5" ALIGN="CENTER">
                <tr>
                <td><img src="shim.gif" width="CUSTOMVAR:ACTSTDWIDTH" height="1"></td>
                </tr>
                <TR>
                <TD ALIGN="LEFT" VALIGN="MIDDLE">NETQUOTEVAR:FORMBEGIN
                <A NAME="top">
                <INPUT TYPE=HIDDEN NAME=RANDOM VALUE="NETQUOTEVAR:RANDOM">
                </A> NETQUOTEVAR:HIDDENFIELDS
                <!-- If customer accounts are in operation following two lines allow displaying -->
                <!-- User name and customer account name on every page -->
                <!-- NETQUOTEVAR:LOGINLINK --><Actinic:NOWSERVING/><Actinic:CURRACCOUNT/><Actinic:LOGOUT_SIMPLE/>

                Comment


                  #9
                  <!-- NETQUOTEVAR:HEADER -->
                  <div align="center"><span class="actxsmall">NETQUOTEVAR:HEADERTEXT</span></div>
                  NETQUOTEVAR:BULK
                  <div align="center"><span class="actxsmall">NETQUOTEVAR:FOOTERTEXT</span></div>
                  <!-- NETQUOTEVAR:FOOTER -->
                  NETQUOTEVAR:FORMEND<br>
                  </TD>
                  </TR>
                  </TABLE>
                  </td>
                  </tr>
                  </table>

                  </td>

                  <td valign="top" width="200" align="right">

                  <table width="150" border="0" cellpadding="0" cellspacing="0" >
                  <tr>
                  <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" background="tab_pal2.gif" class="actsmallheading"><b>&nbsp;&nbsp;CART DETAILS</b></td>
                  </tr>
                  <tr>
                  <td class="thinred2"><br>
                  <table width="100" border="0" cellspacing="0" cellpadding="0" align="center">
                  <tr>
                  <td> <div align="left"><span class="actxxsmall">
                  <script language="JavaScript">
                  document.write("NETQUOTEVAR:CARTCOOKIEITEMS&nbsp;" + getCartItem(3)+"&nbsp;<BR>");
                  document.write("NETQUOTEVAR:CARTCOOKIEVALUE&nbsp;" + getCartItem(1));
                  </script>
                  </span> </div>
                  </td>
                  </tr>
                  </table><br>
                  </td>
                  </tr>
                  </table>

                  <br>
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading" background="tab_pal2.gif"><b>&nbsp;&nbsp;CUSTOMER
                  SERVICES </b></td>
                  </tr>
                  <tr valign="top">
                  <td height="69" class="thinred2"> <table width="100%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td height="64" valign="top"> <p><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://www.mx1.co.uk/acatalog/MX1_Account.html">APPLY
                  FOR 10% OFF</a><br>
                  <a href="mailto:info@mx1.co.uk?subject=subscribetoMX1&body=Please%20Subscribe%20me%20to%20the%20MX1%20Mailing%20List%20where%20I%20will%20receive%20regular%20product%20updates%20and%20discounts">JOIN
                  MAILING LIST</a><br>
                  <a href="http://www.mx1.co.uk/returnsproceedure.htm" target="_blank">RETURNS
                  PROCEDURE<br>
                  </a></font><font face="Verdana, Arial, Helvetica, sans-serif"><a href="mailto:info@mx1.co.uk?subject=MX1%20Customer%20Enquiry" target="_blank">EMAIL
                  US<br>
                  </a></font><font face="Verdana, Arial, Helvetica, sans-serif"><a href="http://www.mx1.co.uk/sizes.htm" target="_blank">SIZING
                  CHART </a></font></p></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <br> <table width="148" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td width="148" height="22" background="tab_pal2.gif" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading"><b>&nbsp;QUICK
                  LINKS </b></td>
                  </tr>
                  <tr valign="top">
                  <td height="45" class="thinred2"> <table width="100%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td height="40" valign="top">BEST SELLERS<br>
                  JUST ADDED<br>
                  PRODUCT PREVIEWS<br> <a href="http://www.mx1.co.uk/cgi-bin/ss000021.pl?SECTIONID=Sale%5fSection1%2ehtml&NOLOGIN=1">SALE
                  SECTION</a> <br> <a href="http://www.mx1.co.uk/acatalog/search.html">PRICE
                  RANGE SEARCH</a></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <br>
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td width="150" height="22" background="tab_pal2.gif" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading"><b>Top
                  Seller - Wrath Hoody </b></td>
                  </tr>
                  <tr valign="top">
                  <td height="112" class="thinred2"> <table width="91%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td height="107" valign="top"> <p><a href="http://www.mx1.co.uk/cgi-bin/ss000021.pl?SECTIONID=Hooded%5fTops%2ehtml&NOLOGIN=1"><img src="front45221.jpg" alt="Wrath Hoody" width="140" height="109" border="0"></a><font face="Verdana, Arial, Helvetica, sans-serif">
                  </font></p></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <br>
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td width="236" height="22" background="tab_pal2.gif" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading"><b>&nbsp;&nbsp;SPECIAL
                  OFFERS</b></td>
                  </tr>
                  <tr valign="top">
                  <td height="70" class="thinred2"> <table width="100%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td height="65" valign="top"> <p><font face="Verdana, Arial, Helvetica, sans-serif">
                  <br>
                  <a href="http://www.mx1.co.uk/acatalog/MX1_Account.html"><img src="mainpicmembership.jpg" alt="10% OFF All Products" width="140" height="49" border="0"></a></font></p></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <br>
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td width="150" height="22" background="tab_pal2.gif" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading"><b>New
                  Fox Helmets</b></td>
                  </tr>
                  <tr valign="top">
                  <td height="106" class="thinred2"> <table width="97%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td height="101" valign="top"> <p><a href="http://www.mx1.co.uk/cgi-bin/ss000021.pl?SECTIONID=MX1%5fMotocross%5f%5f%5fFox%5fFox%5fMotocross%5fHelmets%5f128%2ehtml&NOLOGIN=1"><img src="front01025.jpg" alt="NEW 2005 Fox Helmets" width="140" height="93" border="0"></a><font face="Verdana, Arial, Helvetica, sans-serif">
                  </font></p></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <br>
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td width="150" height="22" background="tab_pal2.gif" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading"><b>New
                  Fox Boots</b></td>
                  </tr>
                  <tr valign="top">
                  <td height="106" class="thinred2"> <table width="97%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td height="101" valign="top"> <p><a href="http://www.mx1.co.uk/cgi-bin/ss000021.pl?SECTIONID=MX1_Motocross___Fox_Fox_Motocross_Boots_130.html&NOLOGIN=1"><img src="front05010.jpg" alt="New 2005 Motocross Boots" width="140" height="116" border="0"></a><font face="Verdana, Arial, Helvetica, sans-serif">
                  </font></p></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <br>
                  NETQUOTEDEL:CAPTURECOUPON
                  <!-- coupon entry begins -->
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td height="22" bgcolor="NETQUOTEVAR:PALCOLOR2CSS" class="actsmallheading" background="tab_pal2.gif"><b>&nbsp;&nbsp;NETQUOTEVAR:COUPONTITLE</b></td>
                  </tr>
                  <tr valign="top">
                  <td class="thinred2"> <table width="100%" border="0" cellpadding="2" cellspacing="2" class="actxxsmall">
                  <tr>
                  <td valign="top"><br> <table width="100%" border="0" cellspacing="0" cellpadding="2">
                  <form method="NETQUOTEVAR:CGIMETHOD" action="NETQUOTEVAR:CGIURL">
                  <tr>
                  <td valign="top" colspan="2">NETQUOTEVAR:COUPONMESSAGE
                  </td>
                  </tr>
                  <tr>
                  <td valign="top"><input type="TEXT" name="COUPONCODE" size="10" maxlength="255" value="NETQUOTEVAR:COUPONCAPTION" onFocus="this.value='';this.style.background='#FFFFFF'"></td>
                  <td><input type="SUBMIT" name="ACTION" value="NETQUOTEVAR:COUPONACTION"></td>
                  </tr>
                  </form>
                  </table></td>
                  </tr>
                  </table></td>
                  </tr>
                  </table>
                  <!-- coupon entry ends -->
                  NETQUOTEDEL:CAPTURECOUPON <br>
                  <font color="#FFFFFF" size="1"><a href="http://www.mx1.co.uk" target="_blank">WWW.MX1.CO.UK
                  </a><br>
                  <a href="http://www.geared-up.co.uk" target="_blank">WWW.GEARED-UP.CO.UK</a><br>
                  <a href="http://www.eyewear.co.uk" target="_blank">WWW.EYEWEAR.CO.UK </a></font>
                  </td>
                  </tr>
                  </table>
                  </BODY>
                  </HTML>
                  <!-- Primary HTML end -->

                  Comment


                    #10
                    Is there a way that stock levels on one site can be updated automatically when another site's stock levels change ,without using snapshots?
                    You can do this by putting your products into an external database and then linking both actinic databases to this using external linking (you need business or above to use external linking). As it happens I am writing a nifty little tool to do this for you, it can link basic products details such as stock levels over several databases on the same machine, several databases on a set of machines or a split order processing and catalog maintenance setup. Let me know if you would like to take part in the beta test for this product.

                    Regards,
                    Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
                    Visit our facebook page for the latest news and special offers from Mole End

                    Top Quality Integrated label paper for Actinic and Sellerdeck
                    A4 Paper with one or two peel off labels, free reports available for our customers
                    Product Mash for Sellerdeck
                    Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
                    Multichannel order processing
                    Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

                    Comment


                      #11
                      This sound like what we could be looking for - would we need specific database software, or can it be run off one main site's databse ?

                      Regards

                      Comment


                        #12
                        The software consists of an access database and a program. There are buttons to push for each database in the program or you can just run it in batch mode with our multisite automation mole to process them all at once. You need business or above to use it because it uses the Actinic external linking program.

                        You don't need to have any special database software installed to run it.

                        Regards,
                        Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
                        Visit our facebook page for the latest news and special offers from Mole End

                        Top Quality Integrated label paper for Actinic and Sellerdeck
                        A4 Paper with one or two peel off labels, free reports available for our customers
                        Product Mash for Sellerdeck
                        Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
                        Multichannel order processing
                        Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

                        Comment


                          #13
                          Thanks - a useful option to us would be, that as soon as a product is purchased on one site it would automatically update the stock levels on all sites. Will this be possible ?

                          Regards

                          Comment


                            #14
                            Yes, that is what the product is for. You will need to update your websites to get the figures reflected online but you can use our product automation tool to do that.

                            Regards,
                            Jan Strassen, Mole End Software - Plugins and Reports for Actinic V4 to V11, Sellerdeck V11 to V2018, Sellerdeck Cloud
                            Visit our facebook page for the latest news and special offers from Mole End

                            Top Quality Integrated label paper for Actinic and Sellerdeck
                            A4 Paper with one or two peel off labels, free reports available for our customers
                            Product Mash for Sellerdeck
                            Link to Google Shopping and other channels, increase sales traffic, prices from £29.95
                            Multichannel order processing
                            Process Actinic, Sellerdeck, Amazon, Ebay, Playtrade orders with a single program, low cost lite version now available from £19.95

                            Comment


                              #15
                              Sounds good - I'm on your mailing list & will be very interested i n it.

                              Best regards

                              Niels

                              Comment

                              Working...
                              X