GeoDirectory SupportGD Compatibility Pack for Genesis released – GeoDirectory Support https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/feed Tue, 24 Feb 2026 08:00:15 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9299 <![CDATA[GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9299 Mon, 21 Jul 2014 23:38:35 +0000 Paolo Hi all,

John completed the Genesis Compatibility Pack plugin, members can download it from the download area as usual. This integration is 100% compatible with the sample child theme. Other custom child theme might require extra tweaks.

You can see a demo here: http://dropct.com/wpgd/

For free users, we’ve submitted the plugin to wordpress.org, please be patient few more days, while they review it too.

Before activating the plugin make sure to have both GeoDirectory core plugin and Genesis installed and activated.

Don’t forget to report any issue here… 🙂

Thank you!

The Team

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9491 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9491 Tue, 22 Jul 2014 22:02:33 +0000 m forbes Hi, This probably sounds like a stupid question but exactly what does this do?

Is it mostly about adding the map to the home page and the formatting associated with it? What other advantages are there for using it?

I installed plug in. Then popular categories, map and search (in this order) are on home page. I go into widgets and delete all of those but they are still showing on front end. I deactivate the plugin and the 3 listed above are no longer showing on home page. I reactivate the plugin and they are showing again, then go to widgets and no widgets are showing in the GD widget area sections (top section, etc.)… both in Firefox and Chrome..

Thanks :).

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9519 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9519 Wed, 23 Jul 2014 03:43:40 +0000 m forbes Update, glad you hadn’t answered this yet. Still would like to know what the advantages are for using the compatibility plugin though. I can see no difference with it activated or not. But to be fair, I do not have really any content yet…

Widgets showed up where they are suppose to. Very, very odd, came back a few hours later and there they were.

Thanks much

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9538 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9538 Wed, 23 Jul 2014 09:53:41 +0000 John Allsopp Hi,

This plugin places all the GeoDirectory generated content into the correct wrappers for Genesis.
It has minimal styling, which is why you may think it isn’t doing much.

The reason for this is with so many Genesis child themes available, and each one doing things slightly differently, it didn’t make sense to include lots of styling changes in the core plugin.

Changes to the styles should be made in your child theme.

We will also be building child themes which have styling included, which will work along-side the plugin.

Hope that makes sense 🙂

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9659 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9659 Wed, 23 Jul 2014 20:08:51 +0000 m forbes Thank you for the explanation John, very much appreciated.

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9682 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9682 Wed, 23 Jul 2014 21:18:11 +0000 dnosker Found a small problem…

I have set GD to use my own static home page. i.e. unchecked “Set geodirectory home page as your home”

This worked fine in my last theme. However, turning this plugin on it now included the map on my home page above all my content.

I *think* the following code in the plugin is causing this. I am just not sure how to fix it after trying different things…


// REPLACE HOME TOP SIDEBAR AFTER HEADER
function geodir_genesis_home_sidebar() {
		global $wp;
		if ( $wp->query_vars['page_id'] == get_option( 'geodir_location_page' ) || is_home() && !$_GET['geodir_signup'] ) {
        	dynamic_sidebar('geodir_home_top');
		}
}

Any ideas on how I can fix this code in the plugin?

Thanks!

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9696 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9696 Wed, 23 Jul 2014 23:04:10 +0000 John Allsopp Hi,
You should be able to disable this in your child theme by adding this line to your functions.php

remove_action( 'genesis_after_header', 'geodir_genesis_home_sidebar', 21 );

If you run into any problems, please let me know…

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9697 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9697 Wed, 23 Jul 2014 23:08:50 +0000 dnosker Unfortunately that not only removes the map from the home page but also from:

http://MySite.com/location/

I still need the map to appear on the location page.

Thanks

]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9698 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9698 Wed, 23 Jul 2014 23:15:46 +0000 John Allsopp Ok, i will have to look at maybe doing something with this, but in the meantime, you could add this to your child theme


remove_action( 'genesis_after_header', 'geodir_genesis_home_sidebar', 21 );
add_action( 'genesis_after_header', 'dnosker_genesis_home_sidebar', 21 );
function dnosker_genesis_home_sidebar() {
		global $wp;
		if ( $wp->query_vars['page_id'] == get_option( 'geodir_location_page' ) ) {
        	dynamic_sidebar('geodir_home_top');
		}
}
]]>
https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9703 <![CDATA[Reply To: GD Compatibility Pack for Genesis released]]> https://wpgeodirectory.com/support/topic/gd-compatibility-pack-for-genesis-released/#post-9703 Wed, 23 Jul 2014 23:54:07 +0000 dnosker I actually tried that exact same thing myself earlier today. But it did nothing and the map still displayed on the home page. I can only assume that GD is marking the home page with ‘geodir_location_page’ also?

]]>