Title: Steve North's Replies - page 6 | WordPress.org

---

# Steve North

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 76 through 90 (of 116 total)

[←](https://wordpress.org/support/users/tex0gen/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/tex0gen/replies/?output_format=md) [2](https://wordpress.org/support/users/tex0gen/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tex0gen/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/tex0gen/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/tex0gen/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/tex0gen/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/tex0gen/replies/page/7/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] Display all posts from folder](https://wordpress.org/support/topic/display-all-posts-from-folder/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/display-all-posts-from-folder/#post-6528556)
 * Ah i see,
 * yeah, folders actually just uses a custom taxonomy for this exact reason.
    The
   taxonomy name is:
 * `folders4[POST_TYPE]`
 * So for posts, the taxonomy would be:
 * `folders4posts`
 * Here is a snippet to pop into your theme:
 *     ```
       $taxonomies = array(
           'folders4posts',
           'folders4pages'
       );
   
       $args = array(
           'orderby'           => 'name',
           'order'             => 'ASC',
           'hide_empty'        => true,
           'exclude'           => array(),
           'exclude_tree'      => array(),
           'include'           => array(),
           'number'            => '',
           'fields'            => 'all',
           'slug'              => '',
           'parent'            => '',
           'hierarchical'      => true,
           'child_of'          => 0,
           'childless'         => false,
           'get'               => '',
           'name__like'        => '',
           'description__like' => '',
           'pad_counts'        => false,
           'offset'            => '',
           'search'            => '',
           'cache_domain'      => 'core'
       ); 
   
       $terms = get_terms($taxonomies, $args);
   
       foreach ($terms as $key => $term) {
       echo $term->name;
       }
       ```
   
 * Some of that snippet is taken from the wordpress codex:
 * [get_terms()](https://codex.wordpress.org/Function_Reference/get_terms)
 * In a future version of folders, we will be adding shortcodes to do this.
 * I hope that helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] Display all posts from folder](https://wordpress.org/support/topic/display-all-posts-from-folder/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/display-all-posts-from-folder/#post-6528528)
 * You can enable folders for posts in the options menu.
 * You can then do it one of 2 ways.
 * 1) Select the folder and click from the sidebar menu.
    2) Go to posts list and
   filter by your selected folder.
 * Hope this helps.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Best plugins to make website look good mobile?](https://wordpress.org/support/topic/best-plugins-to-make-website-look-good-mobile/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/best-plugins-to-make-website-look-good-mobile/#post-6497115)
 * Or you could use:
 * `background-size: cover;`
 * If you need to support earlier versions of IE, you can use:
 * [https://github.com/louisremi/background-size-polyfill](https://github.com/louisremi/background-size-polyfill)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [403 forbidden](https://wordpress.org/support/topic/403-forbidden-81/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/403-forbidden-81/#post-6484239)
 * You need to chmod your www or htdocs folder. You can use an FTP program like 
   filezilla. Just right click a folder and set permissions to 775.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Brands Add-On] Brand not in shop page](https://wordpress.org/support/topic/brand-not-in-shop-page/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/brand-not-in-shop-page/#post-6396160)
 * Add this to functions.php
 *     ```
       function brand_items() {
         global $wp_query;
         $thisis = $wp_query->get_queried_object();
         $thisItem = wp_get_post_terms($thisis->ID, 'yith_product_brand');
         echo '<h2>'. $thisItem[0]->name .'</h2>';
         $img = get_woocommerce_term_meta( $thisItem[0]->term_id, 'thumbnail_id', true );
         echo wp_get_attachment_image( $img, 'thumbnail' );
       }
       add_action('woocommerce_single_product_summary', 'brand_items', 2);
       ```
   
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[YITH WooCommerce Product Gallery & Image Zoom] Doesn't actually zoom](https://wordpress.org/support/topic/doesnt-actually-zoom/)
 *  Thread Starter [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/doesnt-actually-zoom/#post-7997096)
 * It was an issue with values being reset on plugin update. No idea why.
    I fixed
   my issue anyway.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [My Website in MAMP is not loading properly](https://wordpress.org/support/topic/my-website-in-mamp-is-not-loading-properly/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/my-website-in-mamp-is-not-loading-properly/#post-6432560)
 * Use wp-migrate-db plugin to migrate your installation. You ideally don’t want
   to be messing directly with the database for this exact reason.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Product Gallery & Image Zoom] Zoom does not Zoom, just shows the same picture again](https://wordpress.org/support/topic/zoom-does-not-zoom-just-shows-the-same-picture-again/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/zoom-does-not-zoom-just-shows-the-same-picture-again/#post-6402342)
 * Go to Yith Plugins > Zoom Magnifier. In there, there are some settings. It may
   say 600 in 2 boxes there. Change those values to 1800. Then download a plugin
   called “force regenerate thumbnails”. Run that and hey presto.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Product Gallery & Image Zoom] Zoom does not Zoom, just shows the same picture again](https://wordpress.org/support/topic/zoom-does-not-zoom-just-shows-the-same-picture-again/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/zoom-does-not-zoom-just-shows-the-same-picture-again/#post-6402338)
 * Not sure what changed but changing the image size to around 1800px in the settings
   and then force re-generating thumbnails seems to have fixed the issue. I can 
   bet most people with this issue have a small size set as default.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] Media Folders Not Displaying](https://wordpress.org/support/topic/media-folders-not-displaying/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/media-folders-not-displaying/#post-6345443)
 * Just an update, we are looking into this but cannot seem to replicate the error.
   Bare with us for the mean time.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YITH WooCommerce Product Gallery & Image Zoom] Zoom does not Zoom, just shows the same picture again](https://wordpress.org/support/topic/zoom-does-not-zoom-just-shows-the-same-picture-again/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/zoom-does-not-zoom-just-shows-the-same-picture-again/#post-6402328)
 * I too have the same issue. It worked on a previous version but update broke it.
   To put it blatently seeing as other users appear to be having the same problem
   but never seem to reply…
 * When hovering over the image, the image inside the zoom box appears to be 100%
   width of the overlay and as a result has no real zoom function at all.
 * I disabled my css stylesheets but it seems to be a problem with the plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] Media Folders Not Displaying](https://wordpress.org/support/topic/media-folders-not-displaying/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/media-folders-not-displaying/#post-6345439)
 * Hi Kineticcanine,
 * Can you tell me, are you running the latest version of the folders plugin?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] media not displaying in 'media folders'](https://wordpress.org/support/topic/media-not-displaying-in-media-folders/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/media-not-displaying-in-media-folders/#post-6376728)
 * That’s not a feature we have added in just at this moment. The media library 
   interface isn’t the most customizable of the wordpress interfaces. It is something
   we hope to have in a future release. For now, i’m glad the update fixed your 
   issue.
 * Thanks for using Folders. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] media not displaying in 'media folders'](https://wordpress.org/support/topic/media-not-displaying-in-media-folders/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/media-not-displaying-in-media-folders/#post-6376573)
 * Okay, the release just made should fix the above issue. Just in case anyone has
   issues in the future with taxonomies not updating the post count, use the following
   from within register_taxonomy();
 *     ```
       register_taxonomy(
       'genre',
       array('post'),
       array(
       'hierarchical' => true,
       'labels' => $labels,
       'show_ui' => true,
       'query_var' => true,
       'rewrite' => array( 'slug' => 'genre' ),
       'update_count_callback' => '_update_post_term_count' // Add this to your taxonomy
       );
       ```
   
 * Please confirm if this has resolved the issue for you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Folders - Unlimited Folders to Organize Media Library Folder, Pages, Posts, File Manager] media not displaying in 'media folders'](https://wordpress.org/support/topic/media-not-displaying-in-media-folders/)
 *  [Steve North](https://wordpress.org/support/users/tex0gen/)
 * (@tex0gen)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/media-not-displaying-in-media-folders/#post-6376572)
 * Hi idyllik,
 * I have seen this behavior before from wordpress. This is not a folders specific
   issue but i will issue a fix using the folders plugin. Next release will reflect
   this. We should be looking at an update for this bug fix in the next few hours.
 * Thanks.

Viewing 15 replies - 76 through 90 (of 116 total)

[←](https://wordpress.org/support/users/tex0gen/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/tex0gen/replies/?output_format=md) [2](https://wordpress.org/support/users/tex0gen/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tex0gen/replies/page/3/?output_format=md)…
[5](https://wordpress.org/support/users/tex0gen/replies/page/5/?output_format=md)
6 [7](https://wordpress.org/support/users/tex0gen/replies/page/7/?output_format=md)
[8](https://wordpress.org/support/users/tex0gen/replies/page/8/?output_format=md)
[→](https://wordpress.org/support/users/tex0gen/replies/page/7/?output_format=md)