Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Monika in Germany

♥Ambassador
  • Posts

    4,850
  • Joined

  • Last visited

  • Days Won

    2

Monika in Germany last won the day on November 28 2011

Monika in Germany had the most liked content!

About Monika in Germany

  • Birthday 11/19/1967

Profile Information

Recent Profile Visitors

42,893 profile views

Monika in Germany's Achievements

  1. there should be a function in your currencies.php where the price is being determined for display, depending on customer status. Basically (if I recall correctly it was a bunch of if/else statements) I'd pick this apart into two different calls of the function - make a function for retail, one for wholesale, and call them accordingly, NOT looking at the session parameter but YOUR predefined ID for there status (wholesale/retail) ...
  2. though so ;-) ... I used to have an endless form for a callcenter tool a while ago (countless options to choose from) and this is waht I used/did!
  3. why don't you define a height for your div and have the rest of the rows hidden, visible by scrolling within the div?
  4. look at your file ... when you edited it, you added a second where clause instead of adding to the existing where clause! that second "where" should be an "and" where c.customers_group_id = cg.customers_group_id where
  5. your facebook page should offer the option to post new statuses/photos via email. it would be easy to have the admin of your store send a specified email to that address whenever you add a product in admin or whenever the date available matches the current date ...
  6. you can always add conditional statements to any order total module ... in this case, make it check your payment module and disable it when it's cod!
  7. hi Mat, well basically anything can be coded into shipping modules ... they are highly flexible. There are many different ways to do it and the fact that there is no downloadable add on for you does not mean it cannot be done to match your needs. Your description is a bit unclear though, you'd have to think through the system for all possible cart contents (mixed, only free stuff, only reg shipping ...) and then decide on a scenario for each of those. When you have accomplished that (without any loopholes), a new system and and a coding concept can be created ... and as always, even then, there are many ways of solving the issue.
  8. Hi Sammy,

    thanks so much for the compliments. As for a new book ... I have not promised anything yet ;-).

    regards

    Monika

  9. Hi Monika

    I love your book. It was a good send for me.

    I am wondering now that osC 3.0 is being developed and will be available soon hopefully, do you have a plan to write a book on it?

    All the best

    SaMMY

  10. the " is missing at the end of your query ... you typed the code, right? you have $manufacturers_query = tep_db_query("select distinct m.manufacturers_id, m.manufacturers_name, m.manufacturers_image from " . TABLE_MANUFACTURERS . " m where manufacturers_name <> '' order by manufacturers_name); should be $manufacturers_query = tep_db_query("select distinct m.manufacturers_id, m.manufacturers_name, m.manufacturers_image from " . TABLE_MANUFACTURERS . " m where manufacturers_name <> '' order by manufacturers_name");
  11. sure! http://www.packtpub.com/inside_

    oscommerce/book/mid/20090

    6cwe7wm

    regards Monika

  12. Hi Monika, Is your book on oscommerce hacks available electronically? I am based in South Africa so shipping costs an arm and leg!

    Thanks Karen

  13. Hi, I'm sorry, I'm helpful, but not THAT helpful. Posting in all bold is weird also. Maybe your anger - as it looks like you are angry - should be directed to the developer of that module. PM Harald to fix you up step by step.
  14. Hi Eduardo, I have not used the module before but it seems that it's a similar issue as with paypal... not returning. Either the customer has to cliock a button to return, which they don't do, or you have to specify a return url somewhere. Anyway, install this to keep you covered: http://www.oscommerce.com/community/contri...+logging+before
  15. I use this for horizontal scrolling (define the tickertext from a query first) <tr> <td class="main" valign="middle"> <marquee id="mm" direction="left" scrollAmount="4" onmouseover="java script:mm.stop()" onmouseout="java script:mm.start()"><?php echo $ticker; ?></marquee> </td> </tr>
×
×
  • Create New...