Using other shortcodes inside Place Custom Fields

This topic contains 6 replies, has 4 voices, and was last updated by  Heather L 8 years, 4 months ago.

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

Open Support Ticket
  • Author
    Posts
  • #285377

    Dan Keenan
    Buyer
    Post count: 1

    I’m trying to setup a place custom field that can accept a shortcode that displays an instagram feed. I’ve tried using html fields and text fields, but neither generates the shortcode. Do you know if this is possible or another way? Attached are the backend and frontend views.

    Thank you.

    #285658

    Kor
    Moderator
    Post count: 16516

    Hi Dan Keenan,

    If you would like to display a 3rd party shortcode in a custom field, you’ll have to apply the script below into your Website. Add this code in via plugin https://wordpress.org/plugins/code-snippets/ OR by adding code in your theme functions.php .

    
    
    function my_enable_shortcodes_in_cf($html,$location,$cf){
      
        // this line will enable it only for a text input with html var 'textx'
        if(isset($cf['htmlvar_name']) && $cf['htmlvar_name']=='geodir_textx'){
          $html = do_shortcode( $html );
        }
        
        return $html;
    }
    add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);

    Furthermore, if you would like to use shortcodes in a “Textarea”, replace the code as shown below.

    Replace

    add_filter('geodir_custom_field_output_text','my_enable_shortcodes_in_cf',15,3);

    With this

    add_filter('geodir_custom_field_output_textarea','my_enable_shortcodes_in_cf',15,3);

    Thanks!

    #298192

    Heather L
    Buyer
    Post count: 62

    Kor, I tried adding this code to the child theme functions.php on my test site and it isn’t working. I’ve tried using the instagram feed shortcode in a plain text area and html. Did I make a mistake in the code?

    #298664

    Paolo
    Site Admin
    Post count: 31211

    Hi,

    please read the comment inside the code:

    // this line will enable it only for a text input with html var 'textx'

    Did you try it on a text input with htmlvar textx?

    Let us know,

    Thanks

    #299130

    Heather L
    Buyer
    Post count: 62

    Sorry, Paulo, I don’t understand what that means or how to do it. Can you give me an example?

    Thanks

    #299765

    Paolo
    Site Admin
    Post count: 31211

    Whenever you create a new field you have to assign a htmlvar.

    The code you added will only work for a TEXT field that has a htmlvar xtext.

    Kor explained how to do the same thing for a textarea. In that case the code changes slightly.

    If you are still having trouble, please provide a link and admin credentials and we will have a look.

    Thanks

    #302418

    Heather L
    Buyer
    Post count: 62

    Got it! Thank you, Paulo.

Viewing 7 posts - 1 through 7 (of 7 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