Insert [shortcode] of another application
This topic contains 34 replies, has 4 voices, and was last updated by Kor 8 years, 2 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket-
AuthorPosts
-
November 29, 2016 at 9:39 pm #314755
re-hello,
And it’s complicated to do the same for other places: Map bubble, Detail page sidebar, More info tab, and listing page ?
thank you
PatrickNovember 30, 2016 at 10:23 am #315391It can be done with any tab or field, for field types you can see the types in each of these function names: https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/custom_fields_output_functions.php
Stiofan
November 30, 2016 at 11:37 am #315459Hello Stofian,
can you give me your email adress with this page : http://e-commerce-concept.eu/contact/
or in this post if is possible.
thank you very much
patrick
November 30, 2016 at 11:40 am #315461This reply has been marked as private.December 1, 2016 at 7:47 am #316423Ok i read your answer.
—————————–
In your help you write :
add_filter(‘geodir_detail_page_tab_is_display’,’_my_hide_tabs_to_non_admin’,10,2);for one of location. the variable is : detail_page_tab for Detail page own tab
can you give me the 4 other variables for : detail page sidebar, more info tab, listing page and map bubble.thank you Stiofan
December 2, 2016 at 11:33 am #317320That hook is for hiding tabs not individual items, the other one i gave is for hiding individual items anywhere.
Stiofan
December 2, 2016 at 4:22 pm #317489Hello Stiofan,
You said : “That hook is for hiding tabs not individual items”, yes i understand this.
Now, my fontions.php is :
function _my_hide_tabs_to_non_admin($val,$htmlvar_name){ //echo '###'.$htmlvar_name; // uncomment to get var names //This 4 lines are to hide this customs field, and it is OK if($htmlvar_name=='geodir_fin_bail' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_debut_bail' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_trienale' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_fiche_fm' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_someother' && !is_super_admin()){$val = false;} return $val; }
The filters are :
add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3); add_filter('geodir_detail_page_tab_is_display','_my_hide_tabs_to_non_admin',10,2);
The custom fields do not appear in the tabs under the photo, and that’s fine.
But I would like to do the same but on the right column in the detail page of places, the same in the ‘Map Bubble’
I join to you an picture with comments.It is very difficult for me to explain in english, and it is the first time that i buy your extension.
You help me very well, but i have some dificulty to explain my thing
sorry sorry for that,Best regards
PatrickDecember 2, 2016 at 5:16 pm #317539For exemple, you write this :
add_filter('geodir_detail_page_tab_is_display','_my_hide_tabs_to_non_admin',10,2); function _my_hide_tabs_to_non_admin($val,$htmlvar_name) { //echo '###'.$htmlvar_name; // uncomment to get var names //This 4 lines are to hide this customs field, and it is OK if($htmlvar_name=='geodir_fin_bail' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_debut_bail' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_trienale' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_fiche_fm' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_someother' && !is_super_admin()){$val = false;} return $val; }
for disabled the view in tabs,
I write this :
add_filter('geodir_detail_page_sidebar_is_display','_my_hide_sidebar_to_non_admin',10,2); function _my_hide_sidebar_to_non_admin($val,$htmlvar_name) { if($htmlvar_name=='geodir_fin_bail' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_debut_bail' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_trienale' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_fiche_fm' && !is_super_admin()){$val = false;} if($htmlvar_name=='geodir_someother' && !is_super_admin()){$val = false;} return $val; }
For disabled the view in sidebar right. and is not working, you have an idea ?
Thanks
Best regards
PatrickDecember 2, 2016 at 5:29 pm #317600What is not disabled in the sidebar? Can you provide links and wp-admin info.
Stiofan
December 2, 2016 at 5:59 pm #317652This reply has been marked as private.December 2, 2016 at 6:13 pm #317695I tried adding one of the functions but it seems you must have had it somewhere already, can you provide FTP info so i can fix it.
Stiofan
December 2, 2016 at 6:23 pm #317698This reply has been marked as private.December 2, 2016 at 6:55 pm #317718Thanks, the function was using the is_admin key instead of for_admin_use
function _my_hide_field_from_admin($html,$fields_location,$type){ if(isset($type['for_admin_use']) && $type['for_admin_use'] && !is_super_admin()){ $html = ''; } return $html; }
Now just change any field to for admin sue under GD>Place Settings>field>for admin use
Thanks,
Stiofan
December 3, 2016 at 10:04 am #317969SUPER ! ! ! ! it’s working perfectly for the fields : text,text area, date, time, HTML, Radio, Multi-select etc . . .
but no for the predefined field : property area, price, property status, etc . . . is normal ?best regards
PatrickDecember 3, 2016 at 10:10 am #317970i test this but not working :
add_filter("geodir_data_field_custom_output_property_area",'_my_hide_data_field_from_admin',10,3); function _my_hide_data_field_from_admin($html,$fields_location,$type){ if(isset($type['for_admin_use']) && $type['for_admin_use'] && !is_super_admin()){ $html = ''; } return $html; }
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket