BIGI
Forum Replies Created
-
Forum: Plugins
In reply to: [Extra Fees for WooCommerce] Is amunt taxable problemHi Hitendra,
I’ve tried setting the standard tax to 19% but nothing changes.
I’ve also set the taxes again a few times in a few different ways but I can’t seem to get it working as intended, with the 19% tax when a product has 9% tax.
I’ve attached some screenshots with the settings for Woo tax, Standard tax, 9% tax, 19% tax, the plugin (4.2 for a total of 5 after the 19% tax).
It would also be useful to have something like woo shipping tax class , where you can select which one to use.
The use case here is:
The client sells food (cookies, cakes) with a 9% tax and a packaging fee that needs to have the 19% tax.
Seems like the images aren’t rendering… so I’ll leave the links here:https://ibb.co/nQk9Szb
https://ibb.co/CsMhBvf
https://ibb.co/yh4DKZN
https://ibb.co/fv139cn
https://ibb.co/7r02Dbq
https://ibb.co/HVh6MRx
https://ibb.co/T0gBtHF
https://ibb.co/G09h607- This reply was modified 1 year, 5 months ago by BIGI. Reason: images not rendering
Forum: Plugins
In reply to: [White Label CMS] Bricks Builder Integration/Support@videousermanuals is there a roadmap/idea board where we can vote?
I’d also like to have Bricks Builder support. I’ve been using your plugin for a while working with Elementor and now seems like I can’t find anything compatible with Bricks that works.Forum: Themes and Templates
In reply to: [Hueman] More than 1 static featured posts (no slider)Problem solved with the featured posts.
Changed this in featured.php
<?php if ( is_home() && !is_paged() && ( hu_get_option('featured-posts-count') =='2') && $featured->have_posts() ): // No slider if 2 or 1 or 0 post is featured ?>
Added this to the CUSTOMIZER – Additional CSS (I forgot about this function first time and edited the main.css file..and it didn’t work)
.featured .post { padding-bottom: 30px;}
- This reply was modified 7 years, 11 months ago by BIGI. Reason: featured.php instead of functions.php
Forum: Themes and Templates
In reply to: [Hueman] More than 1 static featured posts (no slider)So… I managed to do the opposite of what I want (I’m having first 2 posts as 50% width and the rest of them as full width), by replacing this:
<?php else: ?> <div id="grid-wrapper" class="post-list group"> <?php global $wp_query; while ( have_posts() ): the_post(); ?> <?php get_template_part('content'); ?> <?php if( ( $wp_query->current_post + 1 ) % 2 == 0 ) { echo '<div class="post-row">'; }; endwhile; echo '</div>';?> with this: <?php else: ?> <div id=”grid-wrapper” class=”post-list group”> <?php global $wp_query; echo ‘<div class=”post-row”>’; while ( have_posts() ): the_post(); ?> <?php get_template_part(‘content’); ?> <?php if( ( $wp_query->current_post + 1 ) % 2 == 0 ) { echo ‘<div class=”post-row”>’; }; endwhile; echo ‘</div>’; ?>
in the post-list-articles.php
The problem is, I can’t get what I really want (first 2 post being full width, and the others to be 50% width). Not using featured images right now.
Forum: Themes and Templates
In reply to: [Hueman] More than 1 static featured posts (no slider)So, I’m back.
In the end I did:
<?php $i = 1; echo '<div class="post-row first-row">' if ( have_posts() ) { hu_get_template_part( 'parts/post-list-articles' ); } ?>
The problem is that, all post are not transformed to “featured post” (100% width) instead only the first one, $i having no importance there.
Forum: Themes and Templates
In reply to: [Hueman] More than 1 featured postThanks alot,it worked.
Forum: Themes and Templates
In reply to: [Hueman] More than 1 featured postThanks bdbrown, sorry for my late reply.
Unfortunately I haven’t figured out yet how to make the featured posts work,I have tried some stuff(i don’t really know how to code,just some basics)If I change first counter $i = 2,I have the second post look like the first one (in a single row) but I can figure out where to change it’s width(probably because it doesn’t exist).
So, my problem is that I don’t know where to look the start the counting on the first row.
It would be great if you can show it to me.
Thanks alot again.