tex0gen
Forum Replies Created
-
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
In reply to: Best plugins to make website look good mobile?Or you could use:
background-size: cover;
If you need to support earlier versions of IE, you can use:
Forum: Fixing WordPress
In reply to: 403 forbiddenYou 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
In reply to: [YITH WooCommerce Brands Add-On] Brand not in shop pageAdd 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
In reply to: [YITH WooCommerce Product Gallery & Image Zoom] Doesn't actually zoomIt was an issue with values being reset on plugin update. No idea why.
I fixed my issue anyway.Forum: Localhost Installs
In reply to: My Website in MAMP is not loading properlyUse wp-migrate-db plugin to migrate your installation. You ideally don’t want to be messing directly with the database for this exact reason.
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.
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.
Just an update, we are looking into this but cannot seem to replicate the error. Bare with us for the mean time.
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.
Hi Kineticcanine,
Can you tell me, are you running the latest version of the folders plugin?
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. ??
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.
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.
Hi there, sorry for the late reply.
Can you tell me, which version of WordPress you are using?