Jump to content

techmistress

Member
  • Posts

    46
  • Joined

  • Last visited

Profile Information

  • Gender
    Female

techmistress's Achievements

Newbie

Newbie (1/14)

22

Reputation

  1. Well, yes - that's why I'm here. However, the gateway DOES exist, just on on CubeCart. Apparently all of the big shopping cart companies have it integrated (Shopify, X-Cart, Miva, BigCommerce, etc.). I would like someone to integrate it into CubeCart. Where is the Quickbooks connector for POS extension? Let me know if anyone can!
  2. Has anyone integrated the Quickbooks Payments / Intuit Gateway into CubeCart yet? The gateway is here. My client uses this gateway already live in his store and would like to keep the same one for his soon to be online store. Problem is... I want to use ONLY CubeCart! Any ideas?
  3. Great to know, thanks. Not too worried about it for the current upgrade of a site, just wondered if there was a change. It helps when I am telling people what type of hosting parameters they'll need to have or have access to when using CubeCart.
  4. Looking at upgrading to version 6 and just wanted to know if the newest version still passed data the same way and if I'll still need to worry about the max_input_vars limit or not. Thanks for the info!
  5. Well there you go. Opened the "Default Newsletter" template (from within admin) and added <base href="{$STORE_URL}" /> to the head of the html source code. Sometimes things are that simple. Thanks for the time and effort. SOLVED!
  6. Alright I will try to find it in the image dialogue box, then. The editor files are a bit different because they are configured for CC. The file to edit is: /includes/ckeditor/plugins/image/dialogs/image.js Once I figure the exact line to edit, I'll post.
  7. Ok, now I see. You are not understanding my question. I know where to make a template (skeleton code) and I know where to create a newsletter (Newsletters). The issue I'm speaking of is the insert images function of the editor itself. When using that button to insert an image into the newsletter or an email, it gets mailed off using the relative path (/images/mypic.jpg) and therefore is not visible when a user opens the email. I need to figure out where I can change that function to include the full server path, so the images show in the email. I realize I can do this manually on each image after it's inserted, but I'm trying to make it easy for my client. I hope that makes sense.
  8. What file would I do this in? I don't want to do it every time I create a newsletter or an email. I tried editing various files from the CKEditor, but no luck. There is no place to do this in the email templates. Forgive me if I'm not understanding the instructions.
  9. Yes, if I insert an image, and the use the source or just click the edit image button, I can add on the full url. I was just wondering where I can program it in hard code. It's a real pain to do it if my client has a newsletter with a buch of images.
  10. I am trying to use the Newsletter feature. When I add images, they only include the relative url path (/images/myimage.jpg). Where in the editor, template, cubecart, etc. can I set the path to be the full url. Without the full url, the images break in the email. I've searched for hours and can't find where to put the full url. Thanks!
  11. Alright, using the templates only, I got the option selectors to look like this: Blue (5) Red (5) Green (5) However, once the stock reduces on an option, then it shows a range display, rather than reducing that particular one: Blue (4-5) Red (4-5) Green (4-5) Anyone have a clue where to modify this? My code on the content.product template: {if $PRODUCT.stock_level && is_array($OPTIONS)} <p></p> {else} <p>{$LANG.catalogue.stock_level}: {$PRODUCT.stock_level}</p> {/if} {if is_array($OPTIONS)} <div class="options"> {foreach from=$OPTIONS item=option} {if $option.type == '0'} <div> <label for="option_{$option.option_id}" class="return">{$option.option_name}{if $option.price} ({$option.symbol}{$option.price}){/if}{if $option.required} *{/if}</label> <span><select name="productOptions[{$option.option_id}]" id="option_{$option.option_id}" class="textbox {if $option.required}required{/if}" style="width:150px;"> <option value="">{$LANG.form.please_select}</option> {foreach from=$option.values item=value} <option value="{$value.assign_id}">{$value.value_name}{if $value.price} ({$value.symbol}{$value.price}){/if} ({$PRODUCT.stock_level})</option> {/foreach} </select> </span> </div>
  12. Very sorry - I didn't communicate this right. I do not have combinations. I was trying to make my post easier, and I complicated it. I simply have single options. They are date options for classes, so it would be good to see how many "seats" are left in each class date I am using a modified stock Cubecart Skin So what I want to do is add the number available of the option next to the option in the selector itself, not above it. I want them to see it before trying to add it to the cart. Thanks again.
  13. Is there a way to display the available stock in the options dropdown/area rather than in the normal stock area? On the front end display it just says "Stock Level: 4 - 15", giving the lowest to the highest of the stock levels. It would be nice if it would show next to the option itself, like this: Large, Blue (22) This would let the customer know how many of each item is available, rather than guessing. If one of stock options is at 0, then it says Stock Level: 0-15. Thanks for the help! Using Version 5.2.1
  14. You know, I REALLY hate when I blindly miss something after searching so hard for it! I was so busy looking for gift certificates in products, I didn't even see it in settings. It's like I just started using the internet yesterday! Thanks for the very thorough answer. I'm looking forward to further development on this, but am happy with what's there now!
  15. Can someone please explain or give me a link to instructions on creating a gift certificate? In the store, there is simply a list of existing ones under coupons. The documentation files merely explain what you see on the page, not how to create one. Thanks!
×
×
  • Create New...