Title: aledan's Replies | WordPress.org

---

# aledan

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] TranslatePress and sage theme jQuery not defined](https://wordpress.org/support/topic/translatepress-and-sage-theme-jquery-not-defined/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/translatepress-and-sage-theme-jquery-not-defined/#post-12514019)
 * Or just bypass Sage blade template rendering for TranslatePress.
 *     ```
       /**
        * Render page using Blade
        */
       add_filter('template_include', function ($template) {
           if (strpos($template, 'translation-manager.php')) {
               return $template;
           }
           collect(['get_header', 'wp_head'])->each(function ($tag) {
               ob_start();
               do_action($tag);
               $output = ob_get_clean();
               remove_all_actions($tag);
               add_action($tag, function () use ($output) {
                   echo $output;
               });
           });
           $data = collect(get_body_class())->reduce(function ($data, $class) use ($template) {
               return apply_filters("sage/template/{$class}/data", $data, $template);
           }, []);
           if ($template) {
               echo template($template, $data);
               return get_stylesheet_directory() . '/index.php';
           }
           return $template;
       }, PHP_INT_MAX);
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[TranslatePress - Translate Multilingual sites with AI Translation] TranslatePress and sage theme jQuery not defined](https://wordpress.org/support/topic/translatepress-and-sage-theme-jquery-not-defined/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/translatepress-and-sage-theme-jquery-not-defined/#post-12513821)
 * Revert [this commit](https://github.com/roots/sage/commit/93ee95dfac0cf11e9210e9d6bf0487bb4f961724)
   fix the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Enhanced Media Library] Little bug](https://wordpress.org/support/topic/little-bug-2/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [12 years ago](https://wordpress.org/support/topic/little-bug-2/#post-5061147)
 * Glad to contribute!
    Thanks for this great plugin!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] Errore NewRelic service.php](https://wordpress.org/support/topic/errore-newrelic-servicephp/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/errore-newrelic-servicephp/#post-3784838)
 * I have the same on my website.
    Which host do you have?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CPT-onomies: Using Custom Post Types as Taxonomies] [Plugin: CPT-onomies: Using Custom Post Types as Taxonomies] CPT with publish_post action](https://wordpress.org/support/topic/plugin-cpt-onomies-using-custom-post-types-as-taxonomies-cpt-with-publish_post-action/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [14 years ago](https://wordpress.org/support/topic/plugin-cpt-onomies-using-custom-post-types-as-taxonomies-cpt-with-publish_post-action/#post-2876901)
 * When a post is published is better than updated/saved.
    I’m looping custom post
   type to show taxonomy terms. But I need to order them regarding to the last updating(
   I mean latest post tagged with CPT-onomies term).
 * Anyway, “save_post” action does the trick, but seems that publish_[custom_post_type]
   action doesn’t.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CPT-onomies: Using Custom Post Types as Taxonomies] [Plugin: CPT-onomies: Using Custom Post Types as Taxonomies] CPT with publish_post action](https://wordpress.org/support/topic/plugin-cpt-onomies-using-custom-post-types-as-taxonomies-cpt-with-publish_post-action/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [14 years ago](https://wordpress.org/support/topic/plugin-cpt-onomies-using-custom-post-types-as-taxonomies-cpt-with-publish_post-action/#post-2876783)
 * [UPDATE]
    Got it working with “save_post” action. Isn’t what I want, but can 
   do the trick.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CPT-onomies: Using Custom Post Types as Taxonomies] [Plugin: CPT-onomies: Using Custom Post Types as Taxonomies] CPT with publish_post action](https://wordpress.org/support/topic/plugin-cpt-onomies-using-custom-post-types-as-taxonomies-cpt-with-publish_post-action/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [14 years ago](https://wordpress.org/support/topic/plugin-cpt-onomies-using-custom-post-types-as-taxonomies-cpt-with-publish_post-action/#post-2876778)
 * [UPDATE]
    After post publishing, if I set the post status to draft and then publish
   it again the function work and I got the terms. How I can fix it?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: LeagueManager] Previous match in team template](https://wordpress.org/support/topic/plugin-leaguemanager-previous-match-in-team-teamplate/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/plugin-leaguemanager-previous-match-in-team-teamplate/#post-1219054)
 * Work perfect for me.
 * Also in rc3 release. This bug seems not resolved yet.
 * Thanks a lot!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Cimy User Extra Fields – Checkbox Problem – ???](https://wordpress.org/support/topic/cimy-user-extra-fields-checkbox-problem/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/cimy-user-extra-fields-checkbox-problem/#post-1217707)
 * Same problem here.
 * Thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show post only with image](https://wordpress.org/support/topic/show-post-only-with-image/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/show-post-only-with-image/#post-1226868)
 * No, just with “add image” button in the write post area.
 * Thanks a lot.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Plugin for WordPress like AdsManager for Joomla](https://wordpress.org/support/topic/plugin-for-wordpress-like-adsmanager-for-joomla/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/plugin-for-wordpress-like-adsmanager-for-joomla/#post-1191611)
 * I have found
 * [http://wpclassipress.com/](http://wpclassipress.com/)
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: LeagueManager] Widget Problems](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problems/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problems/#post-1193720)
 * Thanks a lot!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: LeagueManager] Widget Problems](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problems/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problems/#post-1193712)
 * Same here. Anyone have a fix? Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Plugin for WordPress like AdsManager for Joomla](https://wordpress.org/support/topic/plugin-for-wordpress-like-adsmanager-for-joomla/)
 *  Thread Starter [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [16 years, 10 months ago](https://wordpress.org/support/topic/plugin-for-wordpress-like-adsmanager-for-joomla/#post-1191447)
 * 🙂 Up
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [post image, image title, description … automatic gallery](https://wordpress.org/support/topic/post-image-4/)
 *  [aledan](https://wordpress.org/support/users/aledan/)
 * (@aledan)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/post-image-4/#post-838026)
 * I need display gallery, outside the loop, in a dedicated box only if images number
   is > 1.
 * How I can do that with this function? Thanks a lot!
 * Aledan

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

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