Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author iHomefinder, Inc.

    (@ihomefinder)

    Hi Derol,

    The shortcode selector should show up as a little house icon in the WordPress page / post editor.

    This article has some more info on how to use the shortcode selector:
    http://support.ihomefinder.com/index.php?/partners/Knowledgebase/Article/View/154/21/adding-shortcodes-using-the-shortcode-selector

    One thing to note is that you’ll need to be in “visual” mode and not “text” mode. WordPress provides a button on the top right of the editor to to change this. Additionally, some themes will override the default WordPress editor with their own editor (such as a drag and drop editor). Most of the time there will be a way within the theme to use the default WordPress editor.

    If you have further questions, feel free to contact support@ihomefinder.com.

    Thread Starter derol

    (@derol)

    Not resolved. Will email support.

    Thread Starter derol

    (@derol)

    Commenting out line 23 of iHomefinderTinyMceManager.php got it working

    function addButtons() {
    		if (!current_user_can('edit_posts') && !current_user_can('edit_pages'))
    			return;
    
    /*
    		if(!iHomefinderPermissions::getInstance()->isGalleryShortCodesEnabled())
    			return;
    */
    		if (get_user_option('rich_editing') == 'true') {
    			add_filter("mce_external_plugins", array($this,"addTinymcePlugins"));
    			add_filter('mce_buttons',          array($this,"registerButtons"));
    			add_action('in_admin_footer', array($this,'addTinymceVariables'));
    		}
    Plugin Author iHomefinder, Inc.

    (@ihomefinder)

    Hi Derol,

    Thanks for the detective work! We’re planning on releasing an update on Monday that will include this update (and some cool new features).

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Short Code Selector not showing up’ is closed to new replies.