andrewmrobbins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sorting my products on my page@mrdaryl21 Try adding this snippet of PHP to your WordPress theme’s
functions.php
file:add_filter('shopwp_products_all_args', function($settings) { $settings['sort_by'] = 'created_at'; return $settings; });
Forum: Plugins
In reply to: [ShopWP] Error at Checkout after plugin updateAwesome, no problem!
Forum: Plugins
In reply to: [ShopWP] Error at Checkout after plugin update@jferriga Hey there,
You’ll need to reconnect your Shopify store to the plugin after updating to the latest version.
You can do this from the “Connect” tab within the plugin settings. Just click disconnect and then “Begin connection”.
Let me know if this helps!
Forum: Plugins
In reply to: [ShopWP] ShopWp and LiteSpeed Cache@colbyalbo Thanks for the follow up! Hope this helps others as well.
Forum: Plugins
In reply to: [ShopWP] How to limit quantity available for purchase?Excellent — no problem!
Forum: Plugins
In reply to: [ShopWP] How to limit quantity available for purchase?Ok great. Are you showing the product with a shortcode? Something like:
[wps_products title="Product name"]
If so, you can add the
max_quantity
attribute, like this:[wps_products max_quantity="2" title="Product name"]
Does this help?
Forum: Plugins
In reply to: [ShopWP] How to limit quantity available for purchase?Hey there — do you want to limit the quantity across all products or just one specifically?
Forum: Plugins
In reply to: [ShopWP] Connect Auto Post Syncing gives errorHey Emily. I know this is annoying, but does re-connecting your Shopify store to the plugin fix the issue?
Forum: Plugins
In reply to: [ShopWP] No products left to show on Product page@secretagency Is your site password protected or behind a firewall at all? Does your web host have any restrictive security settings?
Forum: Plugins
In reply to: [ShopWP] How to automatically choose default or single variant?Hey there, try adding this PHP snippet to your WordPress theme:
add_filter('shopwp_products_default_payload_settings', function($settings) { $settings['select_first_variant'] = true; return $settings; });
Let me know if this doesn’t help!
Forum: Plugins
In reply to: [ShopWP] WordPress/Shopify connection@magnavision Yes it can!
The only Shopify permissions required are to add / remove Shopify apps. Technically speaking if your user only has those permissions assigned, it should still allow the user to connect to ShopWP.
Forum: Plugins
In reply to: [Shop Page WP] User access inquiry@magnavision Great, can you open a thread on my plugin forums? I’ll respond there instead.
Forum: Plugins
In reply to: [Shop Page WP] User access inquiryAre you sure you’re using
Shop Page WP
? It sounds like you might be using my plugin,ShopWP
.Can you confirm?
Forum: Plugins
In reply to: [ShopWP] Shop Not SyncingHey there,
Can you try adding the below line to your
wp-config.php
file? Afterwards try re-syncing again.ini_set( 'default_socket_timeout', 300 );
Let me know if this doesn’t help!
Forum: Plugins
In reply to: [ShopWP] Cart is empty when products added & Currency USD (should be EUR)@timhowardmoresleep Hey there,
Taking a closer look for you today. Thanks for being patient.