cerstrand_mace
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Share Buttons by Supsystic] Linkedin URL problemI have just the same problem, and I just updated to the latest version of the plugin. However, the link is still without the ‘=’ sign. Fix this?
Thanks!
Forum: Plugins
In reply to: [Search & Filter] Results on search.phpThanks!
I just purchased the Pro version. Waiting for the payment to be confirmed so that I can get my product!
Forum: Plugins
In reply to: [Search & Filter] Results on search.phpThanks for the answer!
I see, so If I get the Pro version I will be able to get the results on the default search.php? That would make my day 🙂 The reason I didn’t look very much into the pro version is that it looked a bit too much for my needs, I only need the ability to filter through 3 different taxonomies and view a result of posts. If you can assure me that I will be able to do that I will purchase the Pro version.
Thanks!
Forum: Plugins
In reply to: [Woocommerce CSV importer] Featured image duplicated to galleryTried uploading to an external server and went with the URL instead. It worked fine so I guess I go with that method. It would have been cleaner and faster if the medias import method worked though…
Forum: Plugins
In reply to: [Woocommerce CSV importer] Featured image duplicated to galleryI tried with the featured_image and product_gallery fields, but the images won’t be added to the products at all. I checked the filenames and they’re correct. They showed up with the images field but not with featured_image and product_gallery. What might be wrong?
Forum: Plugins
In reply to: [Woocommerce CSV importer] Featured image duplicated to galleryThanks a lot!
Forum: Plugins
In reply to: Woocommerce – trouble displaying attribute valuesWill do
Forum: Plugins
In reply to: Woocommerce – trouble displaying attribute valuesSorry for the ugly code spaces. Here:
<?php $atts = get_the_terms( $product->id, 'pa_attribute-1'); foreach ( $atts as $att ) { ?> <li> <?php echo $att->name; ?> </li> <?php } wp_reset_query(); ?> <?php $atts = get_the_terms( $product->id, 'pa_attribute-2'); foreach ( $atts as $att ) { ?> <li> <?php echo $att->name; ?> </li> <?php } wp_reset_query(); ?> <?php $atts = get_the_terms( $product->id, 'pa_attribute-3'); foreach ( $atts as $att ) { ?> <li> <?php echo $att->name; ?> </li> <?php } wp_reset_query(); ?> <?php $atts = get_the_terms( $product->id, 'pa_attribute-4'); foreach ( $atts as $att ) { ?> <li> <?php echo $att->name; ?> </li> <?php } wp_reset_query(); ?>Forum: Fixing WordPress
In reply to: Post thumbnail within ACF repeater -> post objectGot it! Removed the <img> tags around <?php the_post_thumbnail($post->ID, “medium”); ?>”>
Forum: Fixing WordPress
In reply to: Post thumbnail within ACF repeater -> post objectForgot to put it within code tags, sorry…
<?php $post_object = get_sub_field('flow-post'); if( $post_object ): // override $post $post = $post_object; setup_postdata( $post ); ?> "> <div class="flow-post"> <img src="<?php the_post_thumbnail($post->ID, "medium"); ?>"> <h4><?php the_title(); ?></h4> <?php the_excerpt(); ?> </div> <?php wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly ?> <?php endif; ?> <?php else: ?>Forum: Plugins
In reply to: [WooCommerce] Single page breadcrumbs shows random post navigationI had the same issue. The thing I did wrong was that I had put the breadcrumb call function outside the product loop. I put it inside and the problem was solved.
Forum: Hacks
In reply to: the_title as category in queryI realised that I went better of using the category system in wordpress. In this way the specific category page automaticly gets the name of the category which it is. I thank you all for the help anyway!
Forum: Hacks
In reply to: the_title as category in queryWhen I put the query inside the main loop the content won’t show at all. This is what I did, and it still won’t work:
<?php if ( have_posts() ) { while ( have_posts() ) { // The Query $args= array( 'category_name' => $post->post_name, 'post_type' => 'product' ); query_posts($args); } // end while } // end if