etejada
Forum Replies Created
-
Why isn’t it very? As they said in the link I initially shared,
fr
is valid CSS. In fact, all the CSS I’ve written is valid. In the case of the link I shared, they acknowledged it as a bug and fixed it. Why is it different now?The consequence is that I can’t use the CSS in a pattern I’ve created, with 6 columns, with valid CSS if I place it in a separate file. And it’s code I commonly use to manage column responsiveness in mobile views.
Hello! Thank you very much for your attention. I have tried your advice but without success. I am sharing the form with you.
Hi! Yes, we have that option selected. This is the screenshot of those options we have configured (sorry, but we have it in Spanish).
https://pasteboard.co/YFmNCFh4mKQr.pngWe have the version 1.31.0?
Sure, here the url: https://fuxionabrokers.com/luz-y-gas
The first field is required. However, it is allowed to move forward without answering it.Forum: Plugins
In reply to: [Packlink PRO shipping module] High CPU usageWe have the same problem in my web. I too deactivate the plugin
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Recent Update Cause ErrorThat way, (delete and reinstall), I won’t lose the forms I’ve created?
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Recent Update Cause ErrorIs there a patch? I don’t see any update available for the plugin. The latest version is 3.18.14 (the one that’s causing the error)
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Recent Update Cause ErrorIs there a patch? I don’t see any update available for the plugin. The latest version is 8.18.14 (the one that’s causing the error).
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Recent Update Cause ErrorHere is the same. Updating to version 3.18.14 shows an error that it cannot find several files:
- wp-content\plugins\acf-frontend-form-element\main\frontend/forms/classes/submit.php
- wp-content\plugins\acf-frontend-form-element\main\frontend/forms/classes/display.php
- wp-content\plugins\acf-frontend-form-element\main\frontend/forms/classes/validation.php
Forum: Plugins
In reply to: [WooCommerce] Api rest (php): images of deleted products remain823/5000
I have tried to apply the solution exposed in the url that you have added (https://wordpress.stackexchange.com/questions/286780/did-i-do-it-right-deleting-images-after-deleting-product-woocommerce) but the query to the database, to find the post related to the product, comes out empty.$args = [ 'order' => 'ASC', 'post_mime_type' => 'image', 'post_parent' => (int) $productId, 'post_status' => 'inherit', 'post_type' => 'attachment', ]; $child = get_children($args);
I have created the products as indicated by the REST API documentation but in the field “post_parent” it is always empty (and therefore the search necessary to obtain the attachment does not work).
Forum: Plugins
In reply to: [WooCommerce] Api rest (php): images of deleted products remainThanks for your answers.
I have a doubt. If I need to use the wordpress rest API, what is the use of the deletion using the woocommerce REST API (https://woocommerce.github.io/woocommerce-rest-api-docs/?php#delete-a-product)?Forum: Plugins
In reply to: [WooCommerce] Api rest (php): images of deleted products remainWhy dont using the Api Rest (https://woocommerce.github.io/woocommerce-rest-api-docs/#delete-a-product)? is it a bug of that?
- This reply was modified 5 years, 10 months ago by etejada.