vascofmdc
Forum Replies Created
-
Hi everyone.
I have this same error which also destroyed my dashboard. I solved this by disabling the plugin “WooCommerce Advance Order Status” by AppZab, that adds custom order statuses to your WooCommerce platform with email notifications for each order status.
When visiting the site of its builder, I found the domain to be for sale. I don’t think there will be any updates coming from there.Forum: Developing with WordPress
In reply to: limit get_categories() to only three categoriesHi Michael,
thank you for your imput. It solved my problem. Funny thing is I had scanned trhough that page before but missed the point completely. This is my endcode for posterity:
<?php $categories = get_categories( array( 'include'=> array(78, 72, 76), 'orderby' => 'name', 'hide_empty' => false, 'parent' => 0 ) ); ?> <?php foreach ( $categories as $category ) : ?> <div class="grid"> <div class="intro_linkToCategory"> <a href="<?php echo esc_url( get_category_link( $category -> term_id ) ); ?>"> <img src="<?php echo z_taxonomy_image_url( $category -> term_id ); ?>" /> <h2><?php echo $category->name; ?></h2> </a> </div><!-- end of intro_linkToCategory --> </div><!-- end of grid --> <?php endforeach; ?>the grid reference is part of amazium grid system wich I use for responsiveness.
once again, thank you all for the imput.
Forum: Developing with WordPress
In reply to: limit get_categories() to only three categoriesHi Sajid
Thank you for your answer. I have checked your code example. I’m looking for a way to be able to input the category id of the categories I want to display. Normaly with posts one can add the post id’s into the arguments array i’m looking for a simmilar thing, maybe with a different code approach.
Thank you for taking time to answer my question nonetheless.
kind regards,
Vasco.Forum: Plugins
In reply to: [WooCommerce] creating woocommerce booking for event boothsHi Thomas,
Thank you for the help, I will try that. but how would I go about sending the correct date or post title with the corect booth into the cart? that is one of the strugles I’m having.
Forum: Plugins
In reply to: [WooCommerce] creating woocommerce booking for event boothsHi MIke, thank you for your answer.
I might have explained it incorrectly. I’m not using the bookings plugin. Had a look at it but it didn’t fit the needs. As far as I seen there is not a plugin that does what I need hence my ask for help.
What would be the best way to go arround doing this?
Forum: Plugins
In reply to: [WooCommerce] creating woocommerce booking for event boothsHi Caleb, thank you for your answer.
I have thought of that. The thing is that every speciffic booth has it’s own price and specs. Customers can select quantity on the booths in order to make them bigger. Hence me setting this up the way I did. Will variable products still work in this case? Technically we are selling booths for an event not an event with booths.
I have customised many of wordpress websites but never encountered a case like this. hence my question.
Thank you
hi, i’m having the same problem as stated by Rebelguru under point nr1.
Thanks in advance
Vasco