Re: Set number of products displayed per page (support thread)
Quote:
Originally Posted by
barendfaber
Hi,
I hope someone can help me. Using v 1.5.1,
www.fossilandrock.co.uk, with CEON URI mapping. Module installs perfectly, but when I try to choose how many products to display, I get to my custom 404 Page Not Found. Could this have something to do with the URI mapping
? Is there a fix for this
? Please see this product page:
http://www.fossilandrock.co.uk/candles-holders, and try to use the Set Products Per Page.
B
Yes it is CEON URI mapping. I revamped a product listing page here: www[DOT]aydincoins[DOT]com/buy-silver/american-silver-eagles/2011-prior-year-silver-eagles-uncirculated?sort=20a&max_display=6
and had to correct the code within CEON URI mapping.
I can not remember what I did off the top of my head. I do remember CEON URI mapping wasn't replacing / with ?sort=20a
I will look through my notes unless someone else can provide the answer before I do.
Re: Set number of products displayed per page (support thread)
Quote:
Originally Posted by
micmed
Alrighty then... I got this figured out and working. Now besides making it a drop down (still wanted) how can I make this text display in bold, a different color and spaced away from the "Displaying X to XX (of XX products"? I assume it is in the CSS somewhere.
www.simpsoncycles.com
did you solve this? I'm also trying to find where to change the numbers to bold.
Re: Set number of products displayed per page (support thread)
Re: Set number of products displayed per page (support thread)
Thank you! But i did not read well, what i meant is i want the font to be different when im there, what i mean is if i have choosen "All" i want to see that i have choosen "All". Like its not longer underlined or so. Just like the page numbers If i'm on page 1, the number one is displayed different then the other numbers. Sorry for my bad english...
right now its like this:
https://www.domak.nl/sokken-dames
Re: Set number of products displayed per page (support thread)
So I have finally shifted from my test server to a live server and somewhere along the way, this mod stopped working. It displays the links, and requests the page, but the number of items displayed does not update. I uninstalled/reinstalled this and the required column grid mod. but still have the issue. I then saw the post about URI mapping, I have Ultimate SEO installed, so I disabled that, and still no change. Here my site: gameovergames.com , any help would be appreciated.
Also on a side note, I did get my SSL cert installed and enabled in zencart, but I wouldn't think this would cause an issue, and the error logs are clean.
Re: Set number of products displayed per page (support thread)
Quote:
Originally Posted by
gameoverbeyond
So I have finally shifted from my test server to a live server and somewhere along the way, this mod stopped working. It displays the links, and requests the page, but the number of items displayed does not update. I uninstalled/reinstalled this and the required column grid mod. but still have the issue. I then saw the post about URI mapping, I have Ultimate SEO installed, so I disabled that, and still no change. Here my site: gameovergames.com , any help would be appreciated.
Also on a side note, I did get my SSL cert installed and enabled in zencart, but I wouldn't think this would cause an issue, and the error logs are clean.
Still having this issue? Any ideas? Anyone?
Re: Set number of products displayed per page (support thread)
Ok can anyone help me? I dunno how to run a module? I downloaded it, uploaded to my zencart folder, did "extract all" now how do I intall it? how do i run it? where do i find settings to change products displayed per page?
Thanks
Re: Set number of products displayed per page (support thread)
Quote:
Originally Posted by
gameoverbeyond
Still having this issue? Any ideas? Anyone?
Perhaps. I've just fixed a site that had identical symptoms. It turned out that the person that had installed the module made a very simple mistake.
---- From the readme.html -------------------------------
5. Edit /includes/modules/YOUR_TEMPLATE/product_listing.php
If you don't already have a modified product_listing.php in /includes/modules/YOUR_TEMPLATE/, then create one there first.
If you already have one, merge these changes into it.
Find:
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
Add below:
// BOF Number of Items Per Page
if(isset($_POST['max_display']) || isset($_GET['max_display'])) {
$_SESSION['product_listing_max_display'] = (int)$_REQUEST['max_display'];
} elseif (!isset($_SESSION['product_listing_max_display'])) {
$_SESSION['product_listing_max_display'] = (int)MAX_DISPLAY_PRODUCTS_LISTING;
}
// EOF Number of Items Per Page
----------------------------------------------------------
The problem was that this addition was added in between the "die('Illegal Access')" and the "}" rather than after the "}".
I simple mistake to make I guess, but it did have me scouring the forums for the a solution, and for a while there I thought it was related to the SEO module that she had installed.
Anyway, since I discovered your post in my search for an answer I figured it'd be worth suggesting that your problem may be due to the same/similar cause.
Cheers
RodG
Re: Set number of products displayed per page (support thread) - version 1.5.1
Hi,
I just downloaded this plug-in.
When I am trying to extract the files using windows extraction wizaed ; a password is being asked for all the files.
How to proceed further ?
Thanks
Re: Set number of products displayed per page (support thread) - version 1.5.1