mishaml
Forum Replies Created
-
Yeah, I was trying to fix this problem, but I’ve commented it so you can check everything. Our site has 4 languages, main czech version, another languages are located in subdirectories /ru/, /uk/, /en/. When the user is registering on https://sushijo.ninesquares.studio/uk/register/, it is expected he will be redirected to https://sushijo.ninesquares.studio/uk/my-account/, and so on on english and russian version. Currently all users are redirected to https://sushijo.ninesquares.studio/my-account/
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] WPML cannot translate page leave a reviewI’ve rewrote templates today because I need fix urgently, but this is just a workaround, so I wait you to make a fix to clean up the code.
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] WPML cannot translate page leave a reviewHi! I’ve read in changelog
Bug fix: Email body of review reminders could not be translated with WPML when using local review forms
It is connected with my issue? Currently it seems that this doesn’t helped
Forum: Plugins
In reply to: [Google for WooCommerce] Fatal error: Asset handle already existsI have the same issue. The problem appears on Contact form 7 forms page. I’ve had polylang plugin for multicurrency, which requires 2 plugins to be installed to translate contact form 7. When I turn off CF7 Smart Grid Design Extension the problem dissapears, and forms page opens.
Forum: Plugins
In reply to: [Customer Reviews for WooCommerce] Fatal error on manual review reminder sendYeah, with WP Staging Pro turn off the problem seems resolved, thanks
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 2 years, 12 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 2 years, 12 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 3 years 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,