We’re trying to sell tables of 10 for our event.
For comparison, in Eventbrite, it’s possible to create a single line item that automatically ads 10 tickets to the cart for a specified price. A buyer then has to enter the names of 10 attendees in order to checkout. We are trying to emulate this with your plugin.
The crux of the matter is that we need to collect attendee information for each ticket holder. We can not just have a line item that is x10 the price of 1 ticket (hence the reason to use this plugin, otherwise we could do this with ‘plain’ WooCommerce).
In some instances, the table of 10 tickets would come at a discount as well. I’m not sure if that plays into this. I do know I can create coupon codes. That’s not what I’m trying to do here. We need to simplify the ticket-buying process by letting users click one button that buys a table of 10 at a discount (no entering numbers, no entering coupon codes).
I have poked around your plugin and tried to search about this but so far couldn’t find anything.
Your help would be greatly appreciated.
]]>Why is a website page showing more than once in a Top Pages/Posts Report ?
Is this due to multiple URL’s to that one page from multiple pages … or ??
Is the Pro version needed to show which pages link to the target page ?
Thanks,
Pete
]]>Here’s a link to a screenshot of what I want to get https://eliyahna.com/wp-content/uploads/2019/12/multiples.jpg
]]>I have multiple queries in the same page, like this:
$args_1 = array (
'category_name' => get_query_var( 'category_name' ),
'post__in' => $sticky = get_option( 'sticky_posts' );
'orderby' => 'date',
'order' => 'DESC'
);
$sticky_query = new WP_Query ($args_1);
// loop
$args_2 = array(
'category_name' => get_query_var( 'category_name' ),
'post__not_in' => get_option( 'sticky_posts' ),
'category__not_in' => array(11114),
'orderby' => 'date',
'order' => 'DESC'
);
$query_2 = new WP_Query ($args_2);
// loop
$args_3 = array(
'category_name' => get_query_var( 'category_name' ),
'post__not_in' => get_option( 'sticky_posts' ),
'category__in' => array(11114),
'orderby' => 'date',
'order' => 'DESC'
);
$query_3 = new WP_Query($args_3 );
// loop
I would:
1) limit the total of posts per page to 15
2) (I can’t do this, I’ve searched anywhere but I didn’t find a solution) Make this “combined” pagination works . Now, and it’s logical, the second page is the same as the first page…
Or the solution can be to make only one query and group the posts and order the groups instead? I’ve tried with something like:
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
if ( 'post' === get_post_type() ) { // Only display posts from post post type
// Do what you need to do post post type posts
}
}
rewind_posts(); // Rewind the loop so we can run it again
while ( have_posts() ) {
the_post();
if ( 'page' === get_post_type() ) { // Only display posts from page post type
// Do what you need to do page post type posts
}
}
}
but the pagination doesn’t work: in fact, it calculates the limit of 15 posts per page for each of two loops.
How can be so difficult in WordPress make working the pagination for a common pattern like this?
Thanks in advance!
Thanks
]]>https://www.ads-software.com/plugins/learnpress/
]]>