mitmak
Forum Replies Created
-
hi Dzikri and folks using the plugin,
I tried disabling and enabling all plugins one after the other or in batch and that didn’t resolve the issue of “add icon” link not working.
I had given up on the issue, until recently, I upgraded the WordPress to the latest version (4.4.1). I tried adding a new item in the menu and was magically able to add a new menu icon as the “add icon” link worked as expected.
I’m not sure what the issue is and what resolved it ?? , but I suggest flushing all caches to see if that works for you. I’m assuming the conflicting plugin must have undergone an upgrade which probably resolved the issue..
Thanks,
Mit.hi Dzikri,
Sorry to bother you. Can you pls. take a look at the issue? I’d be more than happy to share the screens with you to show you the issue. Your attention would be really appreciated.
Thanks,
Mit.hi Dzikri,
Thanks for your quick response.
I’ve already enabled all Icon Types in the Menu Icons Settings (checked all checkboxes that are available). Pls. click the below link for screenshot of what I did.
I hope I’m doing it correctly.
Thanks,
Mit.The status shows Active with sufficient credits available for sms. The sender number (my number) and the recipient number (in woocommerce) are set, I checked that. How do we find where exactly the issue is?
By using a link provided my shreesms.net, I’m able to send sms’s and it works as expected.
Thanks for taking time to look into this.
Regards,
Mit.Forum: Plugins
In reply to: [Login for Google Apps] Custom Login URLThanks much Dan for looking into this. I’ll explore the option you provided and if I fumble, I’ll seek your guidance.
Thanks,
Mit.Forum: Plugins
In reply to: [Login for Google Apps] Custom Login URLhi
This plugin looks really great for seamless integration that we are trying to do. I came across this post as Theme My Login Plugin causes an issue with this plugin. I’m looking for a filter that I may use or a solution that can allow Theme My login and Google Apps Login plugins to be used. Is there a solution possible or the plugins must be used in a mutually exclusive manner?
Thanks,
Mit.That did it!! The bad piece of custom CSS snuck in when the new Customizr version provided the functionality of having custom css in the Advanced section. Too bad that I was thinking it is Customizr when the problem actually was created by us.
Thanks much..
Mit.
Thanks much for looking.
I disabled the Pace Plugin and also emptied the caches (both wordpress as well as browser cache). The issue still remains..I mean I still see gap/blank space block.
I’m certain that the gap wasn’t there earlier (while Pace plugin was still active) before Customizr Update.
hi, rdellconsulting. I’m able to view page code via Developer tools.On disabling and re-enabling the plugins; I’m able to view source using right click also.
Thanks.
OR would any of the below work by adding to functions.php of the child theme?
add_filter( ‘mailpoet_woocommerce_subscribe_too’, ‘__return_true’ );
add_filter( ‘mailpoet_woocommerce_enable_checkout’, ‘__return_true’ );
add_filter( ‘mailpoet_checkout_subscribe’, ‘__return_true’ );Your inputs will be appreciated. Thanks much.
Is there a way to have the checkbox “checked” by default on the CheckOut and New User Registration page using CSS only? Something like below?
#mailpoet_checkout_subscribe {
checked=true;
}Forum: Plugins
In reply to: [jonimo Simple Redirect] Questions about woocommerce "review" login redirectI’m looking to have the ability to have woocommerce reviews from all users, not just from verified owners.
In simple words, I’m in search for a solution that will allow the login link posted in the message:
“You must be logged in to post a comment” to redirect to woocommerce my-account instead of wp-login.php (wordpress default).If anyone knows about this, the information would be greatly appreciated.
Thanks.
Forum: Plugins
In reply to: [Plugin: WooCommerce] Require Login To Review HookAnyone found an answer for this yet? Any update on this will be great.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] How to add text to all product pages at once?hello, If you don’t mind, would you please elaborate on how you achieved this functionality?
Forum: Plugins
In reply to: [WooCommerce] Hide all other shipping method when free shipping is availablehi steathtunnel
I use a code snippet provided by Remi. It works great for me.
// Hide ALL shipping options when free shipping is available
add_filter( ‘woocommerce_available_shipping_methods’, ‘hide_all_shipping_when_free_is_available’ , 10, 1 );/**
* Hide ALL Shipping option when free shipping is available
*
* @param array $available_methods
*/
function hide_all_shipping_when_free_is_available( $available_methods ) {if( isset( $available_methods[‘free_shipping’] ) ) :
// Get Free Shipping array into a new array
$freeshipping = array();
$freeshipping = $available_methods[‘free_shipping’];// Empty the $available_methods array
unset( $available_methods );// Add Free Shipping back into $avaialble_methods
$available_methods = array();
$available_methods[] = $freeshipping;endif;
return $available_methods;
}mitmak