janak5
Forum Replies Created
-
Ok, thank you Sybre, I’ll look out for a new version of TSF or the additional plugin tsf-geodirectory-metas.
Thank you Sybre, it works well and you can overide for a specific category for meta category title and description with the TSF ones on the category admin page which is good.
Just a couple of observations:
- The sitename still appears after the meta title when it is set up in geoDirectory (with no sitename included) and can be removed by clicking Remove the site title? as if you had set title up with TSF. If you wanted sitname there the capability exists in geoDirectory for this. It’s not a huge problem but would be better if the site title was only added if you were setting up that category with TSF – geoDirectory allows you to add site title or not on a global level.. It means if I don’t want site title I have to check this box on every category page.
- On category page the if you are not using TSF to set title and description it would be good if the greyed out preview showed what was actually being used as default ie. what is set up in geoDirectory.
But as it is it already really helpful so thank you.
Forum: Plugins
In reply to: [WooCommerce] Want to have no payment method pre-selected.Hi, thank you for the reply. I’m not great at coding but I found this online:
add_filter(‘woocommerce_available_payment_gateways’, ‘unset_default_payment_method’);
function unset_default_payment_method($available_gateways) {
if (is_checkout() && !is_wc_endpoint_url(‘order-pay’)) {
foreach ($available_gateways as $gateway_id => $gateway) {
unset($available_gateways[$gateway_id]);
}
}
return $available_gateways;
}Would this work?
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Orders Going to On-HoldHi, thank you for the info. The order Notes say:
PayPal capture status is pending. Reason: RECEIVING_PREFERENCE_MANDATES_MANUAL_ACTION. Payment will complete when capture.completed webhook is received. Order status changed from Pending payment to On hold.
I’ve actually got it working now so thought I’d post in case the information is useful. I was testing with a US website in dollars and my Paypal seller account in Sandbox was GB. I created another seller account but made it a US one and all ok – Order goes straight to Processing so all good!
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Orders Going to On-HoldHi, sorry I wasn’t clear, I already stated I have setting set to Capture – this was Transaction Type in Paypal settings I was referring to. I then said in Advanced settings I have tried both Processing and Completed for Capture Status.
I assume the Transaction Type set to Capture is correct? Can you think of any other reasons why it would result in Order status On-Hold. I was using AngelEye Paypal plugin before and ran a test before I changed Pypal plugins and that went to order status Processing so it doesn’t appear to be anything to do with my Sandbox Paypal account.
Regards
Forum: Plugins
In reply to: [WooCommerce Square] Zip Code Field ProblemHi, when I ran my tests on a test system I was using a test credit card number every time and got the Zip Code field appearing. When I entered my own real UK credit card (I didn’t submit of course) the Zip code field wasn’t there.
Can I assume that whether the zip code comes up is dependent on the card details entered? ie what country card is from?
Hi, thank you for your reply.
It’s just one page I have to disable TSF for – I’m not that technical so how would I go about this?
For this one page there are lots of pages with different content depending on the query string in url. I can get the page title using php to look it up in a database (separate on to WP) and generate the meta title form this.
Have you any advise on where I should place this code and output my title tag? Would it be in header.php or is there a tidier way?
Thank you
JanakHi, ok, thank you for your help.
Hi thank you for the reply.
I will look to see if I can modify the code. Please could you point me to the files I should look at to be ba able to modify to skip payment if certain conditions are met ( a bit like where you for this when the user is logged in as Admin and payment is skipped.
Also which files would I have to look at to add an extra field (number of Tokens)?
Thank you in advance for any advice you can give.
Forum: Fixing WordPress
In reply to: infected .htaccess and index.php can’t be deletedI didn’t do anything with database as such but once I had deleted the 2 malicious files I did restore my databse and files from a backup in case the malware had done anything in the database.
I have path /home/xxxxxxxx/public_html (xxxxxxxx hides real name)
I checked for processes running in /home/xxxxxxxx and found suspicious process that I killed.Forum: Fixing WordPress
In reply to: infected .htaccess and index.php can’t be deletedI had this same problem where .htaccess and index.php were recreated as soon as you deleted them.
I eventually fixed this by going into SSH and1. Identifying processes running in the relevant folder (in my case was the folder that contained public_html folder, not public_html itself)
2. There were about 3 processses running and one looked suspicious. I killed that and then I was able to delete the 2 files.Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] A Question about Clearing CacheThank you
Thank you.
Hi, I used [wpfcNOT] and a little code in header.php to exclude but the hook you mention above would be a better solution and open more possibilities to exclude things. I look forward to the hook in future release.
Thank you for your help.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Preload of Cache Extremely SlowThats great, thank you for your help.
Regards