Zougou
Forum Replies Created
-
Thanks for your answer. Of course I do understand priority level for fixing bugs.
If I can avoid to load yoast panel tab, I suppose this error won’t show up anymore.
Can I adapt core file /src/integrations/third-party/elementor.php to prevent the loading of yoast panel ?
/** * Registers our Elementor hooks. */ public function register_elementor_hooks() { if ( ! $this->display_metabox( $this->get_metabox_post()->post_type ) ) { return; } \add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'init' ] ); // We are too late for elementor/init. We should see if we can be on time, or else this workaround works (we do always get the "else" though). if ( ! \did_action( 'elementor/init' ) ) { \add_action( 'elementor/init', [ $this, 'add_yoast_panel_tab' ] ); } else { $this->add_yoast_panel_tab(); } \add_action( 'elementor/documents/register_controls', [ $this, 'register_document_controls' ] ); }Found this : https://wordpress.org/support/topic/trying-to-get-property-post_type-of-non-object-9/
Seems to be relative to my problem by updating page/post with Elementor
Hi Maybellyne,
I just updated Yoast to 17.3 and the PHP error still occurs.
If it’s not possible to disable Yoast Elementor Inetgration, can you please tell me which lines of core files I should put in comment to avoid loading Yoast Elementor Panel ?I don’t know if this is relative, but I also got some PHP errors when exporting Yoast settings :
Warning: Undefined array key 0 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 1 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 2 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 3 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 4 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 5 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 6 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 7 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128 Warning: Undefined array key 8 in /xxx/mysite.fr/wp-content/plugins/wordpress-seo/admin/class-export.php on line 128Hi !
Thanks for your video. That’s really strange, the preview is not working for me.
I add shortcode widget with [SSB] + Apply + Update page
=> preview : text “[SSB]” is displayed
I refresh the frontend elementor page
=> preview : nothing, blank spaceI tested native shortcode [gallery], and preview works fine.
WP and Elementor are up to date / running PHP 8.0
I’ll post a ticket on your support forum
Have a nice day !Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Google Fonts category not recognizedThanks Geoffrey for confirmation 🙂
Have a nice day !Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Google Fonts category not recognizedThanks jarnovos for your explanations.
I’m using this plugin https://wordpress.org/plugins/juiz-social-post-sharer/.
Described as “Totally GDPR compliant”. I’ve checked cookies and didn’t find any relative to Nobs share buttons.
So I’m guessing I don’t have to check this box, and no need to modify Cookie Policy.Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Google Fonts category not recognizedThanks, it works perfectly now.
Could you advise me on what to do if I have share buttons (twitter and linkedin) please ?
I only have share buttons, no iframes content from social networkShould I check these ? https://ibb.co/KFTNkkW
Regards
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Custom location – change form styleHi,
Thanks for your answer, that’s what I thought.
Yes it will be great to have this opportunaty of styling form with shortcode insertion.
Have a nice day !Forum: Plugins
In reply to: [Co-marquage service-public.fr] Erreur suppression pluginMerci pour votre retour
Forum: Plugins
In reply to: [Co-marquage service-public.fr] Erreur suppression pluginBonjour,
Pourriez-vous m’indiquer si la nouvelle version du plugin est prévue pour cette semaine encore, ou bien plus tard ?
MerciForum: Plugins
In reply to: [Co-marquage service-public.fr] Erreur suppression pluginMerci beaucoup !
Bonne fin de journée,
ChristelleForum: Plugins
In reply to: [Co-marquage service-public.fr] Erreur suppression pluginC’est noté je vous remercie.
Si je fais une suppression en dur du plugin, je présume que les données dans la base de données ne seront pas supprimées.
Si j’attends votre prochaine mise à jour du plugin (pour pouvoir supprimer le plugin), est-ce que les données dans la base de données seront-elles bien supprimées ?- This reply was modified 5 years, 4 months ago by Zougou.
The constant AIOSEP_VERSION isn’t anymore defined in all_in_one_seo_pack.php file, that explains why the conditonnal if() sould be removed.
For people searching how to remove AIO SEO HTML comments, here’s the hook :
add_action('get_header', function() { ob_start( function($o) { return preg_replace('/\n?<.*?One SEO.*?>/mi','',$o); } ); }); add_action('wp_head', function() { ob_end_flush(); }, 999);Thanks again @arnaudbroes for your help 🙂
- This reply was modified 5 years, 5 months ago by Zougou.
Just found out that if I remove the conditionnal
if (defined('AIOSEOP_VERSION')) {}
the code works…Thanks for your answer @arnaudbroes
Unfortunately, this doesn’t work either