betagoo
Forum Replies Created
-
Forum: Plugins
In reply to: [F4 Media Taxonomies] Bulk assign media tags to attachment not workYou are right.
Works fine.
Sorry.Forum: Reviews
In reply to: [Advanced Bootstrap Blocks] There is some things to doThank You for response.
I have been tested everyone bootstrap grid plugins.
And I decided to not use non of them.
Each of them have some issue with functionality.
I made my own shortcodes for container, row and columns.Forum: Reviews
In reply to: [Gutenstrap Blocks] Great plugin, but does not completely work correctlyYou have to duplicate container which contain row and columns.
If You change column size for second container, the size column from first container is change too.
It seems, does not matter, which column size You change, the changes are applied for every columns.
But this issue is only for duplicated blocks.It can be a paid extension.
I will gladly buy them.Thanks for response.
Of course, I understand.
You must know, that all restricted access rules are too little protection against unauthorized access to files (not for content).
That’s why I thought it would be good for the UM to use random file names for profile and cover photo.
Like is realized when files are uploaded to a profile form by built in File / Image Upload field.
This would give the possibility to build intranet systems using UM.
Please, think about this.Solved.
I made this using css flex order.Checkboxes fields works fine for me.
Use imgur.com and paste links to images.Solved.
Show Avatars option was disabled into WordPress Discussion Settings.
I thought WP setting and UM settings are separated.
Now I know, to display profile photo, option Show Avatars should be enabled into WordPress.- This reply was modified 5 years, 4 months ago by betagoo.
Solved.
Forum: Plugins
In reply to: [Product Country Restrictions] Not compatible with WordPress 5.1.1This plugin work in half.
You can set restrictions into product edit window, but this not work on checkout page, after click order submit button.
Solution:function fnc_woocommerce_after_checkout_validation( $data, $errors ) { global $woocommerce; $cart_contents = $woocommerce->cart->get_cart_contents(); $fz_shipping_is_disabled = false; if ( is_countable( $cart_contents ) === true && is_array( $cart_contents ) === true ) { foreach ( $cart_contents as $cart_item ) { $fz_country_restriction_type = get_post_meta( $cart_item[ 'product_id' ], '_fz_country_restriction_type', true ); $fz_restricted_countries = get_post_meta( $cart_item[ 'product_id' ], '_fz_restricted_countries', true ); if ( empty( $fz_restricted_countries ) === false && is_array( $fz_restricted_countries ) === true ) { if ( $fz_country_restriction_type === 'excluded' ) { if ( in_array( $data[ 'shipping_country' ], $fz_restricted_countries ) === true ) { $fz_shipping_is_disabled = true; } } if ( $fz_country_restriction_type === 'specific' ) { if ( in_array( $data[ 'shipping_country' ], $fz_restricted_countries ) === false ) { $fz_shipping_is_disabled = true; } } } } } if ( $fz_shipping_is_disabled === true ) { wc_add_notice( 'We do not send certain products to selected country. Please, remove restricted products from cart, or change shipping country.', 'error' ); } } add_action( 'woocommerce_after_checkout_validation', 'fnc_woocommerce_after_checkout_validation', 10, 2 );
Forum: Plugins
In reply to: [Post Type Archive Descriptions] Assign ACFI used acf_add_options_page function to create ACF Options Page for post type archive.
It is a pity that I could not use your plugin.
Your plugin is great for everyone who do not need additional fields (in simple way, of course).Forum: Plugins
In reply to: [Yoast SEO] How to display unattached media into attachment sitemapwpseo_sitemap_attachment_content
Forum: Plugins
In reply to: [Yoast SEO] How to display unattached media into attachment sitemapFound filter wpseo_sitemap_attachment_content
Forum: Plugins
In reply to: [Visual Term Description Editor] PHP 7.2 Compatible?I use this plugin on php v.7.2 and there is no problems.
Forum: Plugins
In reply to: [Regenerate Thumbnails] metadata is not being updatedThanks.