Title: kdmurthy's Replies | WordPress.org

---

# kdmurthy

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Sharing Plugin - Sassy Social Share] Doesn’t add buttons when getting content using ajax](https://wordpress.org/support/topic/doesnt-add-buttons-when-getting-content-using-ajax/)
 *  Thread Starter [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/doesnt-add-buttons-when-getting-content-using-ajax/#post-9514554)
 * Thanks. Adding shortcode is not an option in this case.
 * The problem is with the following check [@line](https://wordpress.org/support/users/line/)
   1343 of class-sassy-social-share-public.
 *     ```
                                               if ( isset( $this->options[$post_type] ) && ( is_single() || is_page() ) && isset( $post -> post_type ) && $post -> post_type == $post_type ) {
       ```
   
 * As a workaround, I added a `true ||` to the `(is_single() || is_page())` and 
   it is working well for me. The issue is that when we get the content using ajax,
   WPQuery::is_single returns false.
 * Since custom post types can also be shown as a list, I think your code is correct.
   Mine looks like an edge case.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Knowledge Base] 'dwkb' slug in article permalinks](https://wordpress.org/support/topic/dwkb-slug-in-article-permalinks/)
 *  [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/dwkb-slug-in-article-permalinks/#post-8819169)
 * Adding the following code to functions.php helped.
 *     ```
       function add_custom_rewrite_rule() {
           $args = get_post_type_object('dwkb');
           $args->rewrite["slug"] = 'knowledge-base';
           register_post_type($args->name, $args);
           flush_rewrite_rules();
       } // end wpccps_th_add_custom_rewrite_rule
       add_action('init', 'add_custom_rewrite_rule');
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DW Knowledge Base] Removing sidebars](https://wordpress.org/support/topic/removing-sidebars-3/)
 *  [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/removing-sidebars-3/#post-8811503)
 * I am using Custom Sidebars plugin to manage the sidebars. HTH.
 * — KD
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Multiple Sliding Panels](https://wordpress.org/support/topic/multiple-sliding-panels/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/multiple-sliding-panels/#post-4440280)
 * No easy way to do this.
 * One approach may be to disable the default/widget dashboard display and add your
   content to the dashboard panel. This is more or less like rewriting the whole
   of dashboard logic.
 * If you want to go this way, use widgetized dashboard, configure it the way you
   want it and then copy and use the generated HTML.
 * Another approach is to use widgetized dashboard and then use widgets that depend
   on the current context.
 * Hope this helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Can't access wp-admin or wp-login page anymore](https://wordpress.org/support/topic/cant-access-wp-admin-or-wp-login-page-anymore/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/cant-access-wp-admin-or-wp-login-page-anymore/#post-4441525)
 * Great.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Settings Go Back to Default When Saved](https://wordpress.org/support/topic/settings-go-back-to-default-when-saved/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/settings-go-back-to-default-when-saved/#post-4437255)
 * The problems are with WP 3.8 (which upgrades the JQuery to 1.9). Working on to
   fix the issues.
 * Incidentally, the UI was made up of tabs – the same issue is causing it to show
   all the fields in a single page.
 * — KD
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Adding reCAPTCHA to registration](https://wordpress.org/support/topic/adding-recaptcha-to-registration/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [12 years, 11 months ago](https://wordpress.org/support/topic/adding-recaptcha-to-registration/#post-3822962)
 * What exactly is happening?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] The plugin does not have a valid header.](https://wordpress.org/support/topic/the-plugin-does-not-have-a-valid-header-18/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/the-plugin-does-not-have-a-valid-header-18/#post-3367283)
 * Looks like the right solution:
 * [http://wordpress.org/support/topic/error-message-upon-activation?replies=10#post-3869492](http://wordpress.org/support/topic/error-message-upon-activation?replies=10#post-3869492)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] The plugin does not have a valid header](https://wordpress.org/support/topic/the-plugin-does-not-have-a-valid-header-22/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/the-plugin-does-not-have-a-valid-header-22/#post-3467815)
 * This looks like a right solution:
 * [http://wordpress.org/support/topic/error-message-upon-activation?replies=10#post-3869492](http://wordpress.org/support/topic/error-message-upon-activation?replies=10#post-3869492)
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Schemeable Sliding Panel] Great plugin, easy to install & great professional looks.](https://wordpress.org/support/topic/great-plugin-easy-to-install-great-professional-looks/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/great-plugin-easy-to-install-great-professional-looks/#post-7740114)
 * Thanks 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Language?](https://wordpress.org/support/topic/language-27/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/language-27/#post-3340219)
 * You can change the text from the options menu in the admin interface.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Error message upon activation](https://wordpress.org/support/topic/error-message-upon-activation/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/error-message-upon-activation/#post-3201433)
 * Not yet checked with 3.5. Shall post an update in couple of days.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] 1.4 does not format on wp 3.5](https://wordpress.org/support/topic/14-does-not-format-on-wp-35/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/14-does-not-format-on-wp-35/#post-3288881)
 * I didn’t check it with 3.5 yet. I shall release an update in couple of days
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] Email Login on Chrome on Mac stopped working with update](https://wordpress.org/support/topic/email-login-on-chrome-on-mac-stopped-working-with-update/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/email-login-on-chrome-on-mac-stopped-working-with-update/#post-3242185)
 * I test all versions with FireFox/Chrome. I miss out on IE because I work on a
   Mac. I am sure all versions work on Chrome. Try refreshing your page, removing
   cache etc. to see whether that solves your problem.
 * You can always get the old versions from svn.
 *     ```
       svn co http://plugins.svn.wordpress.org/schemeable-sliding-panel/tags/1.2 schemeable-sliding-panel
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Schemeable Sliding Panel] How can I add a css rule for changing the login message](https://wordpress.org/support/topic/how-can-i-add-a-css-rule-for-changing-the-login-message/)
 *  Plugin Author [kdmurthy](https://wordpress.org/support/users/kdmurthy/)
 * (@kdmurthy)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/how-can-i-add-a-css-rule-for-changing-the-login-message/#post-3241265)
 * Hmm.. you are persistent 🙂
 * Download the latest version and use #login-message .login-success and #login-
   message .login-failure for messages.

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

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