riquez
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Error 500 Issues with qtranslate-XThis happens to me also when there is a wordpress automatic update, it changes my htaccess to
RewriteBase /ja/It should be just (in my case)
RewriteBase /Its annoying because it takes the whole website out & I dont know its happened until i get an email from a customer.
Forum: Plugins
In reply to: [WooCommerce] Order payed for months laterThank you!
Hold Stock minutes was blank & I guess therefore pending orders never became auto-cancelled. (I was cancelling them myself, but had missed this one)I set it to 120, it’s more than enough time for someone to complete on our small shop.
Thanks again for your quick reply!
Forum: Plugins
In reply to: [Contact Form 7] my surname is invalid in form submissionyes. Orange border, it says “There was an error trying to send your message. Please try again later”
It only happens if i type my name “Paul Roddick” – if i just type “Paul” no error, email works.
Forum: Plugins
In reply to: [eShop] cannot create discount codesLogin to mySQL (for many people this will be phpmyadmin control panel on their hosting)
Select the correct database & run the query to create the table – If found the query in the eshop-install.php file, around line 749 in my version. This is the query in my version:CREATE TABLE eshop_discount_codes ( id int(11) NOT NULL auto_increment, dtype tinyint(1) NOT NULL default '0', disccode varchar(255) NOT NULL default '', percent float(5,2) NOT NULL default '0.00', remain varchar(11) NOT NULL default '', used int(11) NOT NULL default '0', enddate date NOT NULL default '0000-00-00', live char(3) NOT NULL default 'no', PRIMARY KEY (id), UNIQUE KEY disccode (disccode) );Note that i had to modify the code slightly to change the variables $table & $charset_collate
If this doesnt work or is complex, then I would suggest to try installing it again.
Forum: Plugins
In reply to: [eShop] currency without decimal placesThis is a great plugin to edit text, but can i use it for this purpose, to remove decimals?
The translation text will be ‘%1$s%2$s’ (symbol value) although I can modify that to add other text, I don’t think it can reformat the value of %2$s here – can i?
Forum: Plugins
In reply to: [eShop] Checkout shipping zone table displayFour.
Currently I have hacked it to add a list the customer can refer to. its an ok solution but if you have a better idea I would love to hear it.
Zone 1: <list of areas>
Zone 2: <list of areas>
etcForum: Plugins
In reply to: [eShop] cannot create discount codesI ran the missing table instal queries “CREATE TABLE etc
& now of course everything is suddenly working – the checkout has a box for discount codes & I can create codes in admin.You better have your plugin to check that the tables exist -I have no idea how the script managed to skip over those 2 tables, but it did.
Forum: Plugins
In reply to: [eShop] cannot create discount codesI looked in the eshop-install.php file where the initial tables are created
I dont have• eshop_discount_codes
• eshop_download_ordersbut i seem to have all the others. Is that normal?
Forum: Plugins
In reply to: [eShop] cannot create discount codesI also can’t find anywhere in the basket or checkout that a customer can enter a code – something odd is going on ??