| ||||||||||
![]() |
Shopping cart software Solutions for online shops and malls | |||||||||
![]() |
![]() |
|
X-Cart Home | ![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
Displaying All User's Wishlists in Admin | ||||
![]() |
|
|
Thread Tools | Search this Thread |
#11
|
|||||||||
|
|||||||||
![]() First product bought in admin->orders:
Code:
in orders.tpl ![]() Kinda off subject but thought I'd throw that in ![]() |
|||||||||
#12
|
|||||||||
|
|||||||||
![]() Looks like this is turning into a MM2.0 thread.
Groovico, can I see how many times a product appears in the wishlist table? That is essential. I want to know if 1 or 100 customers have it in their wishlist. |
|||||||||
#13
|
|||||||||
|
|||||||||
![]() Back to the real subject here:
Quote:
Great idea to add this in. You can actually convert a SIMPLE mod into a GREAT MULTIPURPOSE one here with these ideas.
__________________
It doesn\'t matter what is done... it is how it is done. ============================= XCart Version: 3.5.3 -> Dmcigars.com XCart Version: 4.1.3.... |
|||||||||
#14
|
|||||||||
|
|||||||||
![]() Hum. I look at this code and wonder why I did some things that I did as far as the sql query. It could be written much better. If I ever get back to this and "clean up" the code I'll post the mod here. It does work though.
Carrie
__________________
Custom Development, Custom Coding and Pre-built modules for X-cart since 2002! We support X-cart versions 3.x through 5.x! Home of the famous Authorize.net DPM & CIM Modules, Reward Points Module, Point of Sale module, Speed Booster modules and more! Over 200 X-cart Mods available & Thousands of Customizations Since 2002 - bcsengineering.com Please E-Mail us for questions/support! |
|||||||||
#15
|
|||||||||
|
|||||||||
![]() Quote:
You'll be able to see whats in the wishlists via a straight forward lists, wishlists generally don't have huge amounts of the same product in them as customers remove items from their wishlist once purchased of if they change their mind. We've ran the wishlist viewer on some of the busiest x-cart sites around, depending on the type of site you have the use of the wishlist by customers will vary drastically.
__________________
Groovico Used by X-carters the world over: Marketing Manager Pro Bundle For X-cart Featured Product Manager for X-cart Feed manager pro for X-cart http://www.firetanksoftware.com Celebrating 7 Years of providing quality X-cart Add ons and X-cart Mods for x-cart 3.X to X-cart 4.4.X |
|||||||||
#16
|
|||||||||
|
|||||||||
![]() Groovico,
My personal experience with Wishlists has been different. My customers tend to "clump" around core products. Anyway, I am getting really tired of waiting for MM 2.0. I kicked off some development today that I think is in your product but I simply cannot keep waiting for. Please tell me it is coming soon. |
|||||||||
#17
|
|||||||||
|
|||||||||
![]() Quote:
Public release date 26th Jan. However, you may check your email instead ![]()
__________________
Groovico Used by X-carters the world over: Marketing Manager Pro Bundle For X-cart Featured Product Manager for X-cart Feed manager pro for X-cart http://www.firetanksoftware.com Celebrating 7 Years of providing quality X-cart Add ons and X-cart Mods for x-cart 3.X to X-cart 4.4.X |
|||||||||
#19
|
|||||||||
|
|||||||||
![]() Quote:
That'll have been Marketing Manager 2.0 Pro bundle you've been peaking at ![]()
__________________
Groovico Used by X-carters the world over: Marketing Manager Pro Bundle For X-cart Featured Product Manager for X-cart Feed manager pro for X-cart http://www.firetanksoftware.com Celebrating 7 Years of providing quality X-cart Add ons and X-cart Mods for x-cart 3.X to X-cart 4.4.X |
|||||||||
#20
|
|||||||
|
|||||||
![]() Displaying All Users Wish Lists in Admin 3.4.11
Here is the same solution for X-Cart 3.4.11 Change to module ../skin1/admin/menu.tpl Note: Add this line under the link to users.php (after line 3) Wish lists New module ../skin1/admin/main/adminwish.tpl This page allows you to view all user's wishlists. {capture name=dialog} { include file="customer/main/navigation.tpl" } <table border=0 cellspacing=5> <tr> <td valign=top>Name</td> <td valign=top>Products Desired</td> <td valign=top>Quantity</td> <td valign=top>Price Each</td> <td valign=top>Purchased</td> </tr> {section name=cust_num loop=$wl_data} <tr> <td valign=top align=left>{$wl_data[cust_num].firstname} {$wl_data[cust_num].lastname}</td> <td valign=top align=left>{$wl_data[cust_num].product}</td> <td valign=top align=center>{$wl_data[cust_num].amount}</td> <td valign=top align=right>${$wl_data[cust_num].price}</td> <td valign=top align=center>{$wl_data[cust_num].purchased}</td> </tr> {/section} </table> { include file="customer/main/navigation.tpl" } {/capture} {include file="dialog.tpl" title="Wish Lists" content=$smarty.capture.dialog extra="width=100%"} New module ../admin/adminwish.php <? require "../smarty.php"; require "../config.php"; require "./auth.php"; require "../include/security.php"; $objects_per_page = $config["Appearance"]["users_per_page_admin"]; # # Obtain wishlist from database # $wl_data = func_query("select xcart_customers.firstname, xcart_customers.lastname, xcart_products.product, xcart_wishlist.amount, xcart_pricing.price, xcart_wishlist.purchased from xcart_customers, xcart_wishlist, xcart_products, xcart_pricing where xcart_wishlist.login=xcart_customers.login and xcart_wishlist.productid=xcart_products.productid and xcart_wishlist.productid=xcart_pricing.productid") ; $total_items = count($wl_data); $total_nav_pages = ceil($total_items/$objects_per_page)+1; require "../include/navigation.php"; if (is_array($wl_data)) $wl_data = array_slice($wl_data, $first_page, $objects_per_page);; $smarty->assign("navigation_script","adminwish.php?"); $smarty->assign("wl_data",$wl_data); $smarty->assign("main","adminwish"); @include "../modules/gold_display.php"; $smarty->display("admin/home.tpl"); ?> Change to module ../skin1/single/home.tpl Note: Add these 2 lines after the line {include file="main/subscribe_confirmation.tpl"} {elseif $main eq "adminwish"} {include file="admin/main/adminwish.tpl"} Thats it... Simple. Regards Garry
__________________
All versions of X-Cart Been in eCommerce 10 years, Coding, PM, SEO, Social. X-Cart 11 years. IT 30+ years. Head of Web Dev for Australia's largest eCommerce 2 years. Attended conferences, Velocity 2009 US, CeBit 2009, MySQL 2010 US, Online Retailer 2010, Web 2.0 2011 US, MySQL 2012 US (Percona). Specialise in High Performance, High Volume, PHP, MySQL, HTML, CSS, JAVASCRIPT, SMARTY, MEMCACHED, APACHE, LIGHTTPD, FREEBSD, LINUX. Email your requests to xcart@gazwebtech.com |
|||||||
|
|||
X-Cart forums © 2001-2020
|