close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Questions about Products_Results.php Page in PS3

Thread began 9/06/2010 11:35 am by pistartech366237 | Last modified 9/28/2010 7:58 am by Jason Byrnes | 1628 views | 5 replies |

pistartech366237

Questions about Products_Results.php Page in PS3

Hi,

I have two questions about Products_Results.php page:

I want to add two options:

1. Show all products for each created category on the same page (instead of showing just 10 products per page (as it is set by default). But only by the request of page visitor. Which means - I want the page to show only 10 results per page, however, add the link "Show All Products", which if clicked, shows all products for the particular category. (I've tried to use the "Display Record Count" server behavior, but it gives me an error that says that the repeat region is locked by the main template and wouldn't let me make any changes).

2. Create the option of showing the products by price range (for example $0-$500, $501- $999, etc.).

Please advise ASAP.

Thank you so much in advance.

Best regards,

Paul.

Sign in to reply to this post

Jason ByrnesWebAssist

NOTE: These are not supported modifications, we can explain what you need to do, but cannot offer assistance in actually doing it.

1) to show all records by link, add a link that passes a querystring:

<a href="products_results.php?show=all">show all</a>


then find the following line:

php:
$query_limit_WADAProducts = sprintf("%s LIMIT %d, %d", $query_WADAProducts, $startRow_WADAProducts, $maxRows_WADAProducts);




and change it to:

php:
if(isset($_GET['show']) && $_GET['show'] == 'all'){
    $query_limit_WADAProducts = sprintf("%s", $query_WADAProducts);
}else{
    $query_limit_WADAProducts = sprintf("%s LIMIT %d, %d", $query_WADAProducts, $startRow_WADAProducts, $maxRows_WADAProducts);
}





you will also want to add an if statement around the navigation to hide it if all records are being shown:

php:
<div class="links"><?php if(!isset($_GET['show']) || (isset($_GET['show']) && $_GET['show'] != 'all')) { ?> Products <?php echo ($startRow_WADAProducts 1?> to <?php echo min($startRow_WADAProducts $maxRows_WADAProducts$totalRows_WADAProducts?> of <?php echo $totalRows_WADAProducts ?>
      <?php if ($pageNum_WADAProducts 0) { // Show if not first page ?>
        <a href="<?php printf("%s?pageNum_WADAProducts=%d%s"$currentPage0$queryString_WADAProducts); ?>">First</a>
        <?php // Show if not first page ?>
      <?php if ($pageNum_WADAProducts 0) { // Show if not first page ?>
        <a href="<?php printf("%s?pageNum_WADAProducts=%d%s"$currentPagemax(0$pageNum_WADAProducts 1), $queryString_WADAProducts); ?>">Prev</a>
        <?php // Show if not first page ?>
      <?php if ($pageNum_WADAProducts $totalPages_WADAProducts) { // Show if not last page ?>
        <a href="<?php printf("%s?pageNum_WADAProducts=%d%s"$currentPagemin($totalPages_WADAProducts$pageNum_WADAProducts 1), $queryString_WADAProducts); ?>">Next</a>
        <?php // Show if not last page ?>
      <?php if ($pageNum_WADAProducts $totalPages_WADAProducts) { // Show if not last page ?>
        <a href="<?php printf("%s?pageNum_WADAProducts=%d%s"$currentPage$totalPages_WADAProducts$queryString_WADAProducts); ?>">Last</a>
        <?php // Show if not last page ?><?php ?>



2) The products results page already supports price pange.


go to the search page. on the search page, you can enter the price range you wish to view.

Sign in to reply to this post

pistartech366237

Thank you

Hi Jason,

Thank you so much for your help and your advise. I'll try to implement it and will let you know of the result. I appreciate your time!!!

Best regards,

Paul.

Sign in to reply to this post

Jason ByrnesWebAssist

you're welcome.

Sign in to reply to this post

pistartech366237

Dear Jason,

I've implemented your code and it worked FINE!!!!!!!!!!

Thank you so much for your help and guidance!!!

Best regards,

Paul.

Sign in to reply to this post

Jason ByrnesWebAssist

excellent, glad to hear it is working.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...