Giri
Forum Replies Created
-
AuthorPosts
-
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
Hi there, I have created a separate settings for copyright section.
It will be available in next version of Directory Starter.
Thanks
I’m working on separate settings for copyright section. will let you know once i’m done.
Thanks
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.
can you help me understand how your process payments with stripe without running through GD?
You are welcome roman 🙂
@paolo, that social login hook we added earlier is only for desktop login box.
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 }
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
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
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
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
Applied the fix.
Check now and let us know if you face any problem.
Thanks
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
Please post your credentials, I’ll apply the fix.
I have to apply some code in your website. otherwise it will not work
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) -
AuthorPosts