etinteractive
Forum Replies Created
-
Forum: Plugins
In reply to: [Woocommerce Customers Order History] Maximum Order History is only 10@javmah issue still exists
Forum: Plugins
In reply to: [Woocommerce Customers Order History] Maximum Order History is only 10Same exact issue, max of 10, customer has 25+, only shows last 10
Forum: Plugins
In reply to: [WooCommerce] Apply Coupon box not showing up at checkout pageI have tested this on a default install of woo and default 2017 theme.
if one coupon is already applied, checkout hides the coupon link, meaning you can only ever apply one coupon at checkout. in order for the coupon link/box to appear you have to remove the one coupon applied.
@mtruittForum: Plugins
In reply to: [WooCommerce] Apply Coupon box not showing up at checkout pageWoo definitely screwed the coupon system up.
1. If a coupon is already applied, the checkout page will no long shower coupons
2. If a coupon is applied, both cart/checkout do not allow you to apply any additional coupons (1 per order). doesnt make any sense.Forum: Plugins
In reply to: [WC Duplicate Order] Links do not appearNO they do not.
Forum: Plugins
In reply to: [WC Duplicate Order] Links do not appearUnfortunately those 3 hover links do not appear for me. I disabled a ton of backend woo plugins.
As for edit/actions , it does work on posts/pages and I have another plugin called “duplicate post” which works just fine on my site.
just realized the thin lines are actually show/hide links to the sidebar rules.
that is not a user friendly UI, at least but a button/link/arrow or something that indicates its a show/hide.
otherwise the plugin is so far so good.
Forum: Fixing WordPress
In reply to: Help with wp_list_pagesIT was for illustration purposes
I have pages called
“Military”, “Law Enforcement”,so
/root/products/Military/Product 1/
/root/products/Military/Product 2/
etcthese are ALL pages, no posts.
Forum: Fixing WordPress
In reply to: Help with wp_list_pagesCategories is for Blog/Posts, not pages.
All my information is in “Pages”.
Forum: Themes and Templates
In reply to: Custom query based on post idIf i change my admin setting
Blog pages show at most: from 3 to 100, they all appear.
So now its all fixed!!!
Thanks Church! you f’n ROCK!
ETI
Forum: Themes and Templates
In reply to: Custom query based on post idNice try but same results, it only shows 3 posts.
it somehow is taking the pagination from my portfolio page.
If i go into admin and look at all posts with cat=1, i get 8 results.
Any other ideas???
Forum: Themes and Templates
In reply to: Custom query based on post idNow i have a display problem with this code.
I have this code and it works, however the display of posts, only shows the last 3.
Almost like its paginated to 3, as my portfolio page is set to pagination of 3. How is this inheriting this?
<?php $querystr = " SELECT wposts.* FROM $wpdb->posts wposts WHERE wposts.post_status = 'publish' AND wposts.post_type = 'page' AND wposts.post_date < NOW() and wposts.id <> 117 ORDER BY wposts.post_title ASC "; $pageposts = $wpdb->get_results($querystr, OBJECT); ?> <?php if ($pageposts): ?> <?php foreach ($pageposts as $post): ?> <?php setup_postdata($post); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?></a></h2> <? if($post->ID == "5"){ $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(); $wp_query->query('numberposts=25&order=DESC&orderby=post_title&category=1'); ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <?php the_title(); ?> <?php endwhile; } ?> </div> <?php endforeach; ?> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here. <?php endif; ?>
The output looks like this:
Page 1
Page 2
Page 3
Page 4
Page 5- Post 1
- Post 2
- Post 3v
Page 6
I have 8 posts, but only 3 show up, even though my query says numberposts=25.
Any ideas???
Forum: Themes and Templates
In reply to: Custom query based on post idTHANK YOU CHURCH!!!!
works great!!!
Forum: Themes and Templates
In reply to: Custom query based on post idnobody?? ??