IZALK
Forum Replies Created
-
Forum: Plugins
In reply to: [WP24 Domain Check] Suggestions if domain is already takenHi,
Thanks for your reply.
It seems useful to me because if my preferred TLD is not available I might want to check another TLD, with the same domainname.
I hear your point about taking long if the list of TLD is long, but right now we also have that same long list when we search for a domainname without the extension? Right? Or am I misunderstanding you?
A button might be a good compromise.
Personally I’d prefer the list (same as when searching without extension)..But let me end with saying how much I appreciate you building this free plugin. It is great.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Shortcode custom placementThank you!
Forum: Fixing WordPress
In reply to: How to add author page to custom user role?Got this exact same issue.
My author template has no conditional code based on roles, it just gets user data.
But like PIXELovely explained in newer WooCommerce versions it seems that user with an customer role somehow can’t have an author page…
Cant find much info on Google either. Strange.
Forum: Plugins
In reply to: [Admin Bar User Switching] First or Last Name instead of usernameWould love this feature also. My users’ usernames are just numbers (A client number), so it would definitely make sense too be able to search on first and / or lastname also….
And just like kater said: amazing plugin.
Okay I’m idiot.. I now see that the very first feature advertised is exactly that.
“Add and manage additional custom wholesale roles so you can segregate wholesale customers by commitment levels”
Haha.Okay I’ll be buying soon!
Thanks Josh, great plugin!Hi Josh,
Thanks for your quick reply.
I already had checked out the premium version, and am very interested. But it wasn’t really clear to me if it offers this particular feature?So you’re saying if I purchase the premium version I will be able to have multiple user roles that are included in the wholesale calculations?
Please let me know ??
Thanks again.
Ivar.Forum: Plugins
In reply to: [WP Store Locator] CSV upload?Man, this topic and that Batch Geocode tool have saved me hours of work. Awesome, guys.
Awesome, thank you.
Can’t believe that out of the 20+ combo’s I tried I didn’t try that one ??Okay, managed to get this working by doing the following,
adding an extra function to your plugin:
/** * Return/Show the order total amount */ public function get_total_items() { $total_items = $this->export->order->get_item_count(); return $total_items; } public function total_items() { echo $this->get_total_items(); }
then adding this to my PDF template:
<?php $totalitems = $wpo_wcpdf->get_total_items(); ?> <?php _e( "Total Items:", 'woocommerce' ); ?><strong> <?php echo $totalitems ?></strong>
Maybe you could help me move that function to my functions.php instead of the plugin file, so it won’t get overwritten when updating the plugin?
Thanks in advance, and I hope this is helpfull to somebody else as well ??
Hi Ewout,
Thanks for your fast reply..
I actually just solved it.
After trying a lot of different things this turned out to work:
<?php $product_var_id = $item['variation_id']; $getean = get_field( "_ean_code", $product_var_id ); $getsku = get_field( "_var_sku", $product_var_id ); ?>
Then echo the ean/sku var’s…
So $item[‘variation_id’]; works….
Again, thanks for your quick reply.
Your plugin works really well.