I moved my website to a new server. Now no longer opens in Zingiri menu Shop. I have checked all the settings, but can not find a fault. The home works but the first page of the stores no longer opens. The images of the individual productions are also hides. Could you help me further. Do I need to change something in particular?
website: https://funkyquariat.de
Hi there
I downloaded the Zingiri plugin and I was locked out of my wordpress blogsite.
I used the back button to go back and first deactivate the plugin and then delete it.
After I had done that I had full access again to my site.
Error message I got:
Fatal error: Call to a member function loadLang() on null in /var/www/artsdk.com/public_html/wp-content/plugins/zingiri-web-shop/fws/includes/prompts.inc.php on line 23
Why doesn’t plugin work with my site?
Why do I get locked out of my site?
Thanks for you help because I would really like to integrate a webshop with my blogsite.
artsdk.com
https://www.ads-software.com/plugins/zingiri-web-shop/
I’m having some troubles implementing the HTML – code for Mollie Ideal payments. I understand the HTML-code is pre-configured, however in my case it is not. The problem I’m currently having is implementing the has key, or Api-key (is this the same thing ?) I’ve tried : <INPUT type=”hidden” NAME=”hash” value=”XXX”> but Mollie returns a technical error : Technische fout: De gegevens kloppen niet met de opgegeven hash key.
How to solve this ?
Hello,
I would like to embed top product lines under the posts.
Is it possible without widget? Shortcode or something.
There must be a security vulnerability in this plugin, because my 404 log shows it and I have only one plugin: Better WP Security.
The URL that they couldn’t find was /wp/wp-content/plugins/zingiri-web-shop/fws/ajax/init.inc.php
Is it possible to have the quantity and “add to cart” button on the main “Shop” page? In my case, clients will always be selecting multiple items to order, and would like to simplify so that they can add a quantity to the cart without having to go to the details page for each individual product. Thank you.
]]>I changed the default language to Hungarian and some of the text became Hungarian. And the translated text is a little funny. I would like to translate everything, but I don’t find any po file.
Later I tried using the “Prompts & labels” and I got this message:
Database Error:UPDATE wp_zing_prompt
SET LABEL
=’menu2′,LANG
=’hu’,STANDARD
=’Shopping cart’,CUSTOM
=’Kosár’,DATE_UPDATED
=’2013-05-06 14:24:40′ WHERE ID
=49/Duplicate entry ‘hu-menu2’ for key ‘KEY1’
How can I translate this plugin?
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Hi, for some reasons, Zingiri shop is not being displayed.
The shop page is officinarenovatio.it/shop and I pasted the shortcode [zing-ws:browse] on the page.
Tried with uninstalling and reinstalling but doesn’t work.
Widgets work correctly though.
Thank you
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Hi , tried this twice now. First time the whole site went down. So I deleted everything, started a new folder, re-installed a fresh WP 3.4.2 because newest 3.5 obviously is not compatible.. Now, after re-install, fresh databese and evrything I logged into WP. Then clicked “install plugin” Zingiri webshop – … then waiting, waiting, waiting, and then I get a message: Destination folder already exists. /hermes/bosoraweb072/b1289/ipg.artandcraftconnectio/webshop2/wp-content/plugins/zingiri-web-shop/ Plugin install failed. ” WHO the heck is “hermes”? Can’t even get to test this plugin! Pisses me off if you spend hours trying to get something going… Should I ABANDON this plugin or what do you think?
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Hi
THanks zingiri team for the plugin. Is there any option to enable lightbox feature instead of linking the image to the image page, so that the viewer can have a slideshow of the displayed product and then select item for purchase
Shiyam
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Hi
zingiri is good enough plugin for a web store. I use Login-logout plugin for user login option as a widget than using as a page. But after activating zingiri webshop the login link in widget is redirected to the home page itself and not to the login page. unfortunately zingiri do not provide a login widget with it.
So can some one help me in this
Shiyam
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>how to customized or even edit the registration forms?
because i just need only 4 fields.. name, tel, email and the address..
Please help, been trapped with this for the past 4 days already, and im not making any progress..
Thanks in advance
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>I found a couple of bugs in the tax handling code (in file zingiri-web-shop/fws/classes/tax.class.php)
1) At line 18, there is a test to check if $this->taxByCategory[$category]
is set — this test is not needed and messes things up later in the code.
2) At line 101, the customer’s country is fetched. This is later compared to the tax country. The problem is, the country in the customer is stored as the 2-3 letter ISO name and the country in the tax database is stored as the full English name. I added code to look up the proper full english name so that the compare later will work correctly.
Here is the patch:
diff -c -r zingiri-web-shop/fws/classes/tax.class.php /var/www/trainstore/wordpress/wp-content/plugins/zingiri-web-shop/fws/classes/tax.class.php
*** zingiri-web-shop/fws/classes/tax.class.php 2012-06-30 06:55:28.000000000 -0400
--- /var/www/trainstore/wordpress/wp-content/plugins/zingiri-web-shop/fws/classes/tax.class.php 2012-07-23 14:04:05.000000000 -0400
***************
*** 15,21 ****
global $dbtablesprefix,$no_vat,$db_prices_including_vat;
$taxtot=0;
! if (!isset($this->taxByCategory[$category])) $this->taxByCategory[$category]=array();
if ($no_vat == 1) {
$in_vat = $price;
--- 15,21 ----
global $dbtablesprefix,$no_vat,$db_prices_including_vat;
$taxtot=0;
! //if (!isset($this->taxByCategory[$category])) $this->taxByCategory[$category]=array();
if ($no_vat == 1) {
$in_vat = $price;
***************
*** 99,104 ****
--- 99,109 ----
$state="";
} else {
$country=$customer->data['COUNTRY'];
+ $country_q = "select <code>NAME_EN</code> from <code>".$dbtablesprefix."country</code> WHERE <code>ISO</code>='".$country."' LIMIT 1";
+ $sql_country = mysql_query($country_q) or die(mysql_error());
+ if ($c_country = mysql_fetch_array($sql_country)) {
+ $country = $c_country['NAME_EN'];
+ }
$state=$customer->data['STATE'];
}
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>I am developing several e-commerce websites for a client, who requires the option of allowing his customers to pay for items by monthly installments.
The websites are delivered using WordPress and therefore a shopping cart with all the standard features plus the ability to assign an option to either PAY IN FULL or MONTHLY INSTALLMENTS.
The monthly installments would allow my client to assign a percentage (10%) deposit as the initial payment before goods are dispatched. Then using the customers payment method, (debit/credit card) allow the monthly payments to be taken without any intervention from my client.
Can you provide such a shopping cart plugin for WordPress?
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>I couldn’t find the add group button anymore at the Groups & Categories page.
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>I had thought your plug-in is great, but I removed it soon.the problem was the most important point—check out.
Why you force the customers to write their information and push payment again? pleasae link the two. Namely, to finish the order, they have to finish the payment too. This is quite curious and wired point. This is the reason why I removed your plug-in soon. When you fix it, I gradly would back to your plugin.
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Not a serious developer. Wont’ even respond to support tickets.
Wasted my time.
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>When trying to install, I get this message :
Warning: fopen([host path]/uploads/zingiri-web-shop/log.txt) [function.fopen]: failed to open stream: No such file or directory in [host path]/wp-content/plugins/zingiri-web-shop/zing.inc.php on line 45
I’ve replaced my web host path with [host path]
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Your plugin requires the Zingiri logo to be displayed on the user site, unless user have written permission from you.
“Select how and where you want to display the Zingiri logo. You can display it at the bottom of your site or a the bottom of every shop page.
Only select other if you received a written confirmation from us that it is ok to do so.”
I think your requirement goes against the WordPress licensing. Any Plugins/ Themes is a derivative of WordPress. User can modify the source code and remove your requirement.
Correct me if I’m wrong.
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>We’re happy to announce the release of our Facebook extension for Zingiri Web Shop. This is one of the first extensions in our Pro series.
The Facebook extension allows you to sell your product via one of the most popular social media channels. You can discover more information about the extension on our wiki and you can purchase it via our client portal.
https://www.zingiri.com/facebook-extension-for-zingiri-web-shop
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Just released version 2.2.0 of the web shop. This version prepares the terrain for the pro series, upgrading recommended.
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>100% FAIL. Now I’m off to try & repair my WordPress installation. Thanks a lot.
]]>Problem with the checkout
]]>it is not working
]]>I activated the plugin and my blog was history.
]]>Shipping and payment methods don’t show up in checkout
]]>Please consider supporting bitcoin:
https://www.youtube.com/watch?v=Um63OQz3bjo
A free and open client implementation (in Java) is here:
https://code.google.com/p/bitcoinj/
https://www.ads-software.com/extend/plugins/zingiri-web-shop/
]]>Hello ,
I like the plug-in and would like to know if there is any update for usage of this plug-in on Multi-site installation.Are anybody have Idea on using this plug-in with Multi-site installations?
Thanks!
]]>Beware: this plugin “phones home” and gives your admin email address to the developers, whether or not you tick the newsletter box when installing.
]]>Installation is a real mess! I spent 1 day of restoring my entire blog after trying this plug in. Before give it a try : make sure you have FULL backup working!!!
]]>