Title: creding's Replies | WordPress.org

---

# creding

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom query url for taxonomies on multiple post types](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years ago](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/#post-2091457)
 * You could also change this
    $template = dirname( __FILE__ ) . ‘/announcements-
   template.php’; to this $template = dirname( __FILE__ ) . ‘/custom-‘.$post_type.’.
   php’;
 * that would allow you to create custom templates that can be called by the current
   type with out rewriting a lot of code. I would also probably change
 * $post_type == ‘announcements’
    to in_array( $post_type, array(‘announcements’,‘
   other-posttype’, ‘other-posttype2’) )
 * that will enable you to set some post types you want to use the custom template
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom query url for taxonomies on multiple post types](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years ago](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/#post-2091443)
 * Fixed my error in the previous 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom query url for taxonomies on multiple post types](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years ago](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/#post-2091435)
 * `
    <?php
 * function get_custom_post_type_template($template) {
    global $wp_query; $post_type
   = $wp_query->query_vars['post_type']; if ( !isset($wp_query->query_vars['town']))
   return $template; $tax = $wp_query->query_vars['town']; if ($post_type == 'announcements'&&
   $tax ) { $template = dirname( __FILE__ ) . '/announcements-template.php'; } return
   $template; } add_filter( "taxonomy_template", "get_custom_post_type_template");
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Custom query url for taxonomies on multiple post types](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years ago](https://wordpress.org/support/topic/custom-query-url-for-taxonomies-on-multiple-post-types/#post-2091405)
 * `add_action('admin_init', 'flush_rewrite_rules');
    add_action('generate_rewrite_rules','
   town_rewrite_rules');
 * function town_rewrite_rules( $wp_rewrite )
    { $new_rules = array( 'town/(.+)/(.
   +)' => 'index.php?post_type=' . $wp_rewrite->preg_index(2) . '&town=' .$wp_rewrite-
   >preg_index(1));
 *  $wp_rewrite->rules = $new_rules + $wp_rewrite->rules;
    }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlideShowPro Director Plugin] [Plugin: SlideShowPro Director Plugin] Plugin is hung–just spins instead of finding albums](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/#post-2018932)
 * Hi Karen, I was able to reproduce the problem by inserting the images one after
   another without any spacing. I believe this is an issue with wordpress and shortcodes
   as opposed to the plugin though.
 * This plugin doesn’t offer the slideshow player, It is strictly for inserting 
   single images or videos one at a time from Director. For slideshows we have the
   slidepress plugin.
 * I left one test post in as a draft so you can publish it and see what I am talking
   about. Try removing the spacing between the end of one caption shortcode and 
   the beginning of another and see if the code goes wonky on you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlideShowPro Director Plugin] [Plugin: SlideShowPro Director Plugin] Plugin is hung–just spins instead of finding albums](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/#post-2018921)
 * Hi Karen, it appears the problem was caused due to adding a http:// in the path
   to director. The plugin is set to use the path without the [http://](https://wordpress.org/support/users/creding/replies/?output_format=md).
   I’ll see what I can do to fix this in the future.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlideShowPro Director Plugin] [Plugin: SlideShowPro Director Plugin] Plugin is hung–just spins instead of finding albums](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/#post-2018654)
 * Would you mind contacting me through our support center so I can help you further?
   [http://help.slideshowpro.net/](http://help.slideshowpro.net/) Mention this thread.
 * The problem may be caused by a plugin conflict. To test you can disable other
   plugins and see if it works. If not then it could be a theme issue. It’s hard
   to say without seeing it in action.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlideShowPro Director Plugin] [Plugin: SlideShowPro Director Plugin] Plugin is hung–just spins instead of finding albums](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-plugin-is-hung-just-spins-instead-of-finding-albums/#post-2018633)
 * Hi Karen, what version of php are you using?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlideShowPro Director Plugin] [Plugin: SlideShowPro Director Plugin] Can't activate plugin – reports Fatal Error](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-cant-activate-plugin-reports-fatal-error/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-cant-activate-plugin-reports-fatal-error/#post-1922953)
 * [@sschuur](https://wordpress.org/support/users/sschuur/) the conflict with ProPlayer
   should be resolved with the latest update (1.0.1) please let me know if there
   are any other issues.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SlideShowPro Director Plugin] [Plugin: SlideShowPro Director Plugin] Can't activate plugin – reports Fatal Error](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-cant-activate-plugin-reports-fatal-error/)
 *  [creding](https://wordpress.org/support/users/creding/)
 * (@creding)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-slideshowpro-director-plugin-cant-activate-plugin-reports-fatal-error/#post-1922560)
 * Contact me at support[at]slideshowpro.com and I’ll see what I can do to help 
   get this resolved.

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