Giri

Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 2,661 total)
  • Author
    Posts
  • in reply to: coupon code issue! #225501

    Giri
    Expired Member
    Post count: 3155

    I have just followed your steps. But i don’t see any coupon options in stripe while processing payments.

    Could you explain that coupon parts too?

    Thanks

    in reply to: Supreme Directory Theme Questions #224077

    Giri
    Expired Member
    Post count: 3155

    Hi there, I have created a separate settings for copyright section.

    https://github.com/GeoDirectory/directory-starter/pull/12/commits/d66debb6e8256d845ffdfb30d023ebf8007d3b1f

    It will be available in next version of Directory Starter.

    Thanks

    in reply to: Supreme Directory Theme Questions #224047

    Giri
    Expired Member
    Post count: 3155

    I’m working on separate settings for copyright section. will let you know once i’m done.

    Thanks

    in reply to: Supreme Directory Theme Questions #223989

    Giri
    Expired Member
    Post count: 3155

    3) Where do I go to add taglines and images to individual cities? I don’t see anything in the Location Manager.

    There was a bug in supreme. This has been fixed 3 days back.

    https://github.com/mistergiri/supreme-directory/commit/660edc63661343428f4df99da93cb424ade8f9e4

    You need to Edit SEO settings in location manager and add your tagline Image tagline field.

    in reply to: coupon code issue! #223984

    Giri
    Expired Member
    Post count: 3155

    can you help me understand how your process payments with stripe without running through GD?

    in reply to: Supreme Theme Mobile Left Widget Area #223945

    Giri
    Expired Member
    Post count: 3155

    You are welcome roman 🙂

    in reply to: Supreme Theme Mobile Left Widget Area #223848

    Giri
    Expired Member
    Post count: 3155

    @paolo, that social login hook we added earlier is only for desktop login box.

    @roman

    Use my code at the end of supreme’s functions.php file and customize according to your needs. If you are using wordpress social login, then most probably my code would work.

    
    
    remove_action('dt_before_site_logo', 'dt_add_mobile_gd_account_menu');
    add_action('dt_before_site_logo', 'custom_dt_add_mobile_gd_account_menu');
    function custom_dt_add_mobile_gd_account_menu()
    { ?>
        <div class="dt-mobile-account-wrap"><a href="#gd-account-nav"><i class="fa fa-user"></i></a></div>
        <div id="gd-account-nav" >
            <div >
                <?php if (class_exists('geodir_loginwidget')) {
                    the_widget('geodir_loginwidget', 'mobile-login-widget', array('before_title'=>'<strong class="mobile-login-widget-title">','after_title'=>'</strong>'));
                }
                // your custom code starts here
                // if you are planning to insert social login buttons, then most likely you are looking for this code
                echo "This is a test output";
                do_action('login_form');
                // your custom code ends here
                ?>
            </div>
        </div>
        <?php
    }
    in reply to: Damaged Image #223833

    Giri
    Expired Member
    Post count: 3155

    Please refer this reply, follow the steps.

    https://wpgeodirectory.com/support/topic/maps-not-showing-on-detail-page/#post-223302

    Once you are done, post your FTP details. i’ll apply the patch.

    If its not urgent, you can wait few days till we release new version.

    Thanks

    in reply to: Listing Details Format #223802

    Giri
    Expired Member
    Post count: 3155

    I have no idea why you want to ruin your site design by moving there.

    But it makes you happy, here is how you should do it.

    File: /wp-content/themes/supreme-directory/functions.php

    Add the following code at the end.

    
    
    
    function sd_custom_geodir_detail_page_sidebar_content($array) {
        if(($key = array_search('geodir_detail_page_more_info', $array)) !== false) {
            unset($array[$key]);
        }
        return $array;
    }
    add_filter('geodir_detail_page_sidebar_content', 'sd_custom_geodir_detail_page_sidebar_content');

    File: /wp-content/themes/supreme-directory/inc/geodirectory-compatibility.php

    Around line no: 880

    Replace this line

    
    
    
    echo '<div class="sd-detail-cat-links"><ul>';

    with

    
    
    geodir_detail_page_more_info();
    echo '<div class="sd-detail-cat-links"><ul>';
    

    Warning: You will lose your changes if you update the theme.

    Thanks

    in reply to: change default buddypress links #223789

    Giri
    Expired Member
    Post count: 3155

    Hi there,

    I have applied some code in your x theme functions.php file. If you update the theme, modifications will get lost.

    So try to use a child theme.

    For future reference, this is the code added by stiofan and me.

    
    
    
    function goto_login_page() {
    $login_page = home_url( '/gd-login/' );
    $page = basename($_SERVER['REQUEST_URI']);
    
    if( $page == "wp-login.php" && $_SERVER['REQUEST_METHOD'] == 'GET') {
    wp_redirect($login_page);
    exit;
    }
    }
    add_action('init','goto_login_page');
    
    add_filter('bp_get_signup_page', 'gd_custom_bp_get_signup_page');
    add_filter('bp_get_activation_page', 'gd_custom_bp_get_signup_page');
    function gd_custom_bp_get_signup_page($page) {
        $login_page = home_url( '/gd-login/' );
        return $login_page;
    }

    Let me know if you found any problem.

    Thanks

    in reply to: Installation #223350

    Giri
    Expired Member
    Post count: 3155

    Hello Brian, You need to contact “Ultimate Member” support for this issue.

    You need to modify events data according to their requirements before you upload.

    Or Upload event data first, and then activate “Ultimate member” addon.

    Thanks

    in reply to: Maps not showing on Detail Page #223325

    Giri
    Expired Member
    Post count: 3155

    Applied the fix.

    Check now and let us know if you face any problem.

    Thanks

    in reply to: Maps not showing on Detail Page #223317

    Giri
    Expired Member
    Post count: 3155

    No problem paolo..

    I have switched to whoop and tested in my local. Map was broken with latest GD. I believe everyone who uses whoop with latest GD would have the same problem. So I asked stiofan to release a new whoop version.

    Thanks

    in reply to: Maps not showing on Detail Page #223314

    Giri
    Expired Member
    Post count: 3155

    Please post your credentials, I’ll apply the fix.

    I have to apply some code in your website. otherwise it will not work

    in reply to: Maps not showing on Detail Page #223302

    Giri
    Expired Member
    Post count: 3155

    Hi there, looks like recent Google Maps API requirement broke whoop static maps.

    I have fixed the problem.

    Please post your credentials, I’ll apply the fix.

    It worked for me earlier because

    1) Go to map image URL directly in browser to see what’s going on – map displays.
    2) Map displays correctly in site due to browser cache.

    Please note, you still have to enable “Google Static Maps API” in your google API console since Whoop depends on it.

    Follow these steps

    1) I do hope you have already created Google API keys for GD. If not complete the steps mentioned in this page. https://wpgeodirectory.com/docs/add-google-api-key/
    2) Visit this URL https://console.developers.google.com/apis
    3) Overview -> Google APIs -> Google Static Maps API -> Enable (Refer screenshots)

Viewing 15 posts - 1,951 through 1,965 (of 2,661 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount