MBV
Forum Replies Created
-
I see that if I select the text then there is a popup to edit the style and make italic.
But still missing the blockquote ability, can that be added or fixed please?Thanks, done!
Thank you!
Oh, I just saw there is a new version and on updating it seems to work properly now.
Thanks Andrij, that is helpful.
I have noticed that some markdown does not work, for example italics and blockquotes… is this something that can be reviewed and fixed?Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Your postal code is invalidPS. @juliusjaspers Alternatively you can just add the postal code field as well just to save the bother of changing plugins.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Your postal code is invalid@juliusjaspers I switched from this plugin to a different plugin, Payment Plugins for Stripe WooCommerce, you can give that a try, it seems to have fixed the issue. But you have to have this plugin active, but not enabled as a payment option, in order to be able to do refunds if you need to from the order page if the order was processed with this plugin. If you don’t need to do refunds you can just disconnect it from Stripe and disable it.
I think if the authors of this plugin were serious about fixing this issue they would have done it by now without having to ask so many questions.- This reply was modified 9 months, 1 week ago by MBV.
Forum: Plugins
In reply to: [Conditional Menus] Auto apply to all pages in Post TypeHi again, as a workaround could you add *Check All* as an option to tick all the boxes?
Currently there is only *Uncheck All* on bottom left of screen… https://share.zight.com/qGuGznz1If possible, could you do it soon?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Your postal code is invalidIf that what you are saying were true, why does switching to another stripe woocommerce integration plugin not replicate the issue?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Your postal code is invalidIt happens because I only ask for billing country in the checkout fields. You can simply replicate it by add this to child theme and testing with a virtual product using VPN location. in. UK:
add_filter( 'woocommerce_checkout_fields', 'bbloomer_simplify_checkout_virtual' );
function bbloomer_simplify_checkout_virtual( $fields ) {
if (is_checkout()){
$only_virtual = true;
foreach( WC()->cart->get_cart() as $cart_item_key => $cart_item ) {
// Check if there are non-virtual products
if ( ! $cart_item['data']->is_virtual() ) $only_virtual = false;
}
if ( $only_virtual ) {
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_address_1']);
unset($fields['billing']['billing_address_2']);
unset($fields['billing']['billing_city']);
unset($fields['billing']['billing_postcode']);
// unset($fields['billing']['billing_country']);
unset($fields['billing']['billing_state']);
unset($fields['billing']['billing_phone']);
add_filter( 'woocommerce_enable_order_notes_field', '__return_false' );
}
return $fields;}
}Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Your postal code is invalidI can actually replicate the issue by using a VPN located in UK… it then requires a UK postal code, even if in the billing field I have US selected.
Forum: Plugins
In reply to: [Strong Testimonials] 404 SVG files still not fixedActually, I still get the error sometines.
Forum: Plugins
In reply to: [Strong Testimonials] 404 SVG files still not fixedNevermind, I think it is fixed in the latest plugin version.
Forum: Plugins
In reply to: [Conditional Menus] Auto apply to all pages in Post TypeThere is this code protecting the pages so only authorized people can see the content but I don’t see why that would prevent the post type being available on the General tab of your plugin….
/**
* Function that restricts the content only to the author of the page
* @param $content the content of the page
* @return mixed
*/
function cp_restrict_content( $content ){
global $post;
if( isset( $post->post_type ) && $post->post_type == 'private-page' ){
if( !empty( $this->options['restricted-message'] ) )
$message = $this->options['restricted-message'];
else
$message = $this->defaults['restricted-message'];
if( is_user_logged_in() ){
if( ( get_current_user_id() == $post->post_author ) || current_user_can('delete_user') ){
return $content;
}
else return $message;
}
else return $message;
}
return $content;
}
/**
* Function that redirects users trying to access a Private Page
*/
function cp_redirect_non_permitted_users() {
if( !isset( $this->options['redirect-private-pages'] ) || $this->options['redirect-private-pages'] == 'no' )
return;
if( current_user_can( apply_filters( 'cp_redirect_private_pages_capability', 'manage_options' ) ) )
return;
global $post;
if( !empty( $post->post_type ) && $post->post_type == 'private-page' ){
if( is_user_logged_in() && !empty( $post->post_author ) && get_current_user_id() == $post->post_author )
return;
if ( !empty( $this->options["redirect-pp-to-page-id"] ))
$redirect_url = get_permalink( $this->options["redirect-pp-to-page-id"] );
else $redirect_url = get_home_url( );
wp_redirect( $redirect_url );
exit;
}
}Forum: Plugins
In reply to: [Conditional Menus] Auto apply to all pages in Post TypeYes but it will just redirect you to the home page. Is there something in particular you’d like to check?
The url format is https://domain.com/{slug set in plugin settings}/{username slug}