GeoDirectory SupportTwo Meta Descriptions – GeoDirectory Support https://wpgeodirectory.com/support/topic/two-meta-descriptions/feed Thu, 18 Sep 2025 17:24:05 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7130 <![CDATA[Two Meta Descriptions]]> https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7130 Wed, 02 Jul 2014 07:40:35 +0000 James Buttons Hi,

Since installing GeoDirectory I have become aware of two meta description fields in my header. I deactivated the plugin and it disappears so its definitely the cause. The other meta description is being generated by Yoast SEO plugin and this is the one I want to use.

Can you tell me in which GeoDirectory plugin file I can comment out the code that generates the extra meta description?

]]>
https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7131 <![CDATA[Reply To: Two Meta Descriptions]]> https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7131 Wed, 02 Jul 2014 08:00:33 +0000 directory I noticed that too and I don’t even have Yoast activated on my site yet.

]]>
https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7140 <![CDATA[Reply To: Two Meta Descriptions]]> https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7140 Wed, 02 Jul 2014 09:36:36 +0000 Vikas Hi,

Plz put these lines of code in ur child theme functions.php file.




add_action('init' , 'geodir_remove_meta_tags');
function geodir_remove_meta_tags()
{
	remove_filter('wp_head' , 'geodir_add_meta_keywords') ;
}

]]>
https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7640 <![CDATA[Reply To: Two Meta Descriptions]]> https://wpgeodirectory.com/support/topic/two-meta-descriptions/#post-7640 Mon, 07 Jul 2014 03:30:40 +0000 James Buttons Cheers, that worked perfectly.

]]>