Hi DML,
just to be sure: everything you enter on the admin side like title / description etc. is being saved, so that when you navigate to another product in admin and then back to the previous one, all info you entered is there. Is that correct?
I assume all this works fine, so question is why the title is not being displayed. Have you made any changes yourself to the template file tpl_product_bookx_info_display.php which comes with the BookX distribution?
I ask, because on your website the HTML code displaying the title looks like this (with an empty title for some reason):
Code:
<!--bof Product Name-->
<h1 id="productName" class="docProduct"></h1>
<!--eof Product Name-->
The PHP code in BookX 0.9.3Beta for the product title looks like this:
Code:
<!--bof Product Name-->
<h1 id="productName" class="docProduct"><?php echo '<span class="bookxTitle">' . $products_name . '</span>'
. (($flag_show_product_bookx_info_volume && !empty($products_volume)) ? " <span class='bookxProdVolume'>" . sprintf(LABEL_BOOKX_VOLUME, $products_volume) . "</span>" : '') .
(($flag_show_product_bookx_info_volume && !empty($products_subtitle)) ? " - <span class='bookxProdSubtitle'>$products_subtitle</span>" : ''); ?></h1>
<!--eof Product Name-->
which should at least create this HTML code, even if the title variable is empty for some reason:
Code:
<!--bof Product Name-->
<h1 id="productName" class="docProduct"><span class="bookxTitle"></span></h1>
<!--eof Product Name-->
You said you are using the latest BookX version from Sourceforge. Can you verify that the PHP code in tpl_product_bookx_info_display.php looks like above? It should be around line 488.
If you have made changes to tpl_product_bookx_info_display.php, maybe you can temporarily replace it with the original file from the plugin and see if that works.
Regards,
p.
Bookmarks