pantrif
Forum Replies Created
-
Forum: Plugins
In reply to: [Woocommerce Catalog] Slow according to P3Profiler pluginHello if you need to increase speed change your host.
As far as this plugin concerned you could increase the loading speed if you remove this from woocommerce_catalogue.php in line 72:add_action(‘wp_enqueue_scripts’, array($this, ‘load_frontend_assets’));
This way though you will lose the dynamic stylesheet option but it will not load the style.php which take sometime (because it is php script and it has to execute in every window load).
Forum: Plugins
In reply to: [Woocommerce Catalog] Translation of Load more buttonResolved!
Forum: Plugins
In reply to: [Woocommerce Catalog] Translation of Load more buttonI update the plugin and i have included in new version a pot template in languages folder. Try to update and tell me if this fixed your issue.
Best Regards
Forum: Plugins
In reply to: [Woocommerce Catalog] Recently Viewed Products widget show priceHello yes i will check this widget. Yes it will be overwitten if you update.
Forum: Plugins
In reply to: [Woocommerce Catalog] Catalo Mode Hides Wishlist ButtonThe wishlist plugin might use the same hook i use to remove the cart. There i many ways to fix your issue. The easiest is to not remove add to cart button from my plugin but instead to use css and display:none;.
The most difficalt way is to customize the other plugin in order to add wishlist button outside the scope of add to cart.
RegardsForum: Plugins
In reply to: [Woocommerce Catalog] 2 ProblemsHello thanks for the tips. I will review your comments and i might include a fix in next update.
Forum: Plugins
In reply to: [Woocommerce Catalog] Not removing price and cart buttonYour problem is not with my plugin neither with yith. My best guess is that your theme using hardcoded woocommerce templates and has remove the hooks. Try to change theme (or to rename woocommerce folder from your theme directory) and you will see it will work.
Best RegardsForum: Plugins
In reply to: [Woocommerce Catalog] On/Off ButtonHello,
It might be some conflict with your current theme. I will remove this in next update.
In order to fix this open include/php/settings.php and remove or comment this line:
wp_enqueue_script( ‘wpt-admin-js’ );Best Regards
I dont understand your question. This plugin does not add enquiry forms.
Forum: Plugins
In reply to: [Woocommerce Catalog] ctrl left click to select multiple categoriesHello, with control and left you can select any category you want. I dont get which is your problem.
Forum: Plugins
In reply to: [Woocommerce Catalog] ctrl left click to select multiple categoriesHello, ctrl + left click works fine for selecting multiple categories. Make sure that the ctrl button works in your keyboard.
Best Regards
Forum: Plugins
In reply to: [Woocommerce Catalog] Variable ProductsHello,
Unfortunatelly there is not hook available by woocommerce for that. But you can achieve what you want by changing a few lines in my plugin and css.
Open woocommerce_catalogue.php in my plugin folder and remove this line:remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
Then add these 3 lines:
remove_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 ); remove_action( 'woocommerce_grouped_add_to_cart', 'woocommerce_grouped_add_to_cart', 30 ); remove_action( 'woocommerce_external_add_to_cart', 'woocommerce_external_add_to_cart', 30 );
This will leave the add to cart functionality to variable products in single page and you need to hide it with css. Open style.css of your theme and add this to remove add to cart button:
.single_variation_wrap { display: none!important; }
Best Regards
Forum: Plugins
In reply to: [Woocommerce Catalog] Calalog mode only for guestsHello,
Yes it is possible to enable catalog mode only for registered users.Hello Chris,
The options section is under settings of WordPress (not in Woocommerce settings).
Best Regards
LeoForum: Plugins
In reply to: [Woocommerce Catalog] Price removed but not Add to Cart buttonHello,
The add to cart is removed if your template follows the guidelines and templates of default woocommerce. If your theme is hardcoded without hooks it will not going to work any plugin.
As i saw in the url you provided you managed to remove the add to cart?Best Regards