Jump to content

Lastwolf

Member
  • Posts

    210
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Lastwolf

  1. Dunno about original OP but for me

    Modules;

    Disable All In One Shipping
    Advanced shipping module that can calculate shipping based on the weight, subtotal and number of items in the order.
    1.0.24 Shipping CubeCart Limited  
    Enable Back in Stock Notifications
    Notify customers when products are back in stock
    1.0.1 Plugins Noodleman  
    Disable Cinda Skin Settings
    This extension is required for the Cinda skin to operate.
    1.0.0 Plugins Patrick Bullert  
    Disable CraftyClicks
    CraftyClicks integration
    1.0.1 Plugins Gabor Peter Suranyi  
    Disable CubeCart Security Suite
    The CubeCart Security Suite provides a number of tools to help secure your store.
    1.1.2 Plugins CubeCart Limited  
    Disable Google Analytics
    A web analytics service offered by Google that tracks and reports website traffic.
    1.0.2 Plugins CubeCart  
    Disable Google Base
    Google base product export feed
    1.0.3 Plugins CubeCart, Ltd  
    Disable Google Microdata
    Addition of google microdata to products
    1.6 Plugins Havenswift Hosting  
    Disable Google Merchant Feed
    Google merchant product export feed
    1.5 Plugins Havenswift Hosting  
    Disable Intact Sales
    Intact Custom Data Exporter
    1.0.0 External Smither Consulting  
    Disable PayPal Commerce Platform
    Accept card payment, PayPal and alternative payment methods via the new PayPal Commerce Platform for business.
    1.7.7 Plugins CubeCart Limited   phone.png
    Disable SagePay
    SagePay Payment Gateway
    1.0.12 Gateway CubeCart

     

    My Skin is a fairly editted version of Cinda at this point.

    Now that you mention it, it's either skin related or probably Crafty Clicks which was a UK postcode finder that I'm pretty sure hasn't worked in years.

    Edit: Nvm Craftyclicks is working just fine mechanically, seems that I just haven't paid my bill in a while due to cc expiry.

  2. I see this has been removed from the marketplace, what's the policy on totally abandoned skins?

    The dev appears to have totally disappeared, like the email address gets no responses, the website he links has gone. if I do the work to get it up to scratch can I release it for everybody or am I better off just starting from scratch ?

  3. probably just need to purge the cache's, I think that's what fixed this for me one time before, the custom SEO link was still using .html when the site was set to call for it. 

    If you go to Store Stetings > Search engines and change the SEO URL extension option to .html, it'll probably also work without needing a purge.

  4. Are you thinking its some sort WYSIWYG editor?

    Smarty is more like a shorthand library than anything else, instead of typing in all the code for a buy button it's  {buy_button} and it's drawing all that info from somewhere else. It does help you manipulate how things are displayed, in that it makes them compartmentalized and global when necessarily/desired.

    Using inspect element will help you visualize the changes and approximate the code changes you will need to make in the template do what you want but it's not 100% fool proof (often changing the padding sizes can cause larger changes than inspect element will do, but it's trial and error).

    It depends on the Skin, but adding {$PRODUCT.description_short} somewhere in content.product.php, you'd need to edit the code so that it's below {include file='templates/element.product.call_to_action.php'} which includes the buy box.

    I'm not using a common skin though, so I don't recall what it is for the others, but the basic principle is the same.

  5. As far as I understand it,

    Customers are fully registering in the system, getting to the payment window, entering their details and then it just "fails" from their perspective.

    Looking at my transactions logs, no attempt has been made and there is no payment failure data, so I assume it's allowing the data to be entered then it just deletes.

     

    Though I tested it and it worked fine for me.. weird. Although in my attempt I see there is cookie consent information

    IP Address Time
    Exxx uses cookies. For more detailed information about these cookies please see our privacy policy. Please accept to continue or block all non-essential cookies. xxxxx 21 Jul 2022, 11:25
    Blocked chosen. 78.xx.xxx.xx

    21 Jul 2022, 11:26

     

  6. yeah, I'm using the Paypal commerce plugin, I'm running 1.7 and 1.6.4 on two separate sites, same behaviour. Using Cubercart 6.4.5 and 6.5 (yeah, I know, super bad idea but I don't want to attempt a downgrade at this point.)

  7. Bit of a weird one I've noticed.

    There's nearly always 1 abandoned basket per day and it might be a coincidence, but I had a customer call in cause they couldn't complete the payment on their order, I investigated and I couldn't see any real reason why it wouldn't work. It got all the way to card capture.

    The only common factor I could see, is these people had all had "cookie consent" -none- on their user account, could this be affecting payment in any way and is there a work around to fix it ?

  8. There's /cache/ and /source/ in order to have the image without the size restrictions you'd need to use /source/image.jpg or use /cache/image.1000.jpg it's bound to be big enough for your largest of thumbnails 1000 is a solid of 50% of the screen on your average browser window, the css will resize it anyway for smaller sizes.

  9. I sync our inventory via a series of CSVs, which I run once or twice a day by hand.

    It's actually a rather convoluted process, where I import into a label printing software (to generate postage labels for delivery agents like Royal Mail, DPD etc). I then export from there into our warehouse management/ PoS system once they have been processed. So inventory is updated and VAT invoices are generated and logged.

    I was trying to cut out the middleman of OSOP but I had a lot of drama with Amazon mostly adding on vat when it feels like it and getting the warehouse management system to play ball with Royal Mail, they had already solved that I didn't feel like reinventing the wheel. Cubecart was relatively easy using the order exporter that Bsmither helped me with (by help I mean wrote for me).

  10. It's fine, I ask way too many questions too.

    Yeah, this goes into the source part of the document.

    Yes, you need both one is creating the "thumbnail" and one is the ...not nail ? the larger image.

    You don't need to but you can, just use as many LI's as you need as the css is making the rows anyway, Medium-block-grid-3, is defining how many there are per row in this case "4" (though iirc with padding etc it's 3). Foundation uses a grid system out of 12, you can change that number to increase or decrease the size of the thumbnail and how many you can get per row. grid-12, would be one big thumbnail and grid-1 would be 12 tiny ones (though probably less cause the images themselves take up space but in theory, I just liked the size of 3 personally. I wouldn't really mess with any grid css directly as it's used globally, you are much better using the properties as intended but both it and gallery are defined in foundation.css iirc, but again I didn't make any changes to them.

  11. <div class="columns horizontal ">
    
       <ul class="medium-block-grid-3 clearing-thumbs marg-top" data-clearing>
    
          <li><a href="/image.jpg" class="th"><img src="/image.jpg" class="image-gallery"></a></li> 
          <li><a href="/image2.jpg" class="th"><img src="/image2.jpg" class="image-gallery"></a></li> 
          <li><a href="/image3.jpg" class="th"><img src="/image3.jpg" class="image-gallery"></a></li>
    
       </ul>
    
    </div>

     

    This works to do what I "think" you want in a document on foundation, least in my test shop.

  12. Paypal starts off at 2.9% until you hit discount thresholds, though iirc it's fairly easy to hit the first few and it's like 10k per month to hit the "best" rate

    If you have a merchant account;

    Card funded payment from a user of our Terms for Payments without a PayPal account 1.2% + fixed fee

    If you don't have a merchant acocunt you might be getting slapped with higher fees?

    Most paypal transactions these days are card funded and 1.2% + 30p is cheaper than most card handlers rates.

    But even then Paypal are pretty competitive if you use them alot, if your starting off it's gonna hurt a bit fee wise. The main benefit of using them is high consumer trust due the percieved protections of the format over something like a random credit card handler. Just anecdotally, I've offered a payment gateway (Sagepay) and Paypal for years and around ~70% of my sales are Paypal. Sage or Opayo or whatever they hell they are called now are fractionally cheaper even now but it's not much.

  13. This skin hasn't been updated in a bit, my fix from june last year still hasn't been added. And now you'll get 404 errors now if you use the newer seo with no .html at the end as it's all hardcoded to html.

    It's in a bunch of places, like 6 or 7 of the templates, I went down the list and anytime you see login.html, search.html or register.html, you need to replace the .html with {$CONFIG.seo_ext}

    I was a real pain in the ass, I'd upload the files but given as it's behind a paywall to even download the skin not sure that's a great idea 😃

  14. I guess it's a weird rights issue, the developer obviously owns their own works and I've got use out of that work, then they disappear and while I can make minor changes on my own major rework is beyond my skill set.

    Like if I submitted a bug, and it goes un-updated for months what do I as someone that did a patch up fix, normally I just posted it to the thread here but, clearly that'll become a bigger issue later on and it's kinda clunky to get "third party" support from me and if I was a new purchaser I'd be mad it's "broken" out of the box.

  15. There's been a big issue with skins in general for a while now, hit and miss support from outside developers and the default cubercart ones being "out dated".

    Mobile is 50% of my traffic these days, if you don't cater to that in some way you're missing out. Alot of these older skins aren't really built with that in mind at all or at best an after thought. What is it you like about it ?

×
×
  • Create New...