I’m having some problems trying to extend or change a part of the Laravel Framework. Simply I cannot figure out where I can add or edit so that my changes will not be made in the vendor folder. Essentially my issue was implementing Password Reset functionality to my React/Laravel application. I use iner…
Add minutes to time based on current time
I am trying to figure out a way to change a value based on current time, currently I am using the following code to add certain minutes the time the order is placed. which is working fine (except for $minutes_to_add = 170 is only adding only 30 minutes to the current time for some reason but I am living with
How to target an array of Product IDs in WooCommerce?
I’m using the code below to change a product price to text (Contact for Pricing) when the price field is left empty: It works for one product, but I’m having trouble getting it to work for multiple products. How do I target an array of product ids? Answer For an array of product IDs use in_array()…
Why is my AJAX method sending form input to the URL?
Once a user submits their form, I want to use JQuery/AJAX to stop the page from redirecting/reloading. But what is happening, is the user data is refreshed and displayed in the URL – even though I am using the POST method! I have 2 forms on my landing.html page, but I’ll just give the coding for 1…
Shipping rates based on service custom delivery type and items total in Woocommerce
I just require a small help on displaying the correct shipping fees in my WordPress and woocommerce site. I have set my shipping fees as the following: Flat rate (Delivery): $10 Free Shipping (Free Delivery) Local Pickup (Pickup): $0 When I make an order and go onto the checkout page, it gives me the options …
Use a model (resource) attribute (accessor) with metrics in Laravel Nova
I have a MySQL table called purchases and a model called Purchase in Laravel that is related to it. My table has two columns, quantity and unit_cost. The total cost of a purchase is not a column in my table. Instead, it is defined by an accessor in Laravel that multiplies unit_cost by quantity and returns it …
Laravel streamDownload a pdf file from a guzzle request
I have setup the following method using Guzzle and Laravel’s streamDownload(): And while I have confirmed that this API does return a PDF file, the PDF being returned by laravel has 0 bytes, what am I doing wrong? Answer I was missing a echo inside the callable function:
How convert this date: “16/11/2020 12:00:00 a. m.” to “2020-11-16 00:00:00” with PHP?
Currently, I am requesting an external web service to get some important information. However, the dates this web services return me are something like this: 16/11/2020 12:00:00 a. m. So, I was in other implementations using a code like this to get the DateTime: But it throws this error: DateTime::__construct…
How to get WooCommerce product object in a custom shortcode to avoid errors
I have a function in which i am trying to get the product short description of the current product using the product id but i keep getting Uncaught Error: Call to a member function get_short_description() on bool in I have the following shortcode function where I am trying to get the product short description…
Problem with update database from API in Laravel PHP
I have a database of items, now I need to update the pictures in 10,000 records in the database, I make an API request, I receive an answer, but I just cannot process the answer correctly. I received result: And i need compare the name, and write in database icon_url value. But always i received error: Undefi…