Title: WiSch's Replies | WordPress.org

---

# WiSch

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Firelight Lightbox] Use ALT-text as caption](https://wordpress.org/support/topic/use-alt-text-as-caption/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/use-alt-text-as-caption/#post-13294137)
 * Hi.
 * I didn’t know what changed, maybe the last update but…
    Now it works as I want
   it.
 * The suggested option was set before but when I leave the alt-tag blank the title
   was shown instead of leave the caption blank.
    So I used a little snippet I found
   on the net:
 *     ```
       // ALT-Text as Lightbox-Caption instead of the title
       // https://kriesi.at/support/topic/lightbox-displaying-alt-tag-below-image/
       function gallery_title_fix(){
       ?>
       <script>
       (function($){
           $(window).load(function() {
             $('img').each(function(){
                   var lin = $(this).attr('alt');
                   $(this).attr('title',lin);
               });
           });
       })(jQuery);
       </script>
       <?php
       }
       add_action('wp_footer', 'gallery_title_fix');
       ```
   
 * But now it does what I expect without the snippet.
 * So… thanks for your support, whatever you did! 😉
 * Regards,
    Jörg
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Dynamic Widget Content] Multiple widgets](https://wordpress.org/support/topic/multiple-widgets-8/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [8 years ago](https://wordpress.org/support/topic/multiple-widgets-8/#post-10560837)
 * Hi Brecht.
 * Found it… sorry, I missed that.
    But why the why the limit of three?
 * And – maybe as a feature request – is it also possible to give a default value
   but deactivate the widget on a specific page/post?
    Thinking about a couple of
   Widgets with default content and the posibility to check/uncheck them in each
   page/post.
 * Thanks agian and regards,
    Jörg
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crelly Slider] Default Slide as fallback](https://wordpress.org/support/topic/default-slide-as-fallback/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/default-slide-as-fallback/#post-9738544)
 * Hello Fabio.
 * Sorry for the delay… checked it today and your last solution works now!
 * Thanks for your support.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crelly Slider] Slider not responsive on moible phone?](https://wordpress.org/support/topic/slider-not-responsive-on-moible-phone/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/slider-not-responsive-on-moible-phone/#post-9738505)
 * Hi.
 * I found the reason in the css:
 *     ```
       .crellyslider, .crellyslider > .cs-slides > .cs-slide {
       	min-height: 83px;
       }
       ```
   
 * I overwrite it in my theme css-file with 0px and everything works.
    -  This reply was modified 8 years, 8 months ago by [WiSch](https://wordpress.org/support/users/wisch/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crelly Slider] Default Slide as fallback](https://wordpress.org/support/topic/default-slide-as-fallback/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/default-slide-as-fallback/#post-9662260)
 * Hi Fabio.
 * Thanks for the support, but…
 * If I use your snippet, on every page the ‘standardslide’ comes up.
    If I swap
   the if & else content the right slider comes up, if exists, but not my default
   if there’s no slider named like the slug.
 * Any other ideas?
 * Update:
    Maybe your code checks the ID and I come with the slug in my $alias…
 *     ```
       if(CrellySliderCommon::sliderExists($id)) {
           // Do something if slider exists
       }
       ```
   
 * So I have to find out the ID before? But how?
    -  This reply was modified 8 years, 9 months ago by [WiSch](https://wordpress.org/support/users/wisch/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Crelly Slider] Default Slide as fallback](https://wordpress.org/support/topic/default-slide-as-fallback/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/default-slide-as-fallback/#post-9662129)
 * Hi Fabio.
 * Thanks for the reply, but I didn’t get it working.
 * My code now looks like this:
 *     ```
       global $post;
       $alias = get_post_field( 'post_name', get_post() );
       if ($alias && function_exists('crellySlider')) {
       	if(CrellySliderCommon::sliderExists($alias)) {
       		crellySlider('standardslider');
       	} else {
       		crellySlider($alias);
       	}
       }
       ```
   
 * If exists, the slide for the post_slug comes correct.
    If it not exists, nothing
   happend, even not integrating the slider “standardslider”.
 * In the page-source I can find the comment “The Slider wasn’t found” (in german)?
   
   But in my dashboard there’s this slider. The shortcode your PlugIn shows: [crellyslider
   alias=”standardslider”]
 * Can you see, where’s the problem?
 * Regards,
    Jörg
    -  This reply was modified 8 years, 9 months ago by [WiSch](https://wordpress.org/support/users/wisch/).
    -  This reply was modified 8 years, 9 months ago by [WiSch](https://wordpress.org/support/users/wisch/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Shortcodes Ultimate - Content Elements] Carousel displays in preview BUT NOT when viewing the page](https://wordpress.org/support/topic/carousel-displays-in-preview-but-not-when-viewing-the-page/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/carousel-displays-in-preview-but-not-when-viewing-the-page/#post-7111968)
 * Same problem here, preview is ok but when published only the arrows are shown,
   not the images.
 * A hint in an old support-post to change folder-rights to 777 on the cache-folder
   didn’t work, because there’s no cache-folder anymore?
 * I don’t know if it is the right way and also not, if it works in all sites, but
   for me I found the solution by adding the following CSS in the ‘Custom CSS’-Area
   of the PlugIn-Settings (or the css of a child-theme):
 *     ```
       .tc-smart-loaded[style] {
         opacity: 1 !important;
       }
       ```
   
 * After that it works on my site.
 * While searching for a possible solution I found that some of the others also 
   use the [Customizr-Theme](https://de.wordpress.org/themes/customizr/), but I 
   could not verify that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Twitter] Sharethis php code (manual insert)](https://wordpress.org/support/topic/sharethis-php-code-manual-insert/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years ago](https://wordpress.org/support/topic/sharethis-php-code-manual-insert/#post-3891256)
 * Hi Fabrix,
    without any alternativ? Why? I used it, because so I got more control
   e.g. regarding the responsive layout.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Twitter] Sharethis php code (manual insert)](https://wordpress.org/support/topic/sharethis-php-code-manual-insert/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years ago](https://wordpress.org/support/topic/sharethis-php-code-manual-insert/#post-3891250)
 * Same problem for me.
    The code `if(function_exists('fdx_add_sharethis')) { fdx_add_sharethis();}`
   didn’t work anymore?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Order Snippets](https://wordpress.org/support/topic/order-snippets/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/order-snippets/#post-3632642)
 * I think about an UI to manually re-order the snippets. Some drag’n’drop to re-
   order and save the new sorting.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Code Snippets] Order Snippets](https://wordpress.org/support/topic/order-snippets/)
 *  Thread Starter [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/order-snippets/#post-3632636)
 * Wow, that was a fast reply!
    OK, I saw the IDs in the Database an will try that.
   Maybe you’ll include a function to order the snippets in a future version of 
   the plugin, could also be usefull only to sort for organization or something 
   like that. Thanks for your support.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [RSS Feed](https://wordpress.org/support/topic/rss-feed-95/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/rss-feed-95/#post-3477865)
 * Hello golfer300,
    I think both should be possible with plugins. You need one 
   to show a feed on your site and one to exclude categories of your feed. So you
   can show your own feed without a defined cat wich you use for your ‘shorter’ 
   reports. Maybe with these ones: [http://wordpress.org/extend/plugins/rss-import/](http://wordpress.org/extend/plugins/rss-import/)
   and [http://wordpress.org/extend/plugins/simply-exclude/](http://wordpress.org/extend/plugins/simply-exclude/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wordpress's dashboard isn't recognizing my site (using wampserver / localhost)](https://wordpress.org/support/topic/wordpresss-dashboard-isnt-recognizing-my-site-using-wampserver-localhost/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/wordpresss-dashboard-isnt-recognizing-my-site-using-wampserver-localhost/#post-3476476)
 * I don’t use WAMP, but the info on he linked site rcalls another folder for the
   database…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dropdown menus have disappeared](https://wordpress.org/support/topic/dropdown-menus-have-disappeared/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/dropdown-menus-have-disappeared/#post-3476395)
 * Inline-Style is the part `style="..."` wich can be fixed via code or a plugin,
   therefor again my question: Original WP-menu or a plugin?
 * If you can’t change the original code or deactivate the last installed plugin
   or change the css, how can or should I help?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Dropdown menus have disappeared](https://wordpress.org/support/topic/dropdown-menus-have-disappeared/)
 *  [WiSch](https://wordpress.org/support/users/wisch/)
 * (@wisch)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/dropdown-menus-have-disappeared/#post-3476387)
 * OK, I can understand that, but something has changed and you’ll have to find 
   out what… a new plugin, a update or something?
 * When I take a look in the code of your site I find the following:
    `<ul class
   ="sub-menu" style="display: none; visibility: hidden;">` Try to delete the inlinestyle
   here, what happens? In my firefox I tried that with firebug and it works…
 * For more help I need to see the original code or need to know if you use the 
   standard WP-menu or a plugin…

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

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