eoik
Forum Replies Created
-
Hi,
Thanks for your answer, sorry for the delay.
I regularly need to deactivate the plugin, save the post, and then reactivate again.
Maybe it’s because of WordPress latest version. I don’t know.
It does not happen all the time, only from time to time.
It says:
“échec de la validation. ACF n’a pas pu effectuer la validation en raison d’un nonce de sécurité invalide.”
which i think is translated as : “ACF unable to perform validation due to an invalid security nonce”
Forum: Fixing WordPress
In reply to: no more quick edit since last wordpress upgradeHi,
I deactivates all of the plugins, none seemed to be the culprit.
Si II switched the theme : no change.
Came back to my theme (20-21): it was back ! incredible !
So I don’t really know what happened, but…. problem seems solved.
Many thanks to you all for your help !
Forum: Fixing WordPress
In reply to: no more quick edit since last wordpress upgradeOk. I’ll try that. I tried to deeactivate some of the plugins (as ACF /SCF and Classic Editor for instance) but it did not work with no result, but I’ll try all of them. I’ll let you know.
Thanks for answer.
Forum: Plugins
In reply to: [On This Day (by Room 34)] excerpts not showing when date is post dateOops, it does perfectly work, sorry, problem solved ! Thanks a lot !
Forum: Plugins
In reply to: [On This Day (by Room 34)] excerpts not showing when date is post dateOops, I tried this but it gives me the posts of the current day, not of the date of the current post.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] backend : can’t edit field in field groupThis is now solved. Actually I don’t know how and why. All of sudden it started to work again.
- This reply was modified 1 year, 1 month ago by eoik.
Forum: Plugins
In reply to: [WooCommerce] no blocks anymore since woocommerce 8.5.1Hi @doublezed2 ,
Sorry, there is a misunderstanding : I’m a not using Classic Editor since a very long time and I have normal posts with Blocks within my blog. I used to have blocks for the products until my last WooCommerce update (8.5.1).
Though, I deleted the plugin and checked once again and the problem remained.
I hope it’s clear.Regards
Forum: Plugins
In reply to: [WooCommerce] no blocks anymore since woocommerce 8.5.1Hi @shameemrezza,
Indeed, iit’s been a long time this plugin, Classic editor, has been deactivated. I should delete it.
Have a good day
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] backend : can’t edit field in field groupI did this, thanks.
Forum: Plugins
In reply to: [WooCommerce] no blocks anymore since woocommerce 8.5.1Hi,
Here you go
https://gist.github.com/veroniquemu/309b70d8c89e89fe78a3b76f36693c10thanks !
Forum: Plugins
In reply to: [WooCommerce] no blocks anymore since woocommerce 8.5.1Hi, I added this, and the problem is now solved.
function wplook_activate_gutenberg_products($can_edit, $post_type){ if($post_type == 'product'){ $can_edit = true; } return $can_edit; } add_filter('use_block_editor_for_post_type', 'wplook_activate_gutenberg_products', 10, 2);
I am still wondering why I had this problem. And how come nobody is reporting it.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] backend : can’t edit field in field groupActually, I managed to add the new field by adding it to functions.php…
see: https://www.advancedcustomfields.com/resources/register-fields-via-php/
but, i don’t know what will happen once the plugin will again function..Forum: Plugins
In reply to: [WooCommerce] WooCommerce blocks and Woocommerce Shop pageThanks @rokmeglic. I suppose it is no real problem.
I also found a kind of solution here : https://www.businessbloomer.com/woocommerce-remove-loop-shop-page/
The snippet works really fine, removes the catalog, but it also acts on the shortcodes I have used to display a category. So, not perfect yet. And it changes the css a little bit…
Quite weird, but…
I keep searching.Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Archive pagesolved. I added a date.html into the templates.
Hi @thelmachido , thank you!
I should have mentioned it, but I had tried it. the margin-left property pushed the blockquote to the left, if 60 px, then it was 60 px of the left side of the screen. That is why I ended up using :
inset-inline-start: 2em;
because of the property of the wp-block-quote class
padding-inline-start: 1em;
I don’t exactly understand how it works, but it works.