san_merah
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: How retrieve file from external server via ftp to wordpressNot sure if this will work. We will not get access to that xml file via http. We can only get ftp access to the server where it is located.
Forum: Plugins
In reply to: [WooCommerce] How to customize product listing pageOk, how do I style the grid (which files need editing) and how can I change position of add to cart button etc.
I don’t quite understand what do you mean by ‘single’ vie – do you mean individual product page?
Forum: Plugins
In reply to: [WooCommerce] How to customize product listing pagePlease type into postcode field en55su
– then select any address – you will be taken to that pageThe page has 3 tabs which are steps for checkout, I don’t need this. Just would like to have similar layout of products listed in category.
Forum: Fixing WordPress
In reply to: Finding what is using memoryThanks! I will try.
Forum: Fixing WordPress
In reply to: Finding what is using memoryYes, got ssh access. Deactivating plugins is a bit daunting task. I was thinking if there is any tool similar to profiler in Prestashop.
Forum: Fixing WordPress
In reply to: Make other sites to take content from one site?Thanks, I will have a look. Do you think this is the simplest method?
An most importantly, will it work when other multisites will have totally different damain names?
Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] 'Run Export' errorHi Guys,
did you manage to have a look into that. Very difficult to get a reply from you.
I need pro version of the plugin to use some custom functions but if the above problem is not resolved the plugin becomes useless for my needs.
Thanks
Forum: Plugins
In reply to: [Contact Form 7 Multi-Step Forms] Contact Form 7 Multi-Step Forms Not WorkingHaving similar problems,
just sorted first one by installing older version of the plugin – 1.3.6
This is still the problem for me though:
Also some time the form get’s submitted as well successfully but when I check the email with the fields received, only the 3rd form fields are appearing in the email. The first 2 form fields are showing as in the shortcode as I have added in the contact form.
Forum: Fixing WordPress
In reply to: Video doesn't diplay when insideDid anyone experienced this issue? Is it possible bug in new wordpress?
Forum: Fixing WordPress
In reply to: Video doesn't diplay when insideForum: Plugins
In reply to: [WP Job Manager] Blank page after updateAll sorted, thanks.
Updated theme, job manager plugin and add-ons. A little bit of a headache with styling after that but all sorted now.Forum: Plugins
In reply to: [Calculated Fields Form] Will the form cope with that?forgot the code
(function(){
if(fieldname3==10 && fieldname4==20) return 55;
})()Forum: Plugins
In reply to: [Calculated Fields Form] Will the form cope with that?ok works:)
Got confused by this opening bracket before “function” and removed it.
Now that is my code and it works perfectly.Is there any tutorial on using functions in equation field I could use so don’t ask stupid questions here?
Forum: Plugins
In reply to: [Calculated Fields Form] Will the form cope with that?Must be doing something wrong. Just testing it for now with two fields (field3 field4) – only pick up and drop off points.
In each dropdown I got 3 loacations Heathrow, Luton, Stanstead with values 10 20 30 respectivelyin calculated field:
function(){
if(fieldname3==10 && fieldname4==20) return “GBP 55”;
//…….
})()When I select first Heathrow and Luton in second dropdown nothing happens.
I don’t know javascript syntax so I might be doing something wrong.
Forum: Plugins
In reply to: [Calculated Fields Form] Will the form cope with that?Am I thinking correctly:
Dropdown1 I set choice text to ‘Luton’ with Value ’10’
Dropdown2 I set choice text to ‘London’ with Value ’20’
Now in the calculated field I use logical operator
if field1=10 and field2=20 return ‘price for that route’Is that correct way of doing this?