mishaml
Forum Replies Created
-
Forum: Plugins
In reply to: [Loco Translate] How to translate plugin if it uses shared domainIt’s a plugin of external developer, so only option to add source path can be suitable. Thanks, the suggestion was really helpful
Forum: Plugins
In reply to: [Bonus for Woo] Добавить опцию не начислять балы если купонМожете ещё добавить фильтр для начисления бонусов в status_completed.php и можно будет закрыть вопрос
$computy_point_new = ( new BfwPoints() )->roundPoints( $computy_point_new ); $computy_point_new = apply_filters( 'bfw-completed-points', $computy_point_new, $order_id, $order );
ну и чтобы перед тем как добавлять бонусы была проверка есть ли они, сейчас такой кажется нету)????
Forum: Plugins
In reply to: [Bonus for Woo] Добавить опцию не начислять балы если купоня знаю, хочу пока что убрать чтобы люди не видели что он начисляется, а дальше буду думать как сделать на беке
Forum: Plugins
In reply to: [Bonus for Woo] Добавить опцию не начислять балы если купонМожете тогда добавить фильтр на количество отображаемого кэшбека в cashback_in_cart.php
$cashback_this_order = apply_filters('bfw-cart-cashback-display-amount', $cashback_this_order); if($cashback_this_order>0){...
- This reply was modified 1 year, 4 months ago by mishaml. Reason: опечатка
Forum: Plugins
In reply to: [Bonus for Woo] Добавить опцию не начислять балы если купонНечесно, но условия бонусной программы – или кэшбек или купон… ну если решите сделать – напишите
Forum: Plugins
In reply to: [Bonus for Woo] Добавить опцию не начислять балы если купонможно добавить это в следующих версиях?
Forum: Plugins
In reply to: [Bonus for Woo] Добавить опцию не начислять балы если купонСмотрел документацию, те настройки что есть просто начисляют балы будут игнорироваться введенные купоны и скидки. балы при этом продолжат начисляться на часть сумы. Нужно полностью исключить возможность начисления балов
- This reply was modified 1 year, 4 months ago by mishaml. Reason: не дописал
Forum: Plugins
In reply to: [Bonus for Woo] Разница между points и fast_pointsКак определяется балы которые клиент хочет списать, вы туда записываете балы которые ввёл человек в оформлении заказа?
Forum: Plugins
In reply to: [Bonus for Woo] Добавить фильтр для исключённых товаровadd_filter( 'bonus_woo_excluded_products', 'woo_excluded_products', 10, 2 ); function woo_excluded_products( $value = [], $string = '' ) {
$sale = wc_get_product_ids_on_sale();
$args = array(
'post_type' => 'product',
'posts_per_page' => PHP_INT_MAX,
'fields' => 'ids',
'tax_query' => array(
[
'taxonomy' => 'product_cat',
'field' => 'id',
'terms' => [
apply_filters( 'wpml_object_id', 78, 'product_cat' ),
apply_filters( 'wpml_object_id', 104, 'product_cat' )
]
],
)
);
$query = new WP_Query( $args ); return array_merge( $query->posts, $sale, $value );
}таким способом я получаю продукты по скидке, и некоторые категории которые хочу исключить с начисления балов
- This reply was modified 1 year, 4 months ago by mishaml.
Forum: Plugins
In reply to: [Collapsing Categories] Parent Category Counts show doubleYes i have similar issue. I`m not sure it is always doubled but it is more than actual post count. My site is https://ibrow.boutique/
Wordpress 5.3.4
Collapsing Categories: 2.2.7Also, I am using WooCommerce and using “Collapsing Categories” plugin to show categories of WooCommerce products.
Thanks,
There is a hard problem with you site https://renzojohnson.com/ . I have both contact form and mailchimp installed and one of them is making a request to https://renzojohnson.com/wp-json/wp/v2/posts
?categories=15
&orderby=modified
&order=desc but it couldn`t connect in any way i tried.