

strobotron
Members-
Content count
16 -
Joined
-
Last visited
Profile Information
-
Real Name
strobotron
-
MultiGeoZone Shipping - Disable method over certain weight?
strobotron posted a topic in Shipping Modules
Can a method be disabled for packages over a certain weight? example, we have 2 shipping methods: -Normal Post for smaller items that fit thru a mailslot -Parcel Post for larger items Once the weight is over say 250grams I want the Normal Post method to disappear all together, leaving only the option for Parcel Post ... saw something similar for another contribution that went something like this: // class methods function quote($method = '') { global $order, $cart, $shipping_weight, $shipping_num_boxes; if($shipping_weight > 250) { $this->enabled = false; return; } but don't know how to apply this to MultiGeoZone Shipping Any ideas? Thank you! -
[support]?MultiGeoZone MultiTable Shipping Module
strobotron replied to dreamscape's topic in General Add-Ons Support
Bump -- still trying to figure this out... saw something similar for another contribution that went something like this: // class methods function quote($method = '') { global $order, $cart, $shipping_weight, $shipping_num_boxes; if($shipping_weight > 250) { $this->enabled = false; return; } but don't know how to apply this to MultiGeoZone Any ideas? Thank you! -
[support]?MultiGeoZone MultiTable Shipping Module
strobotron replied to dreamscape's topic in General Add-Ons Support
Can a method be disabled for packages over a certain weight? example, we have 2 shipping methods: -Normal Post for smaller items that fits thru a mailslot -Parcel Post for larger items So say once the weight is over say 250grams I want the Normal Post method to disappear all together, leaving on the option for Parcel Post Has anyone achieved anything similar? Thanks in advance! -
nevermind, i got this sorted, thanks!
-
so had anyone succeeded in getting this to work w/ facebook (in the sense of including a product image from product info) ?
-
[contribution] Social Bookmarks - Del.icio.us, Digg, Etc
strobotron replied to sgostelow's topic in General Add-Ons Support
Any update on this yet? this sounds like a great contrib but i don't really want to install it if facebook product images aren't supported. -
Hi Bill, I'm wondering if you can advise me on this -- I'm using STS with the product info template for content. I'm trying to figure out how i can call the following information and write the following meta tag / link into the <head> of the output: <meta name="title" content="products_name" /> <link rel="image_src" href="products_image" / > Any ideas? Thanks in advance Steven
-
I have a shop with 2 different languages, I want my own customized looking menu and do not want to use the category box ... so (without using the urlcat function because i've read this is a hog of resources and also i can't manage to figure out how to make it work anyhow! haha) is there a way to link to the product categories? I thought the urlcat method would be the way because then the category names could change based on the language selection without any extra fussing. thoughts? thanks!
-
[support]?MultiGeoZone MultiTable Shipping Module
strobotron replied to dreamscape's topic in General Add-Ons Support
Okay, this is a strange questions - or maybe not. I am using the MultiGeoZone module for shipping and it works great. But within 1 shipping zone I have one shipping charge where additional tax is NOT supposed to be added and another shipping charge for the same zone where tax IS supposed to be added. Is there a way to achieve this in MultiGeoZone? Any suggestions would be greatly appreciated! Thanks! -
NEW! Complete Order Editing Tool!
strobotron replied to jhilgeman's topic in General Add-Ons Support
This did work -- but when i changed the code as suggested, for whatever reason the edit_order screens have lost their formatting -- almost as if whatever css was applied before is not working now ... any ideas? -
Is there a way to select the default language of the initial PayPal screen that your customers are brought to? It defaults to whatever language is the default for the country YOUR PayPal business account is registered in -- how can I change it to English? Any feedback is appreciated. thank you!
-
Does anyone know how to change the language preference of the page that your paypal customers are intitially redirected to? my business account is in the Netherlands but I want the PayPal page to be in English. PayPal's advise was as follows: "To change the prefered languages on your website, you can implement the following lines into your HTML code. We are aware that there were some issues and hope that you can solve them with this help. <input type="hidden" name="cmd" value="_ext-enter"> <input type="hidden" name="redirect_cmd" value="_xclick"> <input type="hidden" name="lc" value="US"> Please let me know if you need further assistance." But i'm not sure what page or where I would insert this to make it work... any ideas?
-
my main problems with this otherwise great contribution are: gift text box --- it's written into the code, but for whatever reason doesn't work, if gift wrap is selected the customer should be able to enter a gift message. defaults to 'gift wrap' selected instead of 'no gift wrap' if anybody has work arounds for these, please post :)
-
[Contribution] More_pics_6 v1.1 For osC 2.2 MS2
strobotron replied to surfalot's topic in General Add-Ons Support
righto ... sorted. Thank you for your help. -
[Contribution] More_pics_6 v1.1 For osC 2.2 MS2
strobotron replied to surfalot's topic in General Add-Ons Support
I installed more_pics V 1.2 and it works great -- except after installing and modifying the files as per the instructions i am getting the following error when trying to access the product attributes area in oscommerce admin screen. "Fatal error: Call to undefined function: link_get_variable() in /home/www/eggmerca/catalog/admin/products_attributes.php on line 17" this is what is on lines 15-20 // >>> BEGIN REGISTER_GLOBALS // These variables are accessed directly rather than through $HTTP_GET_VARS or $_GET later in this script link_get_variable('option_page'); link_get_variable('value_page'); link_get_variable('attribute_page'); // <<< END REGISTER_GLOBALS also, on the main admin screens the headings all say "BOX_HEADING"_(+whatever the heading is) any idea where i may have messed up?