

gongora74
Members-
Content count
28 -
Joined
-
Last visited
Profile Information
-
Real Name
Maria
-
Im not very skilled but The way I did it was I opened my PHPMyAdmin and went to the sql editor there is a tab that you enter the info above in and it will create the tables for you. I can do a step by step if needed. Maria
-
nvm found the issue was using 1.5 instead of 1.5.1
-
Hi i have a weird problem. the contribution works great on my xampp test server the moment I transfer the files to the live site I get all the underlines but when I click to change it says there is an error on the page and won't work. there is no pop up box. I used filezilla to copy the files up to my live server. any idea what could be causing it? Maria www.madewithlovebymaria.com
-
George, thanks I have it all working together except that instead of allowing me to pick from one slave item ie the size I need it sends all sizes to the shopping cart. Maria
-
Not sure if this contribution will work for me or not. Here is my issue I sell baby items and supplies to make baby items. Some of them are size specific so I would like a "master" item and list all the sizes beneath it. ie small, med large with an add to cart function of the item but only want to pick 1 size. I tried looking in the forum but don't see a fix for this. I have tested MS2 on my xampp test server and it adds all items to the cart even if I change the qty for all but one of the slaves to 0. Is there a way I can change that? if so which file would it be under? I am running SPPC, Minimum qty, QPBPP for SPPC besides the normal fedex, ups and usps modules. any help is greatly appreciated www.madewithlovebymaria.com
-
Thanks Jan didn't know there was one I will try and go back as I had the QPBPP mod first I will keep my fringers crossed. :)
-
Hi Im implementing SPPC to my store it has been modified to use Quantity Price breaks per product. I have teh following code that I am unsure how to change to finalize the install. Original code in OC from catalog product info.php around line 77 if ($new_price = tep_get_products_special_price($product_info['products_id'])) { $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; } else { $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])); } QPBPP had me change it to $pf->loadProduct((int)$HTTP_GET_VARS['products_id'], (int)$languages_id); $products_price=$pf->getPriceString(); Portion of original code SPPC wants changed $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; } else { SPPC states that it shoule be // BOF Separate Pricing per Customer if ($customer_group_id > 0) { // only need to check products_groups if customer is not retail $scustomer_group_price_query = tep_db_query("select customers_group_price from " . TABLE_PRODUCTS_GROUPS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id']. "' and customers_group_id = '" . $customer_group_id . "'"); if ($scustomer_group_price = tep_db_fetch_array($scustomer_group_price_query)) { $product_info['products_price']= $scustomer_group_price['customers_group_price']; } } // end if ($customer_group_id > 0) // EOF Separate Pricing per Customer $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>'; } else { // BOF Separate Pricing per Customer if ($customer_group_id > 0) { // only need to check products_groups if customer is not retail $scustomer_group_price_query = tep_db_query("select customers_group_price from " . TABLE_PRODUCTS_GROUPS . " where products_id = '" . (int)$HTTP_GET_VARS['products_id']. "' and customers_group_id = '" . $customer_group_id . "'"); if ($scustomer_group_price = tep_db_fetch_array($scustomer_group_price_query)) { $product_info['products_price']= $scustomer_group_price['customers_group_price']; } } // end if ($customer_group_id > 0) // EOF Separate Pricing per Customer any idea how I can implement this portion and not loose the functionality of QPBPP. Sorry I am a PHP newbie.
-
Jan, thank you when I got to /youradminfoldername/discount_categories.php ? I get the same error as when I click the link in the admin catalog panel = HTTP:500 internal server error website can not display the page. I reinstalled all changes. this was a fresh install of the mod. only one I had previously was minimum order qty. we made sure the add to the catalog/admin/includes/boxes/catalog.php was included. , we changed teh name of the files with the extension of pbpdc the only one I was unsure of is this one (can you confirm I put in correct place) admin - categories.php around line 284-288 if ($action == 'insert_product') { $insert_sql_data = array('products_id' => $products_id, 'language_id' => $language_id); $sql_data_array = array_merge($sql_data_array, $insert_sql_data); tep_db_perform(TABLE_PRODUCTS_DESCRIPTION, $sql_data_array); } elseif ($action == 'update_product') { tep_db_perform(TABLE_PRODUCTS_DESCRIPTION, $sql_data_array, 'update', "products_id = '" . (int)$products_id . "' and language_id = '" . (int)$language_id . "'"); } } if (USE_CACHE == 'true') { tep_reset_cache_block('categories'); tep_reset_cache_block('also_purchased'); } tep_redirect(tep_href_link(FILENAME_CATEGORIES, 'cPath=' . $cPath . '&pID=' . $products_id)); } // BOF QPBPP price break per category $current_discount_category = (int)$_POST['current_discount_cat_id']; $new_discount_category = (int)$_POST['discount_categories_id']; $discount_category_result = qpbpp_insert_update_discount_cats($products_id, $current_discount_category, $new_discount_category); if ($discount_category_result == false) { $messageStack->add_session(ERROR_UPDATE_INSERT_DISCOUNT_CATEGORY, 'error'); } // EOF QPBPP price break per category break; case 'copy_to_confirm': I'm not sure why it won't work.
-
Hi I've added this mod to my store. It works well as price change per product. However, I can't check to see if the updated price per category works as my link to discount_categoried.php does not work. I have added the fiz stated in 1.2.7 and still can not get it to work. Any Ideas? My Store is www.madewithlovebymaria.com Any help is greatly appreciated.
-
Freight Charges not added to PayPal Invoice
gongora74 replied to cwingard's topic in Shipping Modules
Hi I had to reinstall the paypal IPN I went with version 2.3.3 and it works fine now must have been an issue in the code as it was transfering to paypal then when the customer logged it it disapeared. -
Freight Charges not added to PayPal Invoice
gongora74 replied to cwingard's topic in Shipping Modules
It was working fine before I upgraded to the Pay Pal IPN version so I know its a coding issue just can't seem to find it. I go back to the regular Paypal one and it works so its not on paypals side. -
Freight Charges not added to PayPal Invoice
gongora74 replied to cwingard's topic in Shipping Modules
I'm having the same issue I'm using PP Ipn and USPS with out insurance. I had the regular PP addon previuosly but it stopped working one day. Maria