Page 11 of 43 FirstFirst ... 91011121321 ... LastLast
Results 101 to 110 of 427
  1. #101
    Join Date
    Jan 2006
    Posts
    165
    Plugin Contributions
    1

    Default Re: Bug: Error combining bookx filters with manufacturer

    Hi DML,

    possibly the install URL is not correctly formed. I will make a note to myself to check the instructions on that.

    Here is how it works:

    Let's say your shop is called bookxshop.com and you have renamed your "admin" folder to something else like you should for security reasons, let's say "mysecureadmin" so that you log into admin with the following URL: http://bookxshop.com/mysecureadmin

    After you log in, then you should get to http://bookxshop.com/mysecureadmin/index.php
    Now you add the bit "?action=bookx_install" so that the entire URL reads http://bookxshop.com/mysecureadmin/i...=bookx_install

    Here are a couple of other scenarios:
    You have not renamed your "admin" folder, so the URL would be http://bookxshop.com/admin/index.php...=bookx_install
    You are developing on your local machine and the URL to your admin page is different, so it could be http://localhost/bookxshop/mysecurea...=bookx_install

    even if you don't see the index.php part it should work if you put http://bookxshop.com/mysecureadmin/?...=bookx_install

    Hope that works.
    p.

  2. #102
    Join Date
    Jul 2014
    Location
    Boston, MA, USA
    Posts
    47
    Plugin Contributions
    0

    Default Re: Bug: Error combining bookx filters with manufacturer

    I have no clue what you did differently than the original directions, but that worked. Thanks.

    So, my only remaining question is... I saw in the information on the software that you should be able to change existing products to BookX, but I don't see how to do that without deleting the old products and entering them again.

    Thanks again.
    DML

  3. #103
    Join Date
    Jan 2006
    Posts
    165
    Plugin Contributions
    1

    Default Re: Bug: Error combining bookx filters with manufacturer

    Hi DML,

    if it works, that's the good news. You are right that the manual is not very wordy about the conversion of existing products. I will make a note to also be clearer on that in the instructions. In the meantime, you find the conversion here Admin -> Tools –> BookX Installation & Tools. There is some description there of how it works. To be safe ABSOLUTELY make a backup of your database before you convert the products ! ;)

    Regards,
    p.

  4. #104
    Join Date
    Jul 2014
    Location
    Boston, MA, USA
    Posts
    47
    Plugin Contributions
    0

    Default Re: Bug: Error combining bookx filters with manufacturer

    Also, when making a product BookX, it seems to lose what I save in several of the areas. It displays things like page count, release date, price on the sale page...and the cover image, but it seems to lose the author name and book size (they turn blank inside the product build page, when I try to save changes). and it won't display the information from product name, subtitle, and book description on the sale page.

    DML

  5. #105
    Join Date
    Jan 2006
    Posts
    165
    Plugin Contributions
    1

    Default Re: Bug: Error combining bookx filters with manufacturer

    Hi DML,

    are you using the latest version 0.9.3Beta of the plugin found on Sourceforge, yes? http://sourceforge.net/projects/zencartbookx/

    Please try to be a s specific as you can, when describing what you are doing and what is not working. If it is an issue of how to call a page, you can always paste the part of the url after your "admin", so for the "preview page" it would be for example: "product.php?cPath=1_56&product_type=1&pID=455&action=new_product_preview&page=1 "
    Then I know exactly where you are having the problem.

    Are you telling me that you don't see all the BookX info on the "preview" page between editing and saving a product? If so, please try to go ahead and save the product and see if the fields are indeed empty when you open the product again.
    With "sale page" you mean the shopping cart contents or the "product info" page?

    Regards,
    p.

  6. #106
    Join Date
    Jul 2014
    Location
    Boston, MA, USA
    Posts
    47
    Plugin Contributions
    0

    Default Re: Bug: Error combining bookx filters with manufacturer

    Quote Originally Posted by philou View Post
    Are you telling me that you don't see all the BookX info on the "preview" page between editing and saving a product? If so, please try to go ahead and save the product and see if the fields are indeed empty when you open the product again.
    With "sale page" you mean the shopping cart contents or the "product info" page?

    Regards,
    p.
    Okay, I've managed to fix some of it myself, but here's what I see...

    http://firebornpublishing.com/store/...products_id=10

    Now, when I look at the preview, ALL the information I've entered shows correctly, including everything entered in my description area. When the main page loads, I am missing...

    Title
    Subtitle
    Series
    and the stuff from the Description block

    But Title, Subtitle, and Description show up on the preview, so I have no idea why they are not translating to the sale page, as they were before I put in BookX (for that matter...testing products that are still in General, they display fine).

    No clue what is going wrong in between, but again...thanks for your help.

    DML

  7. #107
    Join Date
    Jan 2006
    Posts
    165
    Plugin Contributions
    1

    Default Re: Bug: Error combining bookx filters with manufacturer

    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.

  8. #108
    Join Date
    Jul 2014
    Location
    Boston, MA, USA
    Posts
    47
    Plugin Contributions
    0

    Default Re: Bug: Error combining bookx filters with manufacturer

    Quote Originally Posted by philou View Post
    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):
    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.

    Yes, in the Admin, it is now saving everything I enter, from one time looking at the product and the next. I know the information is THERE but is not being displayed. I have made no changes to that file. The only two files I made changes to are the two you specifically tell us to make changes to in the installation directions.

    This is a copy/paste of the code in that file.

    Sorry it took so long to get back to you. They were working on the lines in this area, and I lost internet for a day. Thanks.

    <!--bof Product Name-->
    <h1 id="productName" class="docProduct"><?php echo $products_name .
    (($flag_show_product_bookx_info_volume && !empty($products_volume)) ? " <div class='bookxProdVolume'>" . sprintf(LABEL_BOOKX_VOLUME, $products_volume) . "</div>" : '') .
    (($flag_show_product_bookx_info_volume && !empty($products_subtitle)) ? " - <div class='bookxProdSubtitle'>$products_subtitle</div>" : ''); ?></h1>
    <!--eof Product Name-->

    DML

  9. #109
    Join Date
    Jan 2006
    Posts
    165
    Plugin Contributions
    1

    Default Re: Bug: Error combining bookx filters with manufacturer

    Dear DML,

    are you 100% certain that you are using the version 0.9.3Beta from Sourceforge? ( http://sourceforge.net/projects/zencartbookx )
    I have downloaded the package from there again myself just be sure there is no mistake on my end and these lines are definitely different in the file tpl_product_bookx_info_display.php that comes with 0.9.3 from there?
    The version number is also written at the top of each file in the distribution, it should say:
    Code:
     * @version BookX V 0.9.3 BETA
     * @version $Id: [ZC INSTALLATION]/includes/templates/[CURRENT_TEMPLATE]/templates/tpl_product_bookx_info_display.php 2014-02-05 philou
    In some earlier versions there were indeed problems with the description not showing, so I suspect that you don't have the latest one.

    Is this the very first version of BookX you have installed, or did you have one previously? Please note that after 0.9.1 some template files have moved as is written in the "Changelog.rtf" in the distribution package.

    Regards,
    p.

  10. #110
    Join Date
    Sep 2009
    Posts
    23
    Plugin Contributions
    0

    Default Re: New Version 0.9.3 beta on Sourceforge

    Thanks philou for your reply, i was travelling so the delay,

    my site details are as under
    site name backup.sultan-chand.com

    configurations
    1. Categories, about 12
    2. All categories and products are "type books"
    3. Used Authors as authors ,
    4. One book can have many authors
    5. Used Genre as Subjects, One book has only one subject
    6. used Series is for classes, currently one book can fall only in one series
    7. used Publisher for Boards, Currently one book will fall only for one board


    Problem area
    Problem 1. The "text_all_music_genre"
    select Anil Kr. Sharma, from authors in the book filter box, Anil Kr. Sharma writes books both for maths and mathematics Genre, so this problem occurs only if the author has books in more than one genre


    Problem 2. the previous next does not work in listing
    select Anita Devraj from Authors in the book filter box, 12 books wil be listed, Click on any one of them, details of the book will be listed with a previous next menu, and will always show, "Books+2" the first category and the count as 5, which is the count of the first category
    and teh previous next butoon will not be activated. clicking on the product list button, will list the products under the first category "Books for +2"

    Problem 3. Filter by alphabet does not work
    Select any option of the filter, means, any author, any genre etc.. the books are then listed, and if you try to apply any filter of "filter result by items starting with", does not work and takes you to home page

    I have been using the book version on zen cart 1.3.8 and it is working smoothly except with a few bugs. I wanted to change to Zen cart 1.5.1 and use your bookx, any help that i can provide by rigorous testing, you may let me know

    You may check out the sites at backup.sultan-chand.com and teh original at sultan-chand.com
    i have loaded two themes on the backup.sultan-chand.com and can give you the admin password if you want, the books are more or less the same as in sultan-chand.com

    Look forward to your input

 

 
Page 11 of 43 FirstFirst ... 91011121321 ... LastLast

Similar Threads

  1. Why "No, Normal Shipping Rules" option for a "Product - Free Shipping" type?
    By ilikemike in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 31 Dec 2011, 12:34 AM
  2. Replies: 5
    Last Post: 11 Sep 2009, 04:51 AM
  3. Different "Sold Out" images for each product type
    By Starlyn in forum Setting Up Categories, Products, Attributes
    Replies: 13
    Last Post: 20 Mar 2009, 10:37 PM
  4. Remove "Add: [ ]" and "Add selected products to cart" from product pages? possible?
    By edwardtilbury in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 1 Sep 2008, 03:13 AM
  5. "Array()" line on "Update Address Book" page
    By vera in forum Managing Customers and Orders
    Replies: 10
    Last Post: 22 Sep 2006, 03:06 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR