OpenCart CCBill Payment Module ★★★★

4 Stars for this plugin.

It worked, that part is true but we had to make some modifications and there were some syntax issues with the PHP. Overall though, a solid plugin for opencart and the ONLY one we found worth a darn for CCBill. We think our relationship with opencart might be over anyway, if you’re interested to know. While the system and the administration are robust, we’ve just had too many headaches and plugins are such a pain. Mainly the file structure is most problematic and we just don’t appreciate the added work in dealing with it.

We’ll be testing out prestashop instead and will have our diagnosis soon.

More Web Design Blog Content

You get 15 seconds! Web Design Trends for 2016

Mobile is in and users are becoming increasingly impatient. In 2014, 55% of users spent less than 15 seconds on a webpage according to data by Tony Haile of Chartbeat.  This means you only have 15 seconds to capture a users attention and convert a visitor to a customer.

Javascript functions, variables, objects

How JavaScript Enhances Modern Web Design and User Experience

JavaScript has transformed web design, making websites more interactive, dynamic, and user-friendly. Whether you’re running an e-commerce site, a business portfolio, or a blog, JavaScript plays a crucial role in creating a memorable user experience. In this post, we’ll explore how JavaScript can be used effectively in web

What does AI say about SEO

Let’s find out! Use relevant keywords: Start by researching and identifying the keywords and phrases that your target audience is likely to use when searching for information related to your business. Incorporate these keywords into your website’s content, including page titles, headers, and meta descriptions. Improve your website’s

What You Should be Asking

When hiring a developer, many people don’t know what questions they should be asking – if they knew, then they’d probably be doing the work themselves, right? First and foremost – ask for examples of previous projects. The surefire way to weed out the novices is to look

Review: PHP Live Chat ★★★★

4 Stars for this chat system from GNTStudio. It’s quite useful and very easy to install. We’re actually planning to use it on our own website we like it so much. They lose one star because we had to modify a bit too much to get things to

Jquery Simple Fadeout

A cute little snippet to show a simple green bar upon a successful edit. <?php if(isset($_GET[‘edit’])){ ?> <div id=’notifyy’> Edited Successfully </div>     <script type=”text/javascript”>     $( ‘#notifyy’ ).show(function(){     $(this).fadeOut(5000);     });     </script> <?php } ?> The CSS: #notifyy{width:100%;background:#2f5001;padding:4px 15px;color:#fff;} Always,