Perhaps I'm missing something obvious, but other than the order of elements in the array (which the order_total class doesn't care about: it only cares about the names of the index keys, not their...
Type: Posts; User: DrByte
Perhaps I'm missing something obvious, but other than the order of elements in the array (which the order_total class doesn't care about: it only cares about the names of the index keys, not their...
1. What's the difference between each of these separate domains?
2. What's the business plan that makes "duplicate content" beneficial?
3. Why not just redirect each domain-name to the "main"...
That is correct.
When the ask-a-question mod was adapted into core code, products_id was intentionally changed. Thus, all the places where ask-a-question features are implemented require the same change.
While...
Products/attributes/categories/customers/orders/coupons/banners/ etc are all stored in the database, not in PHP files. The PHP files are used to perform the logic for reading/writing with the...
v157b does work on PHP 8, but will trigger some warnings/errors in the logs. While they're mostly benign, they can be alarming/confusing.
v157c (not yet released as of today, (no ETA yet), but all...
This page from the online docs talks about some known issues associated with GoDaddy's unique approach to hosting: https://docs.zen-cart.com/user/email/external_smtp_servers/#godaddy-hosting-plans
Like I said in my reply to your other post on this same issue:
It's not affecting everyone. If it's a "bug", then it's a bug on your site.
Feels like something amiss with alterations made to your...
It's not affecting everyone.
Feels like something amiss with alterations made to your template, eg tpl_product_info_display.php (assuming you're using Product General, adapt filename for other...
Thanks @carlwhat. We'll probably need to hard-code that into core.
@Philibel what MySQL version are you using?
When I used the forum search for "recaptcha" this came up:
https://www.zen-cart.com/downloads.php?do=file&id=1455
Linda,
Thanks for sharing these details!
If you could "wave a wand" and have it work "your way", what would the ideal flow look like with guest checkout?
You talked about wanting them to "have...
Does editing line 740 of functions_general like this help?
$field_length = (int)zen_field_length($tbl, $fld);
I'm wondering:
- Is it because the amount is so low? ie: under 1.00 when the tax portion is separated out for PayPal's calculations?
- How is the log different when using "PayPal" vs "Payflow-UK"?
What he means is:
SELECT SUM(op.products_quantity) * 40 AS quantity
and $test_total2->fields['quantity']
You wrote:
$test_total=$db->Execute($test_sql);
I think you're not posting the line that's actually triggering the Catchable error.
You're probably doing something else with $test_total...
If you enable logging for the module, what's in the PayPal-CURL-xxxxx.log file generated by the transaction attempt? The actual details being transmitted should appear there. What's the amount of...
https://docs.zen-cart.com/dev/code/database_querying/
You previously had some centering things in there. I didn't mention them, nor tell you to remove them, as they were working fine. But if you removed them then that would explain the change.
Your stylesheet.css lines 97 and 111 reference #headerWrapper.
Replace this:
background: url(../images/yourheaderimage.jpg) no-repeat;
with this:
background-image:...
"extra"?
You mean for "related products"? Those images are from actual products, so when you update those products' images that section will be updated accordingly.
I'll add that as mc12345678 mentioned, you could also use FTP to do the replacement of the image files, if you already know the filenames.
I think you've customized the header nav and the mobile nav in a way that combines them into the same div instead of them being separate, else it wouldn't show on desktop mode.
You might be specifying the wrong path to the image, since the stylesheet is in the css directory and "../" means "go up one level", so you're basically asking it to look in ...
Those are the primary images for products (as opposed to the "medium" and "large" versions of the images). Sometimes referred to as "thumbnails".
(I didn't catch your meaning of "preview" because...
What's a "preview" image?
Zen Cart doesn't create/send that image.
I suspect that that's being inserted by Outlook/Hotmail/Yahoo as a "preview" of the linked site, and is deriving it from your store's metatags which are not...
GlorifyApp is designed to help storeowners create stunning product images, aligned with your business's branding.
They're currently running a lifetime-deal promotion at a great savings level:...
/editors/ckeditor/config.js
Extra sanitization is applied to the "first" comment on any order. This is in case the customer enters anything malicious in it, so that it can't negatively harm your store.
Subsequent comments are...
If the actual define_xyz.php file contains the edits you made, but the updated content doesn't display when customers visit your web store, then it would seem that the old content has been cached...
You REALLY need to upgrade ASAP. It's as simple as updating a handful of files.
You didn't say which "display" of reviews you're talking about.
If it's on the product page, you'll need to edit this query:...
Two alternatives of which I'm aware, but unfortunatly have no meaningful experience with, are Reward Points (free plugin) and another by TwitchToo (commercial).
Excellent.
Contemplating some adjustments for v158
In the admin split-page-results class, does changing to "strrpos" instead of "strpos" solve the immediate issue?
eg:
$pos_from = strrpos($query_lower, ' from', 0);
Okay.
My other points stand: a comparison should reveal what's different from original code, where the original code does work, thus leading you to a solution to your presenting problem.
Fair, but I think lat9's query was an expression of willingness to test it, and potentially make it compatible or at least supported.
Just sayin ... lat9 isn't going to be able to inspect or identify any possible issues without access to that mod's code. Contact her by PM with a copy of the code for inspection. I'm sure she won't...
I'm guessing that if your 156 site has references to 157-only stuff in it, that your other problems might be related to other changes that came in 157 but which you haven't replicated in your 156?
...
"lack of apostrophes"? Care to elaborate? Perhaps with logs and examples?
I suppose if you didn't want to add any other currencies you could just do the conversion by hand and specify [NNN:GBP] where NNN is the equivalent already converted to GBP.
One side-effect to...
Edit your /YOUR_ADMIN_DIR/includes/configure.php (make sure it's not read-only, before trying to edit)
and make sure that your HTTP_SERVER and HTTPS_SERVER entries' values BOTH start with https...
Update:
This edition lets you deny checkout if the customer hasn't sufficient total in their cart to meet the threshold.
Setting the Zone Definition's description to [135:GBP:Deny] would...
There's a lot more going on in the split_pages class than just the ORDER BY part that I mentioned. It was one example of why it does what it does.
You said you were trying to resolve a GROUP BY...
If there are a million results, then it is more performant to exclude a few parts of the query unrelated to counting. For example, a sort is expensive and unnecessary when just trying to determine...
Correct.
It doesn't restrict orders from being placed.
It auto-determines whether the amount in the cart is over the specified threshold after doing currency-conversions, so that it doesn't...
I think I've found a way to do it, with an Observer class and a special "description" pattern on the Zone Definition: [999:ZZZ]
1. Create normal Tax Rates and Tax Classes and Zone Definitions
2....
Assuming you're referring to https://www.zen-cart.com/downloads.php?do=file&id=1784
1. The empty-except-for-[Close Window] popup for Shipping Estimator is a consequence of a fatal PHP error...
No, you can't retrieve category information from that table, because that table doesn't contain those details.
In fact, none of the "order"-related tables contain anything related to the category...