louie171
Forum Replies Created
-
Forum: Plugins
In reply to: [BadgeOS] Badges not awarded based on pointsthanks for coming back to me @learningtimes , I managed to resolve it by deactivating BadgeOs and BadgeOs Community and then reactivating them.
Works ok now.
Forum: Plugins
In reply to: [Woocommerce] Order address issue, with United KingdomI mean in the order (order report, delivery note etc …)
I found the reason it’s because of the base country being set to UK.
I have client in Europe, that had the issue, I set base country to their country and it fixed the issue/feature.
Forum: Plugins
In reply to: [WP Instagram Widget] hashtag insted of username?great plugin Scott, would love to see the hashtag option also.
Forum: Plugins
In reply to: recommendations for a image / video wall pluginthanks Jan
Forum: Plugins
In reply to: recommendations for a image / video wall pluginI think I should have posted this in the miscellaneous forum, is there a way I can move it to there ?
Forum: Fixing WordPress
In reply to: altering the query used in wp admin reportsthanks kwbridge , I did it by looking at the source of that plugin.
Forum: Themes and Templates
In reply to: [DevDmBootstrap3] Adding Woocommerce support to DevDmBootstrap3hey Danny
I’ve fired this over to you now.
Its abit bare bones at the moment, but I plan to improve it further when I get time (like adding the cart rollover in the header like many other woocommerce compatible themes have).
Forum: Plugins
In reply to: [Plugin: Woocommerce] charge x amount shipping on orders over y amountI think I’ve done this now in code. By making a woocommerce shipping method plugin (using the shipping api).
It would be great to get some feedback from anyone who understands this kind of thing.
public function calculate_shipping($package = array()) { global $woocommerce; $cartTotal = $woocommerce->cart->get_cart_total(); $cartTotalNumber = preg_replace("/([^0-9\\.])/i", "", $cartTotal); // remove all chars except numbers and dot $minimumOrderTotalToQualifyForThisShippingRate = 100; if ($cartTotalNumber <= $minimumOrderTotalToQualifyForThisShippingRate) // cart not qualify for this shipping rate if less than 100 total return; //echo "qualifys for this rate"; $rate = array( 'id' => $this->id, 'label' => $this->title, 'cost' => 5, /* shipping rate for the order */ ); // Register the rate $this->add_rate($rate); }
Forum: Plugins
In reply to: [Firelight Lightbox] Re: easy-fancybox readme file detected by wordfenceI have the exact same warning being generated by Wordfence.
Doe anyone know if this is anything to worry about ?
thanks felmantbuntog
I can confirm This code does work and is very useful !
I wish woocommerce would document this.
Forum: Fixing WordPress
In reply to: 301 infinite redirect loop error on SOME poststhanks Marius
Forum: Fixing WordPress
In reply to: 301 infinite redirect loop error on SOME postshi guys,
I’m having the same issue. I have the patched 4.4.1 version , but still have the same problem its happening when i go to /wp-admin/
I’ve tried the normal things:
deactivated all plugins
switched to a different themestill the problem persists ?
Forum: Plugins
In reply to: [Photo Gallery by 10Web - Mobile-Friendly Image Gallery] Empty pageI have the same problem using wp 3.9.2 and photogallery 1.1.28 on mac in chrome 36.0.1985.143
Forum: Themes and Templates
In reply to: site in one page carourselI’m thinking I could do it with bootstrap and a full width carousel. Set a list of pages to include somewhere and just pull them in.
hi Jeremy
I fixed it turned out to be yoast SEO plugin was giving me the issue !
Sorry ??
regards