Title: dashaluna's Replies | WordPress.org

---

# dashaluna

  [  ](https://wordpress.org/support/users/dashaluna/)

 *   [Profile](https://wordpress.org/support/users/dashaluna/)
 *   [Topics Started](https://wordpress.org/support/users/dashaluna/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dashaluna/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dashaluna/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dashaluna/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dashaluna/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dashaluna/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 87 total)

1 [2](https://wordpress.org/support/users/dashaluna/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/dashaluna/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/dashaluna/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/dashaluna/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/dashaluna/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/dashaluna/replies/page/2/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[HM Content TOC] Not as good as it could be](https://wordpress.org/support/topic/not-as-good-as-it-could-be/)
 *  Plugin Author [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/not-as-good-as-it-could-be/#post-8067782)
 * Hello [@thomask](https://wordpress.org/support/users/thomask/),
 * Thank you for the feedback.
 * 1) The hierarchical TOC is on the list. It isn’t as straightforward, so taking
   a bit of time. However, it is something I’d like to implement.
 * 2) I’ll look into this, maybe something has changed as it was working before.
 * Thanks!
    Dasha
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[HM Content TOC] Simple and works](https://wordpress.org/support/topic/simple-and-works-109/)
 *  Plugin Author [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/simple-and-works-109/#post-8033179)
 * Thank you for the feedback [@thorned-rose](https://wordpress.org/support/users/thorned-rose/)
 * The reason I went for the current solution is that there is no guarantee that
   in content there won’t be multiple headers with exactly the same text. I know
   this is unlikely, but might happen.
 * In this case, we will have an invalid HTML, because there will be multiple tags
   with the same `id`.
 * For example:
 *     ```
       Some text...
       <h1>Some Title</h1>
       Some text...
       <h1>Some Title</h1>
       Some text...
       ```
   
 * Will result in:
 *     ```
       <h1 id="some-title">Some Title</h1>
       <h1 id="some-title">Some Title</h1>
       ```
   
 * And before the actual headings the anchors are inserted with the same `id`, so
   both link will just for the first occurrence only. I hope that makes sense.
 * I’m open to suggestions to improve this, bearing in mind that header text might
   not be unique.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Codepress Menu] Level 3 problem – Solved. Requires plugin code alteration](https://wordpress.org/support/topic/level-3-problem-solved-requires-plugin-code-alteration/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/level-3-problem-solved-requires-plugin-code-alteration/#post-5190588)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Share Buttons Plugin – AddThis] Buttons don't show up – using addthis_display_social_widget](https://wordpress.org/support/topic/buttons-dont-show-up-using-addthis_display_social_widget/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [11 years, 12 months ago](https://wordpress.org/support/topic/buttons-dont-show-up-using-addthis_display_social_widget/#post-4918734)
 * Hello,
 * I’ve manage to sort this out. I’m giving here details in case it will help someone.
 * One of the issues was that it didn’t work unless you specify AddThis login details
   and profile ID in the AddThis plugin settings. It would be handy to have a more
   specific error message for this, but hey ho.
 * Then, I just used the following code to insert share buttons in specific places,
   using hooks:
 * `do_action( 'addthis_widget', get_permalink( $post ), get_the_title( $post ),'
   below' );`
 * where `below` refers to the AddThis button setting for ‘Bottom Sharing Tool’ 
   in plugin settings.
 * Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Posts 2 Posts] Listing connected pages as they are ordered at admin box](https://wordpress.org/support/topic/listing-connected-pages-as-they-are-ordered-at-admin-box/)
 *  [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/listing-connected-pages-as-they-are-ordered-at-admin-box/#post-3729304)
 * Hello,
 * I think `'connected_orderby' => 'position',` implies that you want to sort that
   by meta field that’s called ‘position’ is that correct? Do you have a special
   field you want to oder by?
 * If it’s default admin drag-and-drop order, try instead of lines:
 *     ```
       'connected_orderby' => 'position',
        'connected_order' => 'asc',
        'connected_order_num' => true,
       ```
   
 * these ones:
 *     ```
       'order' => 'ASC',
       'orderby' => 'menu_order',
       ```
   
 * Hope that works. Let me know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Taxonomies] Terms not assigned to a user are displayed as ticked](https://wordpress.org/support/topic/terms-not-assigned-to-a-user-are-displayed-as-ticked/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/terms-not-assigned-to-a-user-are-displayed-as-ticked/#post-3488132)
 * **dj maskell** great, glad it helped someone, I’ve spend hours catching this 
   bug!
    Thank you for the explanation of the is_object_in_term() function, makes
   sense.
 * **wptobbe** I hope you will make it work now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Brakes Gravity Form plugin](https://wordpress.org/support/topic/brakes-gravity-form-plugin/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/brakes-gravity-form-plugin/#post-3798614)
 * I could track the conflict with “Google Analytics” plugin as far as to the content
   filter:
 * line 31 file /wp-content/plugins/google-analytics-for-wordpress/frontend/class-
   frontend.php
 * `add_filter( 'the_content', array( $this, 'the_content' ), 99 );`
 * line 425 file /wp-content/plugins/google-analytics-for-wordpress/frontend/class-
   frontend.php
 *     ```
       function the_content( $text ) {
          if ( !$this->do_tracking() ){
       	return $text;
          }
          if ( !is_feed() ) {
       	static $anchorPattern = '/<a (.*?)href=[\'\"](.*?)\/\/([^\'\"]+?)[\'\"](.*?)>(.*?)<\/a>/i';
       	$text = preg_replace_callback( $anchorPattern, array( $this, 'parse_article_link' ), $text );
         }
         return $text;
       }
       ```
   
 * It matches !is_feed() condition and goes off to change the mark up of links. 
   However, the $matches array is empty following the call of preg_replace_callback(),
   which supposed to return unchanged $text, but instead returns empty string.
 * Any ideas why it returns empty string instead of un-changed string when there
   are no matches of links in the content?
 * Many thanks,
    Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Brakes Gravity Form plugin](https://wordpress.org/support/topic/brakes-gravity-form-plugin/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/brakes-gravity-form-plugin/#post-3798612)
 * I have been testing more, to see what settings break Gravity Forms.. and it seems
   that if I tick `Track outbound clicks & downloads:` setting that the whole form
   is not displayed.
 * Have anyone experienced this? Does anyone know how to fix this? I would hugely
   appreciate any help!!
 * Many thanks,
    Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Brakes Gravity Form plugin](https://wordpress.org/support/topic/brakes-gravity-form-plugin/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/brakes-gravity-form-plugin/#post-3798487)
 * I’ve noticed that as soon as I specify the manual tracking number than the Gravity
   Forms breaks (GF).
 * If I leave the field “Manually enter your UA code: ” blank then GF is working.
   
   No idea why simply specifying the tracking code manually breaks another plugin.
 * Any adea?
    I would hugely appreciate any help.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Relevanssi - A Better Search] Database errors](https://wordpress.org/support/topic/db-errors-3/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [12 years, 12 months ago](https://wordpress.org/support/topic/db-errors-3/#post-3771456)
 * I’ve been looking at it further and it seems that the tables are named incorrectly?
 * My DB index is ‘R43my’ starts with capital letter. However, I’ve discovered that
   in the DB the tables are named as following:
 * r43my_relevanssi
    R43my_relevanssi_cache R43my_relevanssi_excerpt_cache R43my_relevanssi_log
   R43my_relevanssi_stopwords
 * Please note that the table `r43my_relevanssi` is named with all the small letters.
   I wonder if it breaks before of that.
 * Hopefully the plugin author can look into it.
 * Many thanks, Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Terms displayed as IDs, not Name](https://wordpress.org/support/topic/terms-displayed-as-ids-not-name/)
 *  [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/terms-displayed-as-ids-not-name/#post-3510590)
 * Hello,
 * I figured out how to display text for checkboxes/select/radio inputs in the admin
   Entry view via filters rather than altering the plugin code.
 * Add the following code to your functions.php
 *     ```
       add_filter( 'gform_entry_field_value', 'admin_entry_view_display_pretty_text', 10, 4);
       function admin_entry_view_display_pretty_text( $display_value, $field, $lead, $form ){
       	$field_type = RGFormsModel::get_input_type($field);
   
       	if( in_array( $field_type, array('checkbox', 'select', 'radio') ) ){
       		$value = RGFormsModel::get_lead_field_value( $lead, $field );
       		return GFCommon::get_lead_field_display( $field, $value, $lead["currency"], true );
       	}
       	else{
       		return $display_value;
       	}
       }
       ```
   
 * I hope that helps someone.
    Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Terms displayed as IDs, not Name](https://wordpress.org/support/topic/terms-displayed-as-ids-not-name/)
 *  [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/terms-displayed-as-ids-not-name/#post-3510589)
 * [@steve](https://wordpress.org/support/users/steve/), thanks for letting me know.
   I was wondering if you edit the code? If so, could you give any pointers what
   function you altered and how?
 * Many thanks in advance,
    Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] Terms displayed as IDs, not Name](https://wordpress.org/support/topic/terms-displayed-as-ids-not-name/)
 *  [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/terms-displayed-as-ids-not-name/#post-3510586)
 * Hello,
 * Similar problem. Does any one figured out how to display term names in the Entries
   of the form submission rather terms IDs?
 * Many thanks, Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Infinite-Scroll] Different HMLT next button markup when plugin is working](https://wordpress.org/support/topic/different-hmlt-next-button-markup-when-plugin-is-working/)
 *  Thread Starter [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/different-hmlt-next-button-markup-when-plugin-is-working/#post-3605724)
 * Anyone? I would hugely appreciate any help!
    Many thanks, Dasha
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms + Custom Post Types] multi-select linked to a custom taxonomy](https://wordpress.org/support/topic/multi-select-linked-to-a-custom-taxonomy/)
 *  [dashaluna](https://wordpress.org/support/users/dashaluna/)
 * (@dashaluna)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/multi-select-linked-to-a-custom-taxonomy/#post-3242228)
 * Hello,
 * I’ve got plugin version 3.0.1 and WP 3.5.1 it still only saved the first choice
   in multi select. Any update on this?
 * Many thanks, Dasha

Viewing 15 replies - 1 through 15 (of 87 total)

1 [2](https://wordpress.org/support/users/dashaluna/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/dashaluna/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/dashaluna/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/dashaluna/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/dashaluna/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/dashaluna/replies/page/2/?output_format=md)