amandathewebdev
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Customer has to be logged in to see Checkout pageAwesome, thank you!
Forum: Plugins
In reply to: [WooCommerce] Remove checkout process and just submit as a quoteGreat, that seems to be what I need. Thank you!
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesThanks for all your help. The themes last update was Dec 12th so Woocommerce must have updated since then. I’m half tempted to override Woocommerce with 2.4.
I did message the theme author about getting something updated, I have a Woocommerce plugin that is conflicting with outdated theme files. Hopefully they get back to me or I will have to update them myself because I am on a deadline.
Oh, the crazy world of web development, lol.
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesSo looks like woocommerce is 2.5 and the theme is using 2.4
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesYes I’m sorry I didn’t realize you were asking for it. Here is what it looks like in woocommerce: http://pastebin.com/tmySrbTE
I actually found that my theme has a much different content-product.php. I commented out all links that are obviously links (besides Quick View) and I also lost my Add to Cart button. Here is the theme’s file: http://pastebin.com/KB0VRfb4
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesYes and it’s 2.5
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesCrap you’re right. I did lose the add to cart. Reopened this.
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesSomeone was able to solve this on wordpress.stackexchange, here was their solution:
Comment out
do_action( 'woocommerce_before_shop_loop_item_title' );and
do_action( 'woocommerce_after_shop_loop_item' );Here’s a link to their answer: http://wordpress.stackexchange.com/questions/215124/remove-woocommerce-product-link/215127#215127
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesI feel like you’re really close with that, but the links are still active.
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesHi again,
Line 49 is an ending curly bracket and line 76 is a space. Can you tell me the lines according to this: https://github.com/woothemes/woocommerce/blob/master/templates/content-product.php#L49
Thanks for your help!
Forum: Plugins
In reply to: [WooCommerce] Hide product detail pagesHi Iorro,
Thanks for replying. /product-image.php is for the product’s image gallery though, or at least that’s what it looks like to me. My goal is to remove the link to the product detail page from the product listings.
To clarify I mean the product listings on /shop or /product-category, etc. I don’t want the listings to link to a detail page because I just want to use Quick View, no deed for a detail page.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce page that displays two product categoriesJesse, thank you! I don’t know HOW I missed that you replied a month ago, but that link you provided got me out of a bind. Thank you for your help!
Here’s my code if anyone is wondering. I created a template for my category called
taxonomy-product_cat-prefabricated.phpand added this:<?php $args = array( 'post_type' => 'product', 'posts_per_page' => 12, 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => 'prefabricated' ), array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => 'granite' ) ), ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) : $loop->the_post(); ?> <ul> <li> <a rel="external" href="<? the_permalink()?>"> <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it. the_post_thumbnail(); } ?> </a> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> </li> </ul> <?php endwhile; } wp_reset_postdata(); ?>Forum: Plugins
In reply to: [WooCommerce] Show page with TWO product categoriesI’d really like to be able to do this. Any thoughts? It’s so simple, there has to be a way I’m missing.
Forum: Fixing WordPress
In reply to: Why won't my text properly wrap around images?Hi pmundo01,
I agree with NeoTechnomad, you should let the theme creators know. But in the mean time, if the codex is too intimidating, you could add this plugin which lets you add your own CSS.
You can install this plugin: https://ww.wp.xz.cn/plugins/simple-custom-css/
And then add the CSS that girlieworks provided.
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] Stopped workingYes!!! Thank you! I checked “Enable archives” and now the colors are filtering again. Thank you for your help!