Giri
Forum Replies Created
-
AuthorPosts
-
Hi there, please apply this code in your child theme’s functions.php file.
Note: replace “geodir_google_calender” text with your google calender field name.
function skip_iframe_tag_on_google_cal($tags, $pkey) { if ($pkey == 'geodir_google_calender') { $tags = '<iframe>'; } return $tags; } add_filter('geodir_save_post_key', 'skip_iframe_tag_on_google_cal', 10, 2);
Let me know how that goes.
Thanks
Thanks for informing us. Its closed
Are you sure you have the latest version of our plugins?
Upload the file to dropbox and then give us the dropbox link. So we can try from our side
Hi there, this has been fixed by stiofan. Fix will be available in next supreme version.
Thanks
This reply has been marked as private.This reply has been marked as private.Hello Oliver, I’m checking your problem.
Thanks
You’re welcome 🙂
test
After lot of debugging i have found out the problem.
Register, Login and Logout menu items are added by BuddyPress and they hard coded the slugs.
So here is the current solution.
add_filter('login_url', 'gd_custom_bp_login_url'); function gd_custom_bp_login_url($url) { $login_page = home_url( '/gd-login/' ); return $login_page; } add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link'); function my_nav_menu_profile_link($menu) { $menu = str_replace(home_url( '/register/' ), home_url( '/gd-login/' ), $menu); return $menu; }
You said you would like to redirect users user-info page. It looks like you use Dashboard widget on that page. So just replace “gd-login” text in my code with “user-info”
As far logout, I don’t see any issue in your site. Can you give me more detail about that issue?
Patrick, I’m working on that translation problem.
Free: number of publish days are 0 (0.00 USD)
Do you need translation only for string “number of publish days are” or package name too?
I believe package name is what you enter in form field. So i don’t think you need translation for that. Please confirmAlso provide FTP details. I’ll apply the fix once I regenerate translation files.
Thanks
Hello Stephen, I have fixed this bug and applied the fix on your site. You can use other category types now.
Thanks
Hello Stephen, Looks like this is a supreme bug. We will fix that in the next version.
I have switched your category display type to “Ajax Chained”. because as of now supreme only supports that type.
Please use that type till we release next version.
Thanks
Thanks Stephan, Can you tell me where exactly you get this problem? Is it in front end or backend?
-
AuthorPosts