Full service web hosting, great prices and support. Starts at $1.99/month!

View Poll Results: New Forum for Completed/Testing Site Reviews

Voters
13. You may not vote on this poll
  • Yes - Would be interesting

    13 100.00%
  • No - Get enough flaming from the clients!

    0 0%
Page 1 of 3 123 LastLast
Results 1 to 10 of 23

Thread: New Site Review Forum - any interest?

  1. #1
    osCMax Development Team

    New Site Review Forum - any interest?

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Question New Site Review Forum - any interest?

    All,

    I always like to look at what other people have done with osCmax ... which mods they have installed, design ideas, layouts etc. ... and I was wondering if it might be worth having a thread where you can post your site url and ask for feedback/testing etc?

    A bit like the welcome to osCmax fourm ... Thoughts?

    Regards,
    pgmarshall
    _______________________________

  2. #2
    osCMax Developer


    New Site Review Forum - any interest?


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default Re: New Site Review Forum - any interest?

    That is what the introduce yourself forum is for... Start your own thread about yourself, sites, etc. Then just add to your thread when you add new sites, etc.

  3. #3
    osCMax Development Team

    New Site Review Forum - any interest?

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Red face Re: New Site Review Forum - any interest?

    Okay ... but ...

    It is just I have never seen anyone post their site there!

    I just thought that it might be useful to people who want to research osCmax and see what is possible to find example sites in one place - a bit like the oscommerce site where you can see the live sites bit.

    Happy either way.

    Regards,
    pgmarshall
    _______________________________

  4. #4
    osCMax Developer


    New Site Review Forum - any interest?


    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    23,134
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    michael_s     $ 10.00
    Rep Power
    597


    Default Re: New Site Review Forum - any interest?

    If we get enough yes votes, I will add a new forum. I think 20 yes votes in your poll would be enough to get me off my butt and make a new forum.

  5. #5
    osCMax Development Team

    New Site Review Forum - any interest?

    ridexbuilder's Avatar
    Join Date
    Jul 2008
    Location
    Haggisland
    Posts
    4,164
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    ridexbuilder     $ 15.00
    Rep Power
    99


    Default Re: New Site Review Forum - any interest?

    [Slip me a tenner pgm ]

    Developers resource at bitbucket
    *** *** ***
    oscmax.co.uk / ejsolutions.co.uk
    Hosting plans with installation, configuration, contributions, support and maintenance.
    *** FREE osCmax hosting available ***
    oscmaxtemplates.com

  6. #6
    JohnW
    Guest


    Default Re: New Site Review Forum - any interest?

    PGM, It sounds like a good idea and I've found some things you've done on cottonbarn.info interesting and I've been studying it a little. Particularly your shopping cart and + and - quantity adjustments among others. I decided to get back on track with my color dropdown that I started 3 years ago after I noticed yours, but I've hit a snag. Did you use the manufacturers option and just change it to color or did you add fields?

  7. #7
    osCMax Development Team

    New Site Review Forum - any interest?

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Smile Re: New Site Review Forum - any interest?

    JohnW,

    I simply changed the manufacturers to colours since I only have one manufacturer ... I did also manage to install a mod called Manufacturers2 which allows you to add multiple 'manufacturers' which you can obviously change to Size, Colour, etc. However, RC4 was then released so I scrapped the site and started again.

    The install did work though ... I think it would be a nice addition to the osCmax source code ... perhaps with some admin control (not in current install)

    What do you want to do with the shopping cart? I am currently trying to extend the code for this to mimic this site (www.diy.com) with the expand and hide functionality.

    The + and - buttons is a couple lines of javascript ... If you want this I will post the code plus some instructions in another thread.

    Regards
    pgmarshall
    _______________________________

  8. #8
    JohnW
    Guest


    Default Re: New Site Review Forum - any interest?

    I figured that is what you had done with the manufacturers and that's what I was doing, but I realized I would have issues with items that have color choices. I'll check out the manufacturers2 contribution.

    Mainly on the shopping cart I like functions without having to press update or the Enter key and the + - functions. The contributions I've seen all have some aspect I want to avoid.

    I kind of analyzed your site and quickly tried your + - functions but I must be missing something because it wouldn't work but I did not work at it very long. Is there something besides the javascript?

  9. #9
    osCMax Development Team

    New Site Review Forum - any interest?

    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    3,517
    Contribute If you enjoy reading the
    content here, click the below
    image to support our site.
    Click Here To Contribute To Our Site

    Total Contributions For

    pgmarshall     $ 35.00
    Rep Power
    81


    Smile Re: New Site Review Forum - any interest?

    JohnW,

    There is nothing other than javascript for the plus minus code.

    It is not my code but the javascript is as follows:
    Code:
    function TextBox_AddToIntValue(targetId,addToValue)
    {
        var input = document.getElementById(targetId);
        var textInt = parseInt(input.value);
        if(isNaN(textInt))
        {
            textInt = 0;
        }
        input.value = textInt + addToValue;
        if (input.value <= 0) {
            input.value = 0;
        }
    }
    and in the product.info.tpl.php page

    Code:
                    <!-- ADDED PLUS AND MINUS BUTTONS PGM -->
    
                    <script type="text/javascript" src="javascript/plusminus.js"></script>
                        <td class="main" align="right" width="250">
                                <table width="200" border="0" cellpadding="0">
                                      <tr height="0">
                                        <td width="25"></td>
                                        <td width="25"></td>
                                        <td width="150"></td>
                                      </tr>
                                      <tr>
                                        <td align="center"><img src="<?php echo DIR_WS_IMAGES .'icons/plus.png' ?>" onclick="TextBox_AddToIntValue('product-quantity-{{product.id}}',+1)" /></td>
                                        <td rowspan="2" align="center"><input name="quantity" type="text" class="moduleRow" id="product-quantity-{{product.id}}" " style="text-align:center" onkeyup="changeQty('field');" value="1" size="2" maxlength="2" /></td>
                                        <td rowspan="2" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td>
    </td>
                                      </tr>
                                      <tr>
                                        <td align="center"><img src="<?php echo DIR_WS_IMAGES .'icons/minus.png' ?>" onclick="TextBox_AddToIntValue('product-quantity-{{product.id}}',-1)" /></td>
                                      </tr>
                                  </table>
                    
    
    
                    <!-- ADDED PLUS AND MINUS BUTTONS PGM -->
    Hopefully this works for you.

    Regards,
    pgmarshall
    _______________________________

  10. #10
    JohnW
    Guest


    Default Re: New Site Review Forum - any interest?

    There are a couple glitches in that html but even with that corrected It doesn't work for me, but I'm pretty sure it's due to my application_top being different from yours. I had experimenting with a drop down menu for qty in the past year which worked but i forgot about. Then when I went back to it on current version oscmax it didn't work. Is your application_top current? Look around line 422 and tell me if yours is like this
    PHP Code:
    // customer adds a product from the products page
    // BOF: MOD - QT Pro
    //    case 'add_product' :    if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id'])) {
    //                              $cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $HTTP_POST_VARS['id']))+1, $HTTP_POST_VARS['id']);
          
    case 'add_product' :    if (isset($HTTP_POST_VARS['products_id']) && is_numeric($HTTP_POST_VARS['products_id']) && ($HTTP_POST_VARS['products_id']==(int)$HTTP_POST_VARS['products_id'])) {
            
    $attributes=array();
            if (isset(
    $HTTP_POST_VARS['attrcomb']) && (preg_match("/^d{1,10}-d{1,10}(,d{1,10}-d{1,10})*$/",$HTTP_POST_VARS['attrcomb']))) {
              
    $attrlist=explode(',',$HTTP_POST_VARS['attrcomb']);
              foreach (
    $attrlist as $attr) {
                list(
    $oid$oval)=explode('-',$attr);
                if (
    is_numeric($oid) && $oid==(int)$oid && is_numeric($oval) && $oval==(int)$oval)
                  
    $attributes[$oid]=$oval;
              }
            }
            if (isset(
    $HTTP_POST_VARS['id']) && is_array($HTTP_POST_VARS['id'])) {
              foreach (
    $HTTP_POST_VARS['id'] as $key=>$val) {
                if (
    is_numeric($key) && $key==(int)$key && is_numeric($val) && $val==(int)$val)
                  
    $attributes=$attributes $HTTP_POST_VARS['id'];
              }
            }
            
    $cart->add_cart($HTTP_POST_VARS['products_id'], $cart->get_quantity(tep_get_uprid($HTTP_POST_VARS['products_id'], $attributes))+1$attributes);
    // EOF: MOD - QT Pro 

Page 1 of 3 123 LastLast

Similar Threads

  1. No interest or monthly price and text
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 01-02-2009, 12:01 AM
  2. No interest or monthly price and text
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 12-31-2008, 06:00 PM
  3. forum mod?
    By winkscustoms in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 06-29-2005, 04:30 PM

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •