Jigoshop Support - Krzysztof
Forum Replies Created
-
Forum: Plugins
In reply to: [Jigoshop eCommerce] Pagination displayed disorderlyHi!
Hi,
Sorry currently we doesn’t have any solution for online courses.
Forum: Plugins
In reply to: [Jigoshop eCommerce] Product size options not showing after migrationYou somehow created product variation as variable product. Just edit that variations change price, type etc to trigger save script.
Forum: Plugins
In reply to: [Jigoshop eCommerce] Any way to set cart expiration?Hi Dave
I think the simplest and the best way to clear cart after specific amount of time will be by adding another variable to php session and update it on cart update.
Just add following code at the end of functions.php file in Your theme. It will remove cart after 7 days of last update.
add_action('jigoshop\cart\save', function() { $_SESSION['cart_expiration_time'] = $time() + 60 * 60 * 24 * 7; // 7 days }); add_action('init', function() { if(isset($_SESSION['cart_expiration_time']) && $_SESSION['cart_expiration_time'] < time()) { unset($_SESSION['jigoshop_cart_id'], $_SESSION['jigoshop_cart'], $_SESSION['cart_expiration_time']); } });
Forum: Plugins
In reply to: [Jigoshop eCommerce] Default gateway enabled but not checked in 2.1.15Hi,
It will be fixed in new release.
Forum: Plugins
In reply to: [Jigoshop eCommerce] PDF files are brokenPlease, contact me via contact form in our website.
Forum: Plugins
In reply to: [Jigoshop eCommerce] SHOP PAGE BLANKHi!
It might be an php error, can you check your php error logs?
Forum: Plugins
In reply to: [Jigoshop eCommerce] Setting Default ShippingIf You want, we can find the best Way to solve your problem.
Please contact us via contact form on our website.
Forum: Plugins
In reply to: [Jigoshop eCommerce] Setting Default ShippingHello,
Jigoshop eCommerce as default shipping uses the cheapest one. So currently there os no way to do this without customization.
Forum: Plugins
In reply to: [Jigoshop] Sitemap and search bar under descriptionHi glennd2,
It looks like there is no styles for sidebar. That’s why you are experiencing this issue.
Forum: Plugins
In reply to: [Jigoshop] Slider Issue / Image DisplayCan you enable second slide, now it is hard to check what is wrong with slider styles.
Forum: Plugins
In reply to: [Jigoshop] Element Style on Place Order ButtonHi paulduffield,
Do you mean this? https://github.com/jigoshop/jigoshop/blob/master/assets/css/frontend.css#L186
Forum: Plugins
In reply to: [Jigoshop] Cart isn't updating when changing the quantity or shippingTry to switch theme to the standard one.
Forum: Plugins
In reply to: [Jigoshop] Image Thumbnails link to homepage?/Hi
All product links are properly generated. I think there is some problem with permalinks or rewrite rules.
Forum: Plugins
In reply to: [Jigoshop] Cart isn't updating when changing the quantity or shippingHi Sully1107,
I think there is some Java Script error on your site, open your browser console and check it. (CTRL + Shift + J on Chrome or Firefox)