

ricko27
Members-
Content count
17 -
Joined
-
Last visited
Profile Information
-
Real Name
rick
-
I currently have MVS installed with around 10 vendors. How do you go about setting up Flat Rate shipping PER ORDER as opposed to just flat rate shipping per individual vendor? Here's a scenario: Customer adds 3 items to their cart, 1 item from Vendor A, another from Vendor B and another from Vendor C Flat rate shipping is set up for each of these vendors. When the user views the shipping page during checkout they see a flat rate shipping amount for EACH of the vendors, not a flat rate amount for the entire order. How do you go about enabling a flat rate amount for the entire order as opposed to each individual vendor? Thanks! -Rick
-
[Contribution] Cross Sell (X-Sell) Admin
ricko27 replied to dreamscape's topic in General Add-Ons Support
When I go into the admin of xsell and try to update a product I receive the following error: Fatal error: Call to undefined function: rdel() in C:\Domains\domain.com\wwwroot\admin\xsell.php on line 42 I checked out both filenames.php within the admin/includes directory and the function is defined define('FILENAME_XSELL_PRODUCTS', 'xsell.php'); Any idea what could be causing the problem? -
Having some issues where after I added the following code to my includes/footer.php page Google Analytics still isn't able to recognize the code. I even viewed the source within the browser and it was there, but still nada from Google's end. Any idea? Tracking code not verified Check Status
-
We've got the MVS all setup and running now (after about 3 months of tweaking)...now we ran into an issue where say the customer orders 5 products, 1 product from 5 separate drop shipped vendors...the problem is all the orders are coming out on one packing slip. Is there a way (or a module that exists) to have each vendor's products print out on a separate packing slip? Thanks, Rick
-
Where would the edit_orders_ajax.php file be located in the admin folder?
-
Found the code, if I wanted to just not include that tax reference what would I remove?
-
Thanks, I'll give it a shot!
-
I'm wondering what I need to edit in order to remove the 'total without tax' line from the email. Here's an example: Price Per Item - $31.77 Total Without Tax - $31.77 Total Including Tax - $31.77 Also, what file would I need to edit? Thanks!
-
Experiencing a strange problem on the admin/orders.php file. If an order comes through with 4 product each being sold from a separate vendor and I click on the button marked 'packing slip' I see the ship/bill to address info but nothing as far as the specific products. Example is: Payment Method: Authorize.net Shipment Number 2 of 4 Anyone else experience this problem? Anyone know how to fix it? Here's the code that cycles through the products that doesn't appear to be working. <?php $package_num = sizeof($order->products); $box_num = $l + 1; for ($i=0, $n=sizeof($packslip_products); $i<$n; $i++) { echo ' <tr class="dataTableRow">' . "\n" . ' <td class="dataTableContent" valign="top" align="left">' . $packslip_products[$i]['qty'] . ' x ' . $packslip_products[$i]['name']; if (isset($packslip_products[$i]['packslip_attributes']) && (sizeof($packslip_products[$i]['packslip_attributes']) > 0)) { for ($j=0, $k=sizeof($packslip_products[$i]['packslip_attributes']); $j<$k; $j++) { echo '<br><nobr><small> <i> - ' . $packslip_products[$i]['packslip_attributes'][$j]['option'] . ': ' . $packslip_products[$i]['packslip_attributes'][$j]['value']; echo '</i></small></nobr>'; } } ' <td class="dataTableContent" valign="top" align="left">' . $packslip_products[$i]['spacer']; echo ' </td>' . "\n" . ' <td class="dataTableContent" valign="top">' . $packslip_products[$i]['spacer'] . '</td>' . "\n" . ' <td class="dataTableContent" valign="top">' . $packslip_products[$i]['model'] . '</td>' . "\n" . ' </tr>' . "\n"; } ?>
-
Hey Jim, Looks like you're another fellow Washington'ian ;) Quick question, I'm trying to get the MVS module installed and having some difficulties. Do you have the most up to date package release by chance? Contributions section is only showing the latest file release being Nov '06. http://www.oscommerce.com/community/contributions,4129 Thanks, Rick
-
'On The Fly' Auto Thumbnailer using GD Library 2.1
ricko27 replied to mloeffen's topic in General Add-Ons Support
I'm experiencing the same sort of chunkiness on my site after installing the 'On the Fly' Auto Thumbnailer using GD Library...how abouts did you fix it? Thanks! -Rick -
[Contribution] Ultimate SEO URLs - by Chemo
ricko27 replied to Chemo's topic in General Add-Ons Support
I just installed 2.1d...keep getting 404 errors on product detail pages though. I have my files installed on the root of my domain...htaccess file reads: # $Id: .htaccess,v 1.3 2003/06/12 10:53:20 hpdl Exp $ # # This is used with Apache WebServers # # For this to work, you must include the parameter 'Options' to # the AllowOverride configuration # # Example: # # <Directory "/usr/local/apache/htdocs"> # AllowOverride Options # </Directory> # # 'All' with also work. (This configuration is in the # apache/conf/httpd.conf file) # The following makes adjustments to the SSL protocol for Internet # Explorer browsers <IfModule mod_setenvif.c> <IfDefine SSL> SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 </IfDefine> </IfModule> # If Search Engine Friendly URLs do not work, try enabling the # following Apache configuration parameter # AcceptPathInfo On # Fix certain PHP values # (commented out by default to prevent errors occuring on certain # servers) # #<IfModule mod_php4.c> # php_value session.use_trans_sid 0 # php_value register_globals 1 #</IfModule> Options +FollowSymLinks RewriteEngine On RewriteBase / RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-m-([0-9]+).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-([0-9]+).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-t-([0-9]+).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-([0-9]+).html$ article_info.php?articles_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-([0-9]+).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-([0-9]+).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-i-([0-9]+).html$ information.php?info_id=$2&%{QUERY_STRING} -
Installed ultimate seo and now all of our product urls, category/sub-category urls are resulting in 404 errors. Any idea? Thanks, Rick