rsharrer
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Set a minimum order for cart total?Terry, it works perfectly. Thank you very much!!
Forum: Plugins
In reply to: [WooCommerce] Set a minimum order for cart total?Nope still stays for the above $50.00 orders too, maybe I am not using the right hook?
Forum: Plugins
In reply to: [WooCommerce] Set a minimum order for cart total?Hi All, looks like we have a pretty smart group here, I am having a similar issues, I want to add a small order fee for order less than $50.00. I am halfway there I am currently using
/* add custom price for small order fee */ add_action( 'woocommerce_cart_totals_before_shipping', 'cp_check_total' ); function cp_check_total() { global $woocommerce; $minorder = 50.00; $excost = 4.95; if($woocommerce->cart->get_cart()->cart_contents_total>$minorder) { end(); }elseif($woocommerce->cart->get_cart()->cart_contents_total<$minorder) { $woocommerce->cart->add_fee( 'Small Order Fee', $excost, $taxable = false,''); } }
it is adding the small order fee just fine, but is will add it to all orders regardless of the order total, so even if it is above $50.00 the fee is still added. Any Ideas? Thanks in advance.
Forum: Plugins
In reply to: [Admin Columns] All Dates show up as December 12, 2012 in the back endTobias, You Rock, seems to be working, back to normal.
Thank you so much, this is a great plugin!!
Ryan
Forum: Plugins
In reply to: [Admin Columns] All Dates show up as December 12, 2012 in the back endIf it tell you anything important, I updated to the newest version a few hours ago, but it is still giving me the same problem, seems like the date being displayed in the back end admin area is always today’s date they all show the current date and not the date that should be displayed.
Forum: Plugins
In reply to: [Admin Columns] All Dates show up as December 12, 2012 in the back endWell, I changed them, it did not work, I tried to change the date format in settings>General of the WordPress install as well, additionally I reverted back to WP ver. 3.42 as well, and still am having the same problem. I updated to your beta version of your plugin as well, and I am still having the issue.
Thank you for your help.
Ryan
Forum: Plugins
In reply to: [Admin Columns] All Dates show up as December 12, 2012 in the back endmm/dd/yyyy, I never thought to change them, that is the way the customer wants them, but l will try to change them and see if that make a difference.
Forum: Plugins
In reply to: [Admin Columns] Blank sceenI am having the same issue, when I go to the settings Admin Columns in the back end administration and click it, I get a blank screen when I turned on the debugging it said
Notice: Constant WP_MEMORY_LIMIT already defined in /home/tvaced12/public_html/wp-config.php on line 93on that line in the wp-config.php I have
define(‘WP_MEMORY_LIMIT’, ‘120M’);
Additionally when you show the Available date field in the post list screen, the date shows up as december 12, 3200, but it displays correctly on the front end as december 12, 2012.
Forum: Themes and Templates
In reply to: How do I remove date created’ from my pages?Hi All,
I have seen quite a bit of questions come in about how to remove the author and date from pages in a WordPress Blog, it really is quite simple here is how you do it.
Just remove author details from the below mentioned code from page.php file of current active theme:
<?php the_time(‘F jS, Y’) ?>Author: <?php the_author() ?>
That’s it, now that was not that hard was it?
you can find that code on line 13 in your page.php file The first line of code <?php the_time(‘F jS, Y’) ?> is your date and the second line Author: <?php the_author() ?> that is the Author part Delete both save your page.php re-upload it and you are done go to your page https://ccuconsulting.com and you will see that you no longer have date or Author showing up on your pages. Now it looks a bit more like a regular web site.
Hope this helps some of you.
__________________
Ryan Sharrer
Level 5 Development Group, LLC
Web Design Specialist│Web Hosting| Domains