Jump to content

roflmyeggo

Members
  • Posts

    353
  • Joined

  • Last visited

3 Followers

Profile Information

  • Activity
    Freelancer

Recent Profile Visitors

7,931,412 profile views

roflmyeggo's Achievements

  1. Solved it by changing order status to valid order. The combinations won't show unless the order is considered valid. Watch out for custom order statuses.
  2. Hi everyone, For some odd reason for some customers in the customer views I can see the product combinations under "purchased products" section but for some customers it just shows the product name. This is true for the same products for different customers. Sometimes the combinations are showing up and sometimes not. Any ideas?
  3. Hi @pxloft and @evolution.x, I am interested in this as well. Were you able to figure out how to achieve this?
  4. Just checking in to say I had no luck with the module either on 1.6.0.9. I switched over to regular cron from cPanel. Cheers, eggo
  5. Hi Nemo, It is just the built in referrer system in 1.6.x I am using the base url (http://mydomain.com) but I am not sure if it will capture from the www. version of the domain as well. I'm hoping this captures all traffic coming from the domain as affiliate traffic.. but I am not sure 100% sure that it will. Unfortunately the documentation isn't very clear on the usage.
  6. Bump. Can anyone help me out on this? The documentation is unclear on this matter.
  7. Hi everyone, I am looking to add a referrer URL for an affiliate program in 1.6.x. I am unsure if I should put the fully qualified url in the included field or, for example if the domain is http://www.mydomain.com/ then I should put %mydomain% or just the actual url itself?
  8. Nice hack dedric, thanks for posting it! And defuzed, good call on the (window).load function - thanks for your help!
  9. Hi Thomas, I am looking to do the same - did you have any luck with this?
  10. Hi Bill, Good to see you around here still posting. If I check the "hide from customers" option then all products that are out of stock will appear just to be in stock right? One client of mine does not want the customers to know that an order is out of stock. Thanks, eggo
  11. Hi CritieroNet, Thanks for the query - works well! I'm wondering if you know how to modify the query to have the combination quantity available for each combination? I tried adding p.quantity but that did not work. EDIT: I figured out the query for anyone interested: SELECT p.id_product, pl.name, GROUP_CONCAT(DISTINCT(pal.name) SEPARATOR ",") as combination, p.price, pa.reference, pq.quantity FROM ps_product p LEFT JOIN ps_product_lang pl ON (p.id_product = pl.id_product) LEFT JOIN ps_category_product cp ON (p.id_product = cp.id_product) LEFT JOIN ps_category_lang cl ON (cp.id_category = cl.id_category) LEFT JOIN ps_category c ON (cp.id_category = c.id_category) LEFT JOIN ps_product_tag pt ON (p.id_product = pt.id_product) LEFT JOIN ps_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN ps_product_attribute_combination pac ON (pac.id_product_attribute = pa.id_product_attribute) LEFT JOIN ps_stock_available pq ON (p.id_product = pq.id_product AND pa.id_product_attribute = pq.id_product_attribute) LEFT JOIN ps_attribute_lang al ON (al.id_attribute = pac.id_attribute) LEFT JOIN ps_attribute_lang pal ON (pac.id_attribute = pal.id_attribute) WHERE pl.id_lang = 1 AND cl.id_lang = 1 AND p.id_shop_default = 1 AND c.id_shop_default = 1 GROUP BY pac.id_product_attribute
  12. I found the solution. Changing the div with shopping_cart class to a different class worked. But it doesn't work unless you edit the class prior to loading the page (you can't change it in Web Inspector) because the javascript will have already acted on the div. Hope this helps someone.
  13. I am really not sure where to look. I was looking in ajax-cart.js but I couldn't find the right lines to edit. Also those changes would not be theme specific so not ideal. Anyone tackled this one before?
  14. Hi edanto, Did you ever decide on a solution? If so how is it working for you?
×
×
  • Create New...