fightthecurrent
Forum Replies Created
-
Hey Bojan!
This is still an issue 5 months later. Can this be reprioritized?
Forum: Plugins
In reply to: [WooCommerce Mijireh Checkout] Slurp this Page still brokenY’all are awesome!
Forum: Plugins
In reply to: [WooCommerce Mijireh Checkout] Slurp this Page still brokenAha! I forked the plugin and made some updates and I’ve got it working. https://github.com/nathanielks/woocommerce-gateway-mijireh-checkout
Forum: Plugins
In reply to: [WooCommerce Mijireh Checkout] Slurp this Page still brokenHey Again Claudio!
Any word here? If you can tell me where WC_Gateway_Mijireh::page_slurp() is called, I can dive deeper into this and see what’s going on.
Forum: Plugins
In reply to: [WooCommerce Mijireh Checkout] Slurp this Page still brokenHey again, Claudio!
I’m trying to dive deeper into how this works. One thing I don’t understand is how and when WC_Gateway_Mijireh::page_slurp() is called. I don’t see it referenced anywhere?
Forum: Plugins
In reply to: [WooCommerce Mijireh Checkout] Slurp this Page still brokenI’ll keep you posted if I find anything!
Forum: Plugins
In reply to: [WooCommerce Mijireh Checkout] Slurp this Page still brokenBoth environments =\
Hey Fee,
Are you sure the
switch_to_blog
s are causing the issues? Your point about using update_blog_option vs switch_to_blog isn’t totally accurate… if you look here you’ll see core does just that.Perhaps its something else?
Forum: Plugins
In reply to: [Posts 2 Posts] get all posts connected to a user?You’re awesome.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce – option to add attributes in "Sort by"Hey guys,
You can modify the Sort By select dropdown by modifiying the Sorting template. Drag the default template found in wp-content/plugins/woocommerce/templates/loop/sorting.php to your theme’s woocommerce folder. You should end up with wp-content/themes/theme-name/woocommerce/templates/loop/sorting.php. Feel free to modify away!
Forum: Plugins
In reply to: [Post Types Order] Not sufficient permissions when post type shown in menuHeyo,
I purchased your Advanced plugin and it’s still not working =\
It’s not glamorous, but it does the job for now:
function cur_modify_retrieve_password_messsage($message, $key){ // Replace first open bracket $message = str_replace('<', '', $message); // Replace second open bracket $message = str_replace('>', '', $message); // Convert line returns to <br>'s $message = str_replace("\r\n", '<br>', $message); return $message; } add_filter('retrieve_password_message', 'cur_modify_retrieve_password_messsage', 10, 2);
I referrence this WordPres bug report: https://core.trac.www.ads-software.com/ticket/21095
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce] Check out Not worknigAha! turns out it was because cURL wasn’t installed/enabled on my system. Make sure cURL is installed and enabled!
Forum: Plugins
In reply to: [WooCommerce] [Plugin: WooCommerce] Check out Not worknigI’m having the same problem and have narrowed it to my Nginx server. I’ve gotten the site I’m working on to work in Apache, but I can’t get it to work on Nginx. Are there any known incompatibilities?
I’ve also tested with 2012, still doesn’t work.