Page 8 of 16 FirstFirst ... 678910 ... LastLast
Results 71 to 80 of 159
  1. #71
    Join Date
    Dec 2009
    Posts
    206
    Plugin Contributions
    2

    Default Re: Products Pagination - Support Thread

    Quote Originally Posted by lat9 View Post
    What version of products_pagination are you using? I ask because the mini-form for the dropdown pagecount has an onchange="this.form.submit();" parameter, but yours has onsubmit="this.form.submit();", so there's been some messing in /includes/classes/split_page_results.php. It's also not usual that all the next-page links are disabled.
    Thanks for looking! I'm using v1.4.6 The differences would be me playing with both the function and split_page_results.php file (trying to figure out where the gap in communication is by comparing it to the way the alpha filter works). For some reason, I just can't get it to acknowledge $parameters...

  2. #72
    Join Date
    Dec 2009
    Posts
    206
    Plugin Contributions
    2

    Default Re: Products Pagination - Support Thread

    I just noticed something. After restoring the files to their defaults (plus the change in your previous post), the parameters are in the form, but the form action doesn't have them. So instead of the action being

    index.php?main_page=advanced_search_result&keyword=RED&search_in_description=1&c ategories_id=&inc_subcat=1&manufacturers_id=&pfrom=&pto=&dfrom=&dto=

    it's

    index.php?main_page=advanced_search_result&keyword=RED&inc_subcat=1&sort=4a

    Could it have something to do with zen_get_all_params()?
    Last edited by kamelion0927; 18 Sep 2013 at 10:39 PM.

  3. #73
    Join Date
    Dec 2009
    Posts
    206
    Plugin Contributions
    2

    Default Re: Products Pagination - Support Thread

    I think I fixed the item per page dropdown. Whether or not it broke something else remains to be seen...

    In includes/functions/extra_functions/products_pagination_functions.php on line 75, I changed it from
    PHP Code:
    $dropdown  '<div class="pp_count">' . (($displayForm) ? zen_draw_form('pp_count_form' $formSuffixzen_href_link($_GET['main_page'], zen_get_all_get_params()), 'post') : '') . zen_hide_session_id() . zen_draw_hidden_field ('main_page'$_GET['main_page']) . $baseValue
    to
    PHP Code:
    $dropdown  '<div class="pp_count">' . (($displayForm) ? zen_draw_form('pp_count_form' $formSuffix'''post') : '') . zen_hide_session_id() . zen_draw_hidden_field ('main_page'$_GET['main_page']) . $baseValue
    The form is a little jumpy now, but it's working.

  4. #74
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,413
    Plugin Contributions
    94

    Default Re: Products Pagination - Support Thread

    Going through the search for "red" including product descriptions, the initial search finds 115 but clicking on any of the links or the per-page dropdown reverts to 17. I'm quite puzzled, since my needlework site's running the latest version (+fix) and has no problems (www. latitude9needlearts.com/index.php?main_page=advanced_search_result&keyword=the&search_in_description=1&c ategories_id=&inc_subcat=1&manufacturers_id=&pfrom=&pto=&dfrom=&dto=).

    When you say you replicated the issue on a clean install of v1.5.1, I'm assuming that you're using your database and products. One difference I did notice is that my site (with an unmodified version of /includes/modules/pages/advanced_search/header_php.php) defaults the advanced search "search_in_descriptions" to 1 while your page defaults to 0.

  5. #75
    Join Date
    Dec 2009
    Posts
    206
    Plugin Contributions
    2

    Default Re: Products Pagination - Support Thread

    I actually changed the default from 1 to 0 in the advanced search header.php file because if you look at some of the results from the "red" search, if they want a color, they're probably not looking for lip balm (that has red raspberry seed oil in it). Though this issue was happening before the switch.

    Anyway, now that I think about it, my site was recently migrated to a "better server" by host gator and I've had nothing but obscure issues since so that might explain why I'm seeing the problem even on a clean install. I'm actually going to be changing hosts this weekend so I'll do some more troubleshooting before I install my customized site (ie make sure it isn't the seo mod that's causing the conflict and/or that it isn't a user error). The only reason I'm confused as to why this isn't working is because the dynamic filter is working and it's pretty much the same principal. Thanks so much for your help - I really appreciate it. Have a great weekend!

    (P.S. Love your needlework site - the froggies make me want to start cross stitching again. :))
    Last edited by kamelion0927; 19 Sep 2013 at 07:29 PM.

  6. #76
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,413
    Plugin Contributions
    94

    Default Re: Products Pagination - Support Thread

    Quote Originally Posted by kamelion0927 View Post
    I actually changed the default from 1 to 0 in the advanced search header.php file because if you look at some of the results from the "red" search, if they want a color, they're probably not looking for lip balm (that has red raspberry seed oil in it). Though this issue was happening before the switch.

    Anyway, now that I think about it, my site was recently migrated to a "better server" by host gator and I've had nothing but obscure issues since so that might explain why I'm seeing the problem even on a clean install. I'm actually going to be changing hosts this weekend so I'll do some more troubleshooting before I install my customized site (ie make sure it isn't the seo mod that's causing the conflict and/or that it isn't a user error). The only reason I'm confused as to why this isn't working is because the dynamic filter is working and it's pretty much the same principal. Thanks so much for your help - I really appreciate it. Have a great weekend!

    (P.S. Love your needlework site - the froggies make me want to start cross stitching again. :))
    Thanks for the update (and the compliment), I just wanted to be sure that it wasn't something weird ... not that it's not! I just don't get why my v1.5.1 site works and yours doesn't; this plugin just isn't that intrusive.

  7. #77
    Join Date
    Dec 2009
    Posts
    206
    Plugin Contributions
    2

    Default Re: Products Pagination - Support Thread

    Finally got it sorted. The parameters were being excluded because of a change to functions_general.php that were made to accommodate the Dynamic Filter Add-On. I removed the changes from said mod and now both Dynamic Filter and Pagination are working with no thrown errors. Sooo, moral of my tale, if you are using this mod with Dynamic Filter AND have zen cart v1.5.1 installed, your best bet is to use functions_general.php that comes with zen cart v1.5.1 and not the one in the Dynamic Filter package. Thanks again!

  8. #78
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,413
    Plugin Contributions
    94

    Default Re: Products Pagination - Support Thread

    Thanks for the report! What I was seeing on your site didn't make sense to me.

  9. #79
    Join Date
    Apr 2013
    Posts
    11
    Plugin Contributions
    0

    Default Re: Products Pagination - Not working with Search

    If I change the "items per page" to 90, it takes me to the home page.
    Example. Go to http://theplaypages.com

    the use the search and search for "lelo". Scroll to the bottom and change the "Items per page" to 90. It takes me back to the home page.

    Can this be fixed?

  10. #80
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    13,413
    Plugin Contributions
    94

    Default Re: Products Pagination - Not working with Search

    Quote Originally Posted by palmislandinc View Post
    If I change the "items per page" to 90, it takes me to the home page.
    Example. Go to http://theplaypages.com

    the use the search and search for "lelo". Scroll to the bottom and change the "Items per page" to 90. It takes me back to the home page.

    Can this be fixed?
    I'm sure it can! What's your setting for Configuration->Product Listing->Display Multiple Products Qty Box Status and Set Button Location?

    P.S. It's good form to place a "warning" next to a website link that contains adult products.

 

 
Page 8 of 16 FirstFirst ... 678910 ... LastLast

Similar Threads

  1. Compare multiple products - support thread
    By willie bee in forum Addon Templates
    Replies: 37
    Last Post: 9 Jan 2020, 08:25 PM
  2. v154 All Products Virtual -- No Shipping [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 16
    Last Post: 22 Jul 2019, 12:04 PM
  3. v153 Linked Products Report [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 11
    Last Post: 11 Jun 2015, 09:52 PM
  4. Products Disclaimer Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 12
    Last Post: 2 Jun 2010, 11:29 PM
  5. Products/Categories URLs Exporter Support Thread
    By joshuayang in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 28 Mar 2010, 05:33 PM

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