Show Posts


Messages - kavlito

Pages: [1] 2
1
Recently, customers have been calling because they cannot create an account due to reCAPTCHA Human verification has failed! Please try again. error message. I've had this problem exactly 2 years ago and created new keys and it resolved the problem. However, this time it is not.

I assume that something changed on Google's end. I currently have to leave human verification turned off just to receive orders.

What can be done?

Thanks in advance.

2
Support / Re: Order status and their meanings
« on: November 09, 2021, 01:10:28 PM »
Careful with just renaming statuses. Changing meaning, does not change functionality. Some statuses are closely tide up with system functionality.

This is what I came here to find out. Can someone please explain which statuses are tied to system functionality with details?

Thanks.

Anyone???

Is there any documentation that details which statuses are tied to system functionality, and which ones are freeform?

3
Customization help / Re: Convert Invoice to Packing Slip
« on: November 09, 2021, 12:46:00 PM »
I also made a modification to admin\view\default\template\responses\sale\order_invoice.tpl so that it will initiate auto print when you click on the Invoice icon (now the Packing Slip Icon).

In the Chrome browser it's great because it pops up a print preview.

Using auto print increases efficiency as it is one less step in the production process for my employees.

Place the following code at the end of the file (see attachments):

<!--  mod to auto print -->
<script language="JavaScript">
window.print();
</script>

4
General Support / Re: Contact Us Page
« on: November 09, 2021, 11:17:08 AM »
Greetings,

Where do I edit the Contact Us PAGE (not the Contact us info on the footer).  The Contact Us page has a Contact Form built in.  I would like to update/add some content on this page - where do I find it to edit?

Thanks!

storefront/view/(yourtheme)/template/pages/content/contact.tpl

5
I've tried this on my custom template, and it doesn't work. Any other suggestions?

Thanks.

6
Support / Re: Memory Limitation error
« on: May 27, 2020, 06:05:25 AM »
My server shows the PHP memory limit set to 128MB.

Abantecart PHP info shows 32MB?

7
I am in the process of converting from Zencart, so I am using the latest 1.2.16.

8
Apache Litespeed

9
I've been seeing this App Error message, but everything seems to be working OK. Is this something I as an end user need to troubleshoot, or is this a programming issue?

I am converting from Zencart and have migrated all of my data and testing to go live soon. So far everything is testing OK.

Thanks.

10
Support / Memory Limitation error
« on: May 26, 2020, 05:09:19 PM »
I've had this Memory Limitation error ever since I installed v1.2.15 last month. My PHP memory limit is set at 128MB.

I upgraded to v1.2.16 today and the message re-appeared. However, everything is running smoothly.

Do I need to do anything about this?

Thanks.

11
Support / 'SEO URLs does not work' error after upgrading to v1.2.16
« on: May 26, 2020, 05:06:01 PM »
I received the 'SEO URLs does not work' error message after upgrading to v1.2.16 today (from v1.2.15). However, it seems that it is still working OK as all of my pages have the appropriate friendly URL's.

My cart is currently in development with a go live this coming weekend. Would like to know if I need to worry about this.

Thanks.

12
How-to questions / Randomize Featured Products Listing
« on: May 13, 2020, 09:50:51 AM »
I use the Featured Products listing on my homepage. However, the display order is static and I prefer it to be random.

This can be easily accomplished by adding one line to this file: /storefront/view/*mytemplate*/template/blocks/product_list.tpl

Insert: shuffle($products);
between: $icount = 0;
and: foreach ($products as $product) {

See attachment.

Enjoy!

(one caveat: this does not work with HTML Cache enabled - Update 5/26/20 - this statement is moot as of v1.2.16 as HTML Cache has been deprecated)

13
Extensions and Add-Ons / Re: Extension for customised products
« on: May 12, 2020, 09:05:45 AM »
There is a product from a company named Lumise. https://www.lumise.com/platforms

They have a PHP version that I will be contacting them about integrating. Maybe they can create into an Extension???!!

A friend of mine uses the WordPress version for his custom t-shirt site and it is pretty impressive. Although, I have yet to see the PHP version.

Cheers!

14
Extensions and Add-Ons / Extra Tabs Extension Location Modification
« on: May 11, 2020, 09:00:05 PM »
Product descriptions on my site were lengthy due to redundant details for each product. So I purchased the Extra Tabs Extension and problem solved!

The only issue I had was that the extra tabs I created were placed at the end of all the baked in tabs such as Description, Reviews, Tags, etc. I needed my extra tabs to be right next to the Description tab.

To solve this, I made one simple change to /storefront/view/*mytemplate*/template/pages/product/product.tpl.

I moved <?php echo $this->getHookVar('product_features_tab'); ?> up between $tab_description and $review_status - see attachments.

Works perfectly!

15
Customization help / Re: Convert Invoice to Packing Slip
« on: May 11, 2020, 03:57:37 PM »
Thank you.

I found the file: admin/controller/responses/sale/invoice.php

I made the following changes between lines 141 & 151: commenting out 'price', 'total' & $total_data lines
And with your language change, I now have a Packing Slip with no prices!

Code: [Select]
                    $product_data[] = array(
                        'name'     => $product['name'],
                        'model'    => $product['model'],
                        'option'   => $option_data,
                        'quantity' => $product['quantity'],
                        //'price'    => $this->currency->format($product['price'], $order_info['currency'], $order_info['value']),
                        //'total'    => $this->currency->format_total($product['price'], $product['quantity'], $order_info['currency'], $order_info['value']),
                    );
                }

                //$total_data = $this->model_sale_order->getOrderTotals($order_id);

Pages: [1] 2

Powered by SMFPacks Social Login Mod