Marie-Aude
Forum Replies Created
-
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] RGPD complianceThank you very much for your quick feed back !
Finally found the relevant option a few tabs after.
You should link to this option on your “essential tab” where we define default email
You should not recommend to send all email through MailPoetForum: Plugins
In reply to: [Pastacode] Shortcodes don’t work in version 3Same problem for me. And the existing pastacode is transformed into gibberish
Forum: Plugins
In reply to: [Easy Table of Contents] Last update resulted in plugin deactivation“assist you to fix issue ASAP!”
The “issue” is fixed by reactivating the plugin.
“Can you please kindly check once if it’s due to any plugin conflict?” How would I ? Do you want me to roll back all the updates I made ? That’s not serious !
“Based on the user’s requirement” well then how come that the requirement to work properly in taxonomy terms archives is still not there ? Work properly means taking into account the titles included in the term description …Thank you ??
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Media Alt text disappear with UI modulesIt does ?? thanks a lot
Forum: Plugins
In reply to: [Advanced Custom Fields: Extended] Media Alt text disappear with UI modulesThanks for the quick feed back !
I actually managed to keep the enhanced ui and the alt field by commenting line 45 in ui-attachment.php
It’s a quick and dirty fix, but it’s ok for the time waiting for the next patchForum: Plugins
In reply to: [Easy Table of Contents] Use for taxonomy descriptionThe taxonomy description is the basic wordpress field that you see in any term under the slug (and the parent is the taxonomy is hierarchical). It is called in many themes templates with term_description that you can modify just like the content, with a filter “term_description”
Just standard WP features ??
Forum: Plugins
In reply to: [Easy Table of Contents] Use for taxonomy descriptionHi, thank you
Well the issue is simple ?? you say in your plugin description that you take only into account “the_content”.
The link I put in my first message is a taxonomy archive with a long text with headers. I would like to display automatically the table of content (have a widget for that in the sidebar) but it does not work, which is normal : the headers are in the term_description not the_content(I have activated the content type taxonomies and even inserted the shortcode in the taxonomy description, but it just can’t work)
So, what is the filter I can use to add the table of content to the taxonomy description ?
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Exclude elements from sitemapsslapface, feel stupid ?? Thanks
Forum: Plugins
In reply to: [Yoast SEO] update seo title and meta description programmaticlyHi, I had the same question and I found a “hidden answer” as the documentation is not on Yoast website :
https://gist.github.com/amboutwe/0c71e42aa164238007d7ea88f174a93fHi @nithin
Yes I would like to exclude an array of terms ID from the sitemap.
My process is to have all taxonomies marked as “index” and “include in sitemap”, and then apply some logic to filter some terms in noindex (using wds-taxonomy-meta-wds_noindex).
And I would like to exclude these same terms from the sitemap.
I had a look at the hook, and it seems it includes the array of terms provided. Which is exactly the opposite of my process. Or did I misunderstand ?
Kind regards
Thank you. I already asked the question to the support on your website and they directed me here.
Kind regardsWell my problem is a question about “how to”, not a bug neither a feature request. I went to GitHub but I’m not sure it’s the right place.
Me again
I googled the filter mce_external_plugins and I found this discussion on GitHub
https://github.com/elementor/elementor/issues/11504When I commented line 752 in elementor\core\editor\editor.php
remove_all_filters( 'mce_buttons', 10 ); remove_all_filters( 'mce_external_plugins', 10 );
I got all my buttons back.
So it’s not a conflict, it’s not a bug, it’s a “feature” that equals to a kind of bug, as it removes functionalities.
I corrected it by assigning a priority to my filters, so that they are executed after yours.
This seems to be a hidden function as even you did not think about it. So it would be nice to document it ?
Second point : I can modify my own plugins without any problem, but what happens if I need a button from another plugin ? Is there a filter or a hook I can use to override yours ?