andrewmrobbins
Forum Replies Created
-
Forum: Plugins
In reply to: [NSFW] [ShopWP] WP collections – Not loads at first.Hey there,
This seems to be working on my end in both Chrome and Brave. Have you tried clearing your browser cache?
Forum: Plugins
In reply to: [ShopWP] Gallery thumbnails not appearing but main image is@doublemarvellouscork Hoping to have a fix soon. Are you using Elementor to display the images by chance?
Have you tried using the
[wps_products_buy_button]
shortcode?Also, do the thumbs show if you use the main
[wps_products]
shortcode?Forum: Plugins
In reply to: [NSFW] [ShopWP] ‘metafields’ is missing required arguments: identifierHey there! I just finished fixing this issue. I’ve released a new plugin version:
5.1.6
.Please update when you can!
Forum: Plugins
In reply to: [ShopWP] Error: Field ‘metafields’ is missing required arguments: identifiersHey there,
I just finished fixing this issue. I’ve released a new plugin version:
5.1.6
.Please update when you can!
Forum: Plugins
In reply to: [ShopWP] Error: Field ‘metafields’ is missing required arguments: identifiersHey there,
I just finished fixing this issue. I’ve released a new plugin version:
5.1.6
.Please update when you can!
Forum: Plugins
In reply to: [ShopWP] Gallery thumbnails not appearing but main image isHey there,
Apologies for the headache here. It appears this is a bug in the plugin. I’m working on a fix that should be out on Monday.
Thanks for being patient!
Forum: Plugins
In reply to: [ShopWP] Hide the QTY option on one of my collectionsHey Lee,
At the moment I don’t currently have a shortcode attribute to hide the product quantity field. However you can still hide this by adding some CSS to your WordPress theme.
This CSS will hide all quantity fields:
.wps-component-products-quantity { display: none; }
If you want to hide it only on certain product detail pages, you can use this CSS instead:
.postid-2942 .wps-component-products-quantity { display: none; }
Make sure to change “.postid-2942” to your actual post id.
Does this help?
Forum: Plugins
In reply to: [ShopWP] Just use the shopping cart experienceHey @jtnoel!
Have you tried using the dedicated Buy Button shortcode documented here? https://docs.wpshop.io/shortcodes/wps_products_buy_button
You can pass a product id to it, like this:
[wps_products_buy_button product_id=”123″]
Or a ShopWP product post id:
[wps_products_buy_button post_id=”123″]
Let me know if this helps
Forum: Reviews
In reply to: [ShopWP] Critical need. Solid plugin. Stellar support.All of the blood, sweat, and tears that goes into building a product is worth it for a review like yours. Thank you.
Forum: Reviews
In reply to: [ShopWP] Great plugin and amazing support!@3r1c You’re awesome. Thanks for the kind words!
Forum: Reviews
In reply to: [ShopWP] Great plugin and excellent support@laross27 Really appreciate the kind words. Thank you!
Forum: Reviews
In reply to: [ShopWP] Excellent plugin with great support@brandongrowthm Thanks for the review! Really appreciate it.
Forum: Reviews
In reply to: [ShopWP] Incredible PluginHey thanks for the nice review! Glad we were able to fix the settings.
If you have any additional questions just let me know, happy to help.
Forum: Plugins
In reply to: [ShopWP] How do I sort my products on my page@mrdaryl21 No problem, happy to help.
Try using this shortcode instead:
[wps_products excludes="description" title_size="24px" align_height="true" sort_by="created_at"]
Forum: Plugins
In reply to: [ShopWP] How do I sort my products on my pageHey there,
Are you using a shortcode? If so, you can add the “sort_by” attribute like this:
[wps_products sort_by="created_at"]
Otherwise, to change the order of the default product listing page you can add this snippet of PHP to your WordPress theme’s
functions.php
file:// Sort products by newest first add_filter('shopwp_products_all_args', function($settings) { $settings['sort_by'] = 'created_at'; return $settings; });
Let me know if this helps!