Jump to content

Cannot select additional categories for products


Claudia M

Recommended Posts

I just tried it on our 100% stock test site and was able to add a new category and then add that additional category to my product. It's also working correctly on my far from stock live store.

Your screenshot shows that the Additional column is not even visible - certainly not what I see.

Link to comment
Share on other sites

I just downloaded a fresh version 6.2.8 and installed it.  No modificarions at all.  I can now select additional categories. Yeah!!!!!  Now to implement my modifications!

I do have a question.  I went to edit my admin/skins/templates/products.index.php and all it shows is

{*
 * CubeCart v6
 * ========================================
 * CubeCart is a registered trade mark of CubeCart Limited
 * Copyright CubeCart Limited 2017. All rights reserved.
 * UK Private Limited Company No. 5323904
 * ========================================
 * Web:   http://www.cubecart.com
 * Email:  [email protected]
 * License:  GPL-3.0 https://www.gnu.org/licenses/quick-guide-gplv3.html
 *}

It seems all the admin/skin files are like this.  Plus the admin/source files are blank

Link to comment
Share on other sites

Not at all!! Here's a few lines of my 700+ lines for products.index.php file.

{*  PLUSH
 * CubeCart v6
 * ========================================
 * CubeCart is a registered trade mark of CubeCart Limited
 * Copyright CubeCart Limited 2017. All rights reserved.
 * UK Private Limited Company No. 5323904
 * ========================================
 * Web:   http://www.cubecart.com
 * Email:  [email protected]
 * License:  GPL-3.0 https://www.gnu.org/licenses/quick-guide-gplv3.html
 *}
<form action="{$VAL_SELF}" method="post" enctype="multipart/form-data">
   {if isset($DISPLAY_PRODUCT_LIST)}
   <div id="general" class="tab_content">
      <h3>{$LANG.catalogue.title_product_inventory}</h3>
      {if isset($PRODUCTS)} <!-- MY PLACEMENT -->
      <table width="100%">
         <tr>
            <td align="right">
               {$LANG.common.filter}: 
               <select id="cat_subset">
                  <option value="{$CAT_LIST_ANY}">{$LANG.common.any}</option>
                  {foreach from=$CAT_LIST item=cat_dropdown}
                  <option value="?_g=products&amp;cat_id={$cat_dropdown.cat_id}" {if $cat_dropdown.cat_id == $CURRENT_CAT}selected="selected"{/if}>{$cat_dropdown.name}</option>
                  {/foreach}
               </select>
            </td>
         </tr>
      </table>
      <table width="100%">
         <tr>
            {foreach from=$SORT_CHARACTERS item=character}
            <td align="center"><a href="{$character.link}">{$character.char}</a></td>
            {/foreach}
            <td width="1%"><a href="{$SORT_CHARS_RESET_LINK}">{$LANG.common.any}</a></td>
         </tr>
      </table>
      <table width="100%">
         <thead>
            <tr>
               <th nowrap="nowrap">&nbsp;</th>
               <th nowrap="nowrap">{$THEAD.name}</th>
               <th nowrap="nowrap">{$THEAD.digital}</th>
               <th nowrap="nowrap">{$THEAD.image}</th>
               <th nowrap="nowrap">{$THEAD.product_code}</th>

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...