Title: vanuch's Replies | WordPress.org

---

# vanuch

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

 *   [Profile](https://wordpress.org/support/users/vanuch/)
 *   [Topics Started](https://wordpress.org/support/users/vanuch/topics/)
 *   [Replies Created](https://wordpress.org/support/users/vanuch/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/vanuch/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/vanuch/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/vanuch/engagements/)
 *   [Favorites](https://wordpress.org/support/users/vanuch/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: [[wp-Typography] Problem with image layouts](https://wordpress.org/support/topic/problem-with-image-layouts/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/problem-with-image-layouts/#post-11225373)
 * Yes, I use WPBakery for that (came with the premium theme I have).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Stock Manager for WooCommerce] import/export problem](https://wordpress.org/support/topic/importexport-problem/)
 *  [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/importexport-problem/#post-7290713)
 * I am also getting the same error. Will be following to get a fix for this.
    `
   Fatal error: Class 'WCM_Stock' not found in /home/r189397/domains/kaliiber.ee/
   public_html/wp-content/plugins/woocommerce-stock-manager/admin/class-stock-manager-
   admin.php on line 96`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Shortcode for stock status as text](https://wordpress.org/support/topic/shortcode-for-stock-status-as-text/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/shortcode-for-stock-status-as-text/#post-7233939)
 * This works! Thank you so much, you’ve helped me tremendously!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Shortcode for stock status as text](https://wordpress.org/support/topic/shortcode-for-stock-status-as-text/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/shortcode-for-stock-status-as-text/#post-7233935)
 * Thank you for replying!
 * It might be what I need but now here comes the sad part of me not understanding
   how PHP works: if I replace this
    `return $_product->get_stock_quantity();` with
   this `echo $_product->get_availability();` then it will simply not work and some
   array error comes to play. How would I correct the shortcode part of the code
   to make it write the result on the page via the shortcode?
 * I highly appreciate any assistance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[nCode Image Resizer] [Plugin: nCode Image Resizer] How to move bar under the image?](https://wordpress.org/support/topic/plugin-ncode-image-resizer-how-to-move-bar-under-the-image/)
 *  [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-ncode-image-resizer-how-to-move-bar-under-the-image/#post-2018348)
 * Excellent! Works like a charm! Thank you so much for this. You made the “almost
   a fit” plugin into a “prettty good fit” plugin for me. Cheers! 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[nCode Image Resizer] [Plugin: nCode Image Resizer] How to move bar under the image?](https://wordpress.org/support/topic/plugin-ncode-image-resizer-how-to-move-bar-under-the-image/)
 *  [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [15 years, 1 month ago](https://wordpress.org/support/topic/plugin-ncode-image-resizer-how-to-move-bar-under-the-image/#post-2018346)
 * I will second this request. I managed to modify the yellow box (though I did 
   simply comment out the exclamation mark image but if someone know how to disable
   it by code would be nice). But as for moving it below the image… Maybe someone
   can take a look at this? If tweaking the position and appearance of this yellow
   box with maybe even the chance to make pictures larger with clicking on the picture
   through the admin settings would be awesome.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Menu does not show correctly](https://wordpress.org/support/topic/menu-does-not-show-correctly/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/menu-does-not-show-correctly/#post-1330568)
 * Got it working. Killed theme options for the menu, though.
    Replaced…
 *     ```
       <?php
       			if($options['menu_type'] == 'categories') {
       				wp_list_categories('title_li=0&orderby=name&show_count=0');
       			} else {
       				wp_list_pages('title_li=0&sort_column=menu_order');
       			}
       		?>
       ```
   
 * …with…
 *     ```
       <?php $pages = wp_list_pages('sort_column=menu_order&depth=1&title_li=&echo=0');
       		  print_r($pages);
       		  ?>
       ```
   
 * If someone could point out what exactly is the difference between those two then
   maybe I could change the code without killing too much other functions.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Menu does not show correctly](https://wordpress.org/support/topic/menu-does-not-show-correctly/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/menu-does-not-show-correctly/#post-1330544)
 * Thank you for your reply. No, I haven’t solved it. I don’t know how to do that
   exactly what you suggested. I am familiar with CSS, yes, but not with how WordPress
   themes work. And there should be a better way to do this because many themes 
   hide the pages properly.
 * Still looking for an answer. Not only for this theme but there are other cool
   themes maybe I’d use that have the same problem.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Menu does not show correctly](https://wordpress.org/support/topic/menu-does-not-show-correctly/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [16 years, 5 months ago](https://wordpress.org/support/topic/menu-does-not-show-correctly/#post-1330522)
 * Anyone?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Need a preloader!](https://wordpress.org/support/topic/need-a-preloader/)
 *  Thread Starter [vanuch](https://wordpress.org/support/users/vanuch/)
 * (@vanuch)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/need-a-preloader/#post-685661)
 * Thanks for the reply.
 * Well you gave me some ideas on what to do. The only problem is, that I’m not 
   very familiar with JavaScript and it could take me endless hours to make this
   work and even then probably not very well. Maybe someone will still be up to 
   making the plugin? 🙂
 * And I don’t worry too much about visitors who have JavaScript disabled. WEB 2.0
   and stuff use a lot of it and I believe that won’t be a problem. And I’m not 
   sure I would be able to work around it either, so…
 * And what concerns about some different script for IE then I’ve heard of it but
   I’ve never tried it.

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