Adobe help center bot problems

Hi hopefully you guys can help me I’m having a problem where I have an Adobe help center bot widget, don’t even know how it got activated on my store. The problem is actually this displays on top of everything on the admin dashboard causing issues with Js.

does anyone know how to disable this or turn it off it seems to be running on an iframe ?

I’m running magento 2.4.6 CE

submitted by /u/Enough_Bat_3401
[link] [comments]

Product Options Popup

I would like to try to replicate the add-to-cart experience of weathertech.com, in that for any product that requires additional information (to ensure vehicle compatibility for example), a popup appears with illustrations that explain the question being asked. For some products, there are multiple questions asked that are broken up into several slides in the popup (Does your vehicle have a floor shifter? Next question in a new slide: Does your vehicle have floor mat retention clips? and so on). Is there a word for this type of checkout flow that I can seach the web more effectively to learn how I might achieve this on Magento? I am hoping there exists a third party module to expand to this functionality

https://www.weathertech.com/cadillac/2014/cts-v/cargo-liner/

submitted by /u/tulsadrones
[link] [comments]

Attempting to install Magento via Docker on Windows 10

I am very new to docker as well as WSL2 so it is very possible I am overlooking something rather obvious. I am trying to install Magento on my Windows 10 machine using https://github.com/markshust/docker-magento.
I have “successfully” installed it on Ubuntu 22.04 using WSL2. However, my instance of docker in WSL2 seems to be completely independent and unique from that of Docker Desktop on my windows 10 machine. Running the “docker ps” command in powershell shows nothing under the headers whereas running it in WSL2 will show what I installed. After installing the container from the github link, you should be able to access a testing environment using https://magento.test. This works just fine using lynx within WSL2 but I cannot access it in a browser on my Windows machine.
It is worth mentioning that when I installed the docker engine, I installed it solely in the WSL2 environment by following the documentation for Ubuntu 22.04. I also installed the container to the Windows file system using the /mnt folder.

submitted by /u/CreepiestDog
[link] [comments]

Experiences working for agencies?

I worked previously with a nightmarish magento agency, they had constant high rotation and provided no added value as they just gave all the work to devs with no experience without any direction or knowledge base to consult.

I’m thinking of never attempting magento development again in the future as this was just hell, how are your experiences working for magento agencies?

submitted by /u/TheLeader7Up
[link] [comments]

How to do a 301 Redirect for Deleted and Disabled products?

Hello,

I am sure this is built in feature to magento 2.4.5.? But I have no idea how to use it. It is further confusing because the products I want to redirect are in multiple categories. Is it possible for me to pick the category to redirect it to?

Any step by step guide? I tried a few times and failed.

Can we still 301 redirect if we delete the product?

I have to do this for SEO purposes, as some of these products have backlinks.

submitted by /u/Technasium
[link] [comments]

How long would you expect setup:di:compile to take?

I appreciate it’s not something that needs to be run all the time, but when switching between Laravel and Mage for example it does blow my mind how long certain dev tasks can take.

– Macbook pro 16gb quad core
– 14gb assigned to Docker
– Running https://github.com/swiftotter/den
– Commerce Edition 2.4.2

bin/magento setup:di:compile will take around 50 seconds…is that normal?

submitted by /u/mr_acronym
[link] [comments]

Error SoapFault: Invalid Credentials

Anyone experience this issue before? This just started happening. No changes to the backend.

When trying to invoice an order this error appears:

SoapFault: Invalid Credentials

when checking out and trying to purchase this error appears:

Internal Error. Details are available in Magento log file. Report ID: webapi-64777d94e2ad6

I did a search and this is what I got:

grep -r “webapi-64777d94e2ad6” var/var/log/exception.log:[2023-05-31 17:02:12] main.CRITICAL: Report ID: webapi-64777d94e2ad6; Message: Invalid customerInternalId {“exception”:”[object] (Exception(code: 0): Report ID: webapi-64777d94e2ad6; Message: Invalid customerInternalId at /var/www/M2/html/vendor/magento/framework/Webapi/ErrorProcessor.php:208, SoapFault(code: 0): Invalid customerInternalId at /var/www/M2/html/vendor/ze ndframework/zend-soap/src/Client.php:1166)”} Not sure what credentials it’s to.

Not sure what credentials it needs

submitted by /u/ravioliisgood
[link] [comments]

Backorder with suffix at end of order id

I thought there was a way when not shipping an order in full, the remaining lines would end up moving to a new order id with a suffix. Order 100 would become order 100-1. For example, if I sell qty 100 of an item, but only have 50 in stock. I’d like to ship the 50, invoice the 50, show the order as paid, and a new order “ordernumber-1” be open. Thanks for any input.

submitted by /u/tonyopfl
[link] [comments]

If UPS Quotes Broke…..

I just ran into an issue where UPS quotes stopped working… I assumed the issue was the method for quotes and confirmed…

From StackExchange:
From UPS: “The Quick Cost Calculator Data Stream (QCC DS) Rating Tool on ups.com (URL= http://www.ups.com/using/services/rave/qcostcgi.cgi has been completely sunset. This tool was in place prior to the Calculate Time and Cost (CTC) tool which was place into production in 2012.
Thread: https://magento.stackexchange.com/questions/367131/in-magento-2-the-ups-integration-stopped-working-did-the-gateway-url-change

If you are running into an issue where you are no longer getting quotes from UPS this is likely the issue. Apparently this took effect yesterday.

submitted by /u/johndiesel11
[link] [comments]

Issues with custom import of orders

I am following the tutorial Create a custom import entity . However, instead of importing learning courses as shown in the tutorial, I’m attempting to import orders.

To adapt the tutorial for orders, I made the following changes:

- const TABLE = 'learning_courses'; + const TABLE = 'sales_order'; and “` – protected $validColumnNames = [ ‘entity_id’, ‘name’, ‘duration’ ];

  • protected $validColumnNames = [ ‘entity_id’, ‘state’, ‘status’, ‘coupon_code’,…]; “`

After making these changes, I encountered an issue where the $bunch variable still holds the old CSV data, even when using a CSV file adapted to the sales_order attributes: $bunch = $this->_dataSourceModel->getNextBunch()

i tried adding $this->_dataSourceModel->cleanProcessedBunches(); before the while loop, this change successfully updates the data for the first iteration, but subsequently, the back office freezes.

I would appreciate any insights or suggestions on how to resolve this issue.

submitted by /u/reddituser6o
[link] [comments]