I have all the plugins.
Type: Posts; User: swguy
I have all the plugins.
This is not built in functionality. You can use a plugin to achieve this but it's not native to Zen Cart.
Check with your hoster to see if they create .htaccess files in home folders if none are present. Perhaps just creating one with the content you want would prevent this?
Should be fine with 1.5.7b.
Admin Notes. Try it. You'll like it.
In case others stumble upon this thread, there is documentation about how to work with your logo here:
https://docs.zen-cart.com/user/new_user_topics/change_header_logo/
(and on two other...
It does work with 1.5.7. As an alternative you might also consider Quick Quantity Update.
https://www.zen-cart.com/downloads.php?do=file&id=1847
Take your client's phone.
Browse to their site.
Create an icon for that URL.
Hand them back their phone, and say "there's your app."
Here's the only problem with this idea: nobody wants an app for your store on their phone. Not even your mother.
Even if they did want such a thing (which they don't), you couldn't afford the...
Fair enough. Thank you!
https://github.com/lat9/edit_orders/issues/184
The number of people who surf the web on a Kindle is vanishingly small. You can focus on the four major platforms (Apple phone and tablet, Android phone and tablet) and call it a day - no need to...
IIRC, this is still a bug in Flexible Footer.
You *should* be able to get the upgrade option if all the configuration.php file is accurate for your database - check your configuration.php file yet again.
See this article:
...
This is the support thread for the Disabled Products Report, available here:
https://www.zen-cart.com/downloads.php?do=file&id=2302
Thanks Dave. Good idea!
LOL. Note to self: do not make new code "slowness-compatible."
The expand/contract behavior of the categories sidebox would be useful for other sideboxes with nested information as well. But this code is based on the hierarchical nature of cPath variables (1,...
Perhaps consider the Payment Module Fee plugin
https://www.zen-cart.com/downloads.php?do=file&id=1487
There's a large article in the documentation site that walks you through installing a plugin:
https://docs.zen-cart.com/user/plugins/how_to_install_a_plugin/
Would it be possible to permit negative quantities to be used with the "Add Product" button, as a way of doing returns and exchanges?
Use FAX as the model.
a) If you look at zc_install/sql/install/mysql_zencart.sql, you'll see the FAX switch being created:
INSERT INTO configuration (configuration_title, configuration_key,...
I am in a subfolder of document root called demo_157a. Document root is /Users/scott/Sites/.
MacOS (BSD Unix) - Zen Cart 1.5.7a, PHP 7.2 under MAMP. (Just a test site.)
echo "-------->"...
The code you have duplicates the sitename. It yields
/Users/scott/Sites/mysite//mysite/admin/includes/languages/english/authnet_order.php
Small bug in admin/includes/classes/authnet_order.php line 28.
You have:
include DIR_FS_CATALOG . DIR_WS_ADMIN . DIR_WS_LANGUAGES . $_SESSION['language'] . '/authnet_order.php';
You...
I am available for hire to do whatever modifications you'd like. See my website for contact information.
In includes/modules/bootstrap/centerboxes/also_purchased_products.php
if $productsInCategory is not set, a PHP notice is issued. Easily fixed by adding
if (!isset($productsInCategory))...
It's really just an antibugging step. Strictly speaking in most cases (especially success path) it wouldn't be needed. You would just change
if (substr_count($_SESSION['shipping']['id'],...
The whole thing was quite confusing! But the good news is, your improvements solve this problem, so I'll get cracking on upgrading my template right away. Thanks for your hard work on making this...
Your V3 template was designed using Bootstrap 4.5.3 as a base; there is no 4.3.5.
This issue appears to be fixed in the *new* Bootstrap template (v3) - I was based off V2.
Yes - Bootstrap template with Bootstrap 4.3.1.
I have seen this a few times as well - will monitor and report back on findings.
Interesting suggestion. It might also be good to verify that $_SESSION['shipping']['id'] is not empty before checking it just to be sure.
You'd just have to add logic to sum the totals and display.
After updating to 1.5.7 and Bootstrap 4.3.1, I noticed that the checkboxes and radio buttons were doubled - see image below.
To disable this behavior I added
.custom-control-label::before {
...
Have you looked at my Boilerplate mod?
https://www.thatsoftwareguy.com/zencart_php_in_description.html
It's a set of instructions for doing this sort of thing.
It's not yet admin-controllable (will be in the next release). Right now, see step 6 in the README.txt for customization instructions.
same change but in
includes/templates/responsive_classic/css/responsive_tablet.css
(2 places again).
In includes/templates/responsive_classic/jscript/jscript_responsive_framework.php under...
You always want to use the latest and greatest release.
I love your site! It reminds me of the patterns my mom used to have around the house when I was a kid. LOL.
OK here's how to solve your problem:
edit...
Be sure to use a relative - not absolute - URL:
https://docs.zen-cart.com/user/first_steps/relative_urls/
Are you using CKEditor? Try turning it off, if so.
Also check to be sure the PHP version you are using (see Admin > Version) is compatible with your old Zen Cart version.
Compatibility matrix is...
Turn off notices. These are low priority issues that don't really affect your site.
I blame Reward Points.
The first entry per order in the OSH table is entered by the customer, not the storeowner.
In 1.5.7b, in the file includes/modules/product_listing.php, the price is set on line 110.
$lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
you could make...
Admin > Configuration > Product Listing > Display Product Price/Add to Cart, set to 0.
Ah sorry. 1.5.7 is the cart version.
It *is* in 1.5.7b. You'd have to be more explicit about what you mean by "one of the things that went haywire" for me to help you troubleshoot. Perhaps you didn't merge the CSS updates from that...
Note that this is a short term fix - when you have time, the complete fix is to update your tables to UTF8MB4 as described in this article:
...