templateinvaders
Forum Replies Created
-
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Login errorHi @ukio
It looks like you didn’t set WooCommerce pages like shop and my account.
If you need a custom login page URL you can use the next snippet:
https://gist.github.com/doozy/37004cc95add251ee78210fbfb519791Forum: Plugins
In reply to: [TI WooCommerce Wishlist] How to redirect login pageYou can use the next snippet to specify your custom login page:
https://gist.github.com/doozy/37004cc95add251ee78210fbfb519791Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Redirect LoginYou can use the next snippet to specify your custom login page:
https://gist.github.com/doozy/37004cc95add251ee78210fbfb519791Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Not loading gravity forms settings on product pageHi @sintrapsz
It looks like only the title of the product now has a correct link to fill the gravity form on the product page.
We’ll fix the thumbnail link in the next update.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Max items per listHi @jubilo,
Our plugin has a hook that could be used for your case.
Check the draft code below:
add_filter('tinvwl_addtowishlist_not_allowed', 'tinvwl_not_allowed'); function tinvwl_not_allowed($not_allowed) { if (5 < TInvWL_Public_WishlistCounter::counter()) { $not_allowed = true; } return $not_allowed; }Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Single product page Wishlist hookHi @shenalorlof
Yes, you can utilize the hook that is used to place add to wishlist button. The add to wishlist button is hooked with priority 10 so you can hook your code with a different priority.
Below is a sample just for your references:
add_action('tinvwl_wishlist_addtowishlist_button', 'your_custom_function_name', 9, 2); /** * * * @param WC_Product $product WooCommerce product object. * @param bool $loop True when code runs within a product loop. */ function your_custom_function_name($product, $loop) { // Run your code. }Forum: Reviews
In reply to: [TI WooCommerce Wishlist] Отвратительно. Убил сайтЕдиснтвенное, что делает наш плагин на деактивацию – это выполнение
flush_rewrite_rules()метода (обновляет перенаправления ссылок).Судя по тому, что у вас проблемы после исполнения этого стандратного метода ВордПресс, есть вероятность того что например кеш плагин обновил кеш страниц и т.п.
Смотрите в первую очередь ошибки на проблемной странице и разметку этой страницы. Работающие настройки виджета и проблемы с выводом звучат именно как кеш!
Forum: Reviews
In reply to: [TI WooCommerce Wishlist] Отвратительно. Убил сайт@golgofa_rus
А можно подробности?Мешает другим плагинам.
Наш плагин добавляет продукты в список желаний. Как он может мешать?
После деактивации зацепил ещё пару плагинов и в итоге некоторый функционал сайта умер.
Это в принципе не возможно чтобы деактивация плагина “зацепила” сторонний код.
Мы можем помочь разобраться с проблемой, если она действительно существует, а не выдумана. Пишите в чат поддержки на нашем сайте.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] 404 Ajax.phpWe are now closing this topic and mark it as resolved due to inactivity. If the issue remains please, feel free to re-open it at any time.
Hi @zez187
You can add a wishlist product counter as a heart icon to any menu instance. Check the Dashboard->Ti Wishlist->General Settings->Wishlist Product Counter
You can use included widget also.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] 404 Ajax.phpHi @shoptak
The issue can be related to:
– wrong file permissions;
– security settings on your hosting (add URL to the mentioned file to exclusions);Please, contact your hosting support with this issue.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Error Log – Mime typeYou need to contact your web hosting support one more time and ask to add .woff2 mime type to your webserver config.
they have said that there are other .woff2 fonts that are working fine on the site and not causing an error
It’s not possible that some files with the same extension served with proper mime type and some producing errors.
So the issue isn’t related to our plugin and can’t be fixed from our side.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] Ajax requests directly to plugin fileHello @netson,
First of all thanks for your detailed post.
The default WordPress AJAX behavior has a big con in our case. For such requests, WordPress doing a complete load (not only the core but all plugins and themes code). Nowadays, a typical WordPress setup utilizes a bunch of plugins, it’s why such requests usually are webserver performance and page speed killers.
The custom AJAX request using in our plugin is much faster than default wp-ajax.php or REST API ways. Our plugin used all mentioned ways historically and the current AJAX method is the best for performance and speed.
Yes, it has a con that some webservers mode security settings restrict direct requests to .php files in subdirectories. But it could be fixed easily by adding our plugin file path to exclusion. In this case webserver performance and page speed are more valuable. On another note, we have added all possible security checks in the custom AJAX request.
We haven’t any plans to change mentioned AJAX behavior because it’s the most optimal way currently.
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] 1.28.0 – cause page error!Make a force recheck for updates from the WordPress dashboard or you can download latest version directly from WP.org
Forum: Plugins
In reply to: [TI WooCommerce Wishlist] 1.28.0 – cause page error!We’ve released a new version that includes a fix for your case.