GeoDirectory Support » All Posts https://wpgeodirectory.com/support/forum/directory-starter-theme/directory-starter-v2-beta/feed Sun, 14 Dec 2025 00:02:13 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543336 <![CDATA[Reply To: Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543336 Sat, 02 May 2020 04:55:15 +0000 Alex Rollin 2. OK, if you would like us to take a look, reply with a link.

You can also send this info in to our new email support system:

https://wpgeodirectory.com/support/

]]>
https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543301 <![CDATA[Reply To: Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543301 Fri, 01 May 2020 01:31:16 +0000 orange 2-No map appears anymore. But at the moment I’m not interested in maps. I give priority to content.

]]>
https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543297 <![CDATA[Reply To: Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543297 Thu, 30 Apr 2020 23:10:23 +0000 Alex Rollin 1 Maps are added with shortcodes or Blocks. Did you try adding one of those?

2 Is that what is happening now? Can you share a link so we can check the issue?

3. https://wpgeodirectory.com/docs-v2/addons/location-manager/

4 GD works with 4 levels – country – region – city – neighbourhood – thse can differ by country but much depends on the Map API.

]]>
https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543292 <![CDATA[Reply To: Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-543292 Thu, 30 Apr 2020 21:25:52 +0000 orange Hello,
I am using the Starter Child theme. I have installed the Location Manager plugin. I have the following queries:
1-I deactivated the map and now I can’t find where it activates again.
2-When I was active, the same map appeared, of the same city, in all the listings.
3-Location Manager where do you have your documentation?
4- I am interested in my website being organized with the following locations: country– administrative region (lander, state as in USA, autonomous community) –comarca (each region is separated into comarcas) –city — is it possible ?
Cheers

]]>
https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-542664 <![CDATA[Reply To: Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-542664 Sun, 26 Apr 2020 18:03:13 +0000 orange Thank you. I really like the plugin and the themes.

]]>
https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-542408 <![CDATA[Reply To: Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-542408 Fri, 24 Apr 2020 22:18:10 +0000 Alex Rollin You can make a child theme from DS or choose one of our child themes here:
https://wpgeodirectory.com/downloads/whoop/
https://wpgeodirectory.com/downloads/supreme-directory/

]]>
https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-542366 <![CDATA[Consultation of Starter]]> https://wpgeodirectory.com/support/topic/consultation-of-starter/#post-542366 Fri, 24 Apr 2020 18:24:04 +0000 orange Hello,
Nice job! I installed Starter. I would like to know if I need a template or a children’s theme. And if so, where do I find it?
Cheers

]]>
https://wpgeodirectory.com/support/topic/add-icon-in-directory-starter-header/#post-530773 <![CDATA[Reply To: Add icon in Directory Starter header]]> https://wpgeodirectory.com/support/topic/add-icon-in-directory-starter-header/#post-530773 Mon, 17 Feb 2020 10:37:24 +0000 Nicolas Antoine Thank you Naveen for the feedback, I will try with that.

]]>
https://wpgeodirectory.com/support/topic/add-icon-in-directory-starter-header/#post-530761 <![CDATA[Reply To: Add icon in Directory Starter header]]> https://wpgeodirectory.com/support/topic/add-icon-in-directory-starter-header/#post-530761 Mon, 17 Feb 2020 09:13:58 +0000 Naveen Giri Hi Nicolas,

If you want to customise header file of directory starter theme.
you can create a child theme and place the header.php file there with custom code.
https://developer.wordpress.org/themes/advanced-topics/child-themes/
https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/

so even after directory starter theme update. you will not lose the code.

we already have two hooks, see if you can use them



function my_icon_in_header() {
 ...
}
add_action( 'dt_before_header', 'my_icon_in_header' );
add_action( 'dt_after_header', 'my_icon_in_header' );

Thanks

]]>
https://wpgeodirectory.com/support/topic/add-icon-in-directory-starter-header/#post-530759 <![CDATA[Reply To: Add icon in Directory Starter header]]> https://wpgeodirectory.com/support/topic/add-icon-in-directory-starter-header/#post-530759 Mon, 17 Feb 2020 09:03:31 +0000 Nicolas Antoine Hello Naveen,

I have recover this piece of code which includes the woocommerce shopping cart icon in the header :

    if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
         $count = WC()->cart->cart_contents_count;
        ?>cart->get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php
        if ( $count > 0 ) {
            ?>
            <span class="cart-contents-count"><?php echo esc_html( $count ); ?></span>
            <?php
        }
                ?><?php

I place it in the Directory Starter HMTL (header) and it is working well. Now to prevent this piece of code to disappear when Theme will update, I would like to move the function into a PHP Snippet.

function my_icon_in_header() {
 ...
}
add_action( 'directory_starter_header', 'my_icon_in_header' );

Do Directory Starter header has a hook like do_action( ‘directory_starter_header’ ); ?

]]>