

rocket468

-
Content count
52 -
Joined
-
Last visited
About rocket468
- Birthday 01/12/1979
Profile Information
-
Real Name
chance mcclurkin
-
Gender
Male
-
Location
oklahoma city
- Website
Recent Profile Visitors
6,335 profile views
-
UPSXML returns incorrect pricing from UPS
rocket468 replied to muellerizedsales's topic in Shipping Modules
Yea i been racking my head on this for some time. If i click on the negoated rates i don't even get a responce when i have my site set to show the rates after adding items to cart.. If anyone knows the fix i would apreciate it. -
this is what your going to want. http://addons.oscommerce.com/info/5519
-
I put the java that suposta go in forum_check.js in my body.js and it fixed it. I guess my site does not use the forum_check.js
-
I just installed this mod here https://www.alcohol-injection.com/account/create.html but my page does not reload when you change the country. I have to hit enter for it to change the state box. Any help would be apreciated. IN java console i get refresh_form not definded
-
I think the contrib could use a touch up. What I would like to see is the ability to click installed for each mod. Then when someone updates it would email people. Maybe integrate the forum thread and the mod a little more. Auto create a thread with each new contrib and link the two? I like how http://www.vbulletin.org/forum/ does this. You know when stuff is upgraded. But i do like how oscommerce does keep old versions of mods.
-
Still trying to trouble shoot why its not worken for my site. When i view souce i notice this is the ver last output line. anyone have any ideas? <b>Fatal error</b>: Call to undefined function tep_image_button() in <b>/home/dvldoc/public_html/rss.php</b> on line <b>164</b><br />
-
I need to mess with my admin section more, mine always defaults to clicked :) But in the database its self all my products have the value of 1 wouldn't this comand ALTER TABLE products ADD products_to_rss TINYINT default '1' NOT NULL; make them all active ?
-
Anyone have an idea what i did wrong with my feed http://www.alcohol-injection.com/rss.php I am not getting any of the items to show up.
-
I was curious if anyone knows how to make a list of words that will not show up for the tagcloudlike mod listed here http://www.oscommerce.com/community/contri...search,tagcloud
-
I use chemos mod atm. And the biggest draw back to it that i see is. If you change your products name, or a website shortens your url it . it does not 301 to the current url set. So you end up with duplicate content. I hope you follow me. Does this mod work the same way? Is it possable to have more than 1 url to the same product? Thought i would ask before going thur the trouble of switching.
-
Need css help, getting extra spaceing bottom of divs
rocket468 replied to rocket468's topic in Templates and Images
Woops i put this in the wrong forum, can someone please move to i guess general support. Where ever you feel is best. -
Need css help, getting extra spaceing bottom of divs
rocket468 posted a topic in Templates and Images
My site is www.alcohol-injection.com When using Ie6 not sure about 7 I am getting extra paddding or margin etc at the bottom of some of my divs. Anyone have any ideas or possable fixes? -
Catagorys name and x words of catagory description in product description
rocket468 posted a topic in Templates and Images
hello, What i am wanting to do to my product description is to have the title of the product listed which of course the product description already does, but under that i want to label what category it belongs to and then x number of words of the catagory descriptions. anyone have any idea what the variables are? -
I am looking for this fix too. Thanks for any help.
-
Fancier Invoice & Packingslip v1.0
rocket468 replied to PopTheTop's topic in General Add-Ons Support
If i take this out it works. if (tep_not_null($order->info['cc_number'])) { $this->cc_card_number_less_middle_digits = substr($order->info['cc_number'], 0, 4) . str_repeat('x', (strlen($order->info['cc_number']) - 8)) . substr($order->info['cc_number'], -4); ?> <td> <b><?php echo ENTRY_PAYMENT_METHOD; ?></b> <?php echo $order->info['payment_method']; ?> (<?php echo $order->info['cc_type']; ?>)<br><?php echo tep_draw_separator('pixel_trans.gif', '100%', '6'); ?><br> <b><?php echo ENTRY_PAYMENT_CC_NUMBER; ?></b> <?php echo $this->cc_card_number_less_middle_digits; ?></td> <?php } else