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
  • Author
    Posts
  • #314755

    Patrick BAISSAT
    Expired Member
    Post count: 65

    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
    Patrick

    #315391

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    It 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

    #315459

    Patrick BAISSAT
    Expired Member
    Post count: 65

    Hello 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

    #315461

    Stiofan O’Connor
    Site Admin
    Post count: 22956
    This reply has been marked as private.
    #316423

    Patrick BAISSAT
    Expired Member
    Post count: 65

    Ok 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

    #317320

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    That hook is for hiding tabs not individual items, the other one i gave is for hiding individual items anywhere.

    Stiofan

    #317489

    Patrick BAISSAT
    Expired Member
    Post count: 65

    Hello 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
    Patrick

    #317539

    Patrick BAISSAT
    Expired Member
    Post count: 65

    For 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
    Patrick

    #317600

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    What is not disabled in the sidebar? Can you provide links and wp-admin info.

    Stiofan

    #317652

    Patrick BAISSAT
    Expired Member
    Post count: 65
    This reply has been marked as private.
    #317695

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    I 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

    #317698

    Patrick BAISSAT
    Expired Member
    Post count: 65
    This reply has been marked as private.
    #317718

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Thanks, 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

    #317969

    Patrick BAISSAT
    Expired Member
    Post count: 65

    SUPER ! ! ! ! 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
    Patrick

    #317970

    Patrick BAISSAT
    Expired Member
    Post count: 65

    i 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;
    }
Viewing 15 posts - 16 through 30 (of 35 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount