logichub
Forum Replies Created
-
I am using Auto Register plugin with the direct purchase option, but accounts are not created automatically.
Summary
- Auto Register plugin: Active
- Guest login: Enable
- Payment gateway: PayPal Standard
- Purchase mode: Direct Purchase
Hi again,
The file backup to GDrive are now again failed to upload.
File backup logMoreover, db backup is now completely fail.
DB backup logHi,
PHP maximum execution time is set to 300. This value is fixed and can’t be changed. Split archives were set to 200 mb in the past, but after several failure attempts to uploading the backup to Google Drive, I reduced it to 50 mb.
Furthermore, I can see the non-uploaded archives in the updraft folder taking 100s of GB space. Is it possible to clean up these archives by uploading to Google Drive?
jetpack_check_mobile
function checks whether the reader is on a mobile device or not. You may need to usejetpack_mobile_exclude
function, but it doesn’t have any hook to add your own page.
https://github.com/Automattic/jetpack/blob/4.9/modules/minileven/minileven.php/#L56-L77Someone from Jetpack team will respond here soon.
Forum: Plugins
In reply to: [amr users] How to fix edd_payment_count and retrieve a Sum of sales?Thanks for the update.
Can you point me in the right direction regarding ‘sum of total sales’?
This is now resolved. Posting solution here, if someone need to replicate it on their website.
Following code snippet as suggested on SOF made the checkbox toggle as I want:
jQuery(document).ready(function($){ $('#edd_hide_download').change(function(){ if ($(this).is(":checked")){ $('#edd_hide_redirect_download').prop('checked', true); } else{ $('#edd_hide_redirect_download').prop('checked', false); } }); });
Andrew,
May I have any update on this too?
Thanks for the prompt response Andrew.
I have achieved this by using the following code:
jQuery(document).ready(function($){ $('#edd_hide_download').click(function() { $('#edd_hide_redirect_download').prop('checked', true); }); });
However, I am unable to make it working in the reverse mode. When I uncheck the Hide this product, it should uncheck the Disable direct access to this product option. Can you guide me here?
Thanks again.
I have just enabled WAF on 2 of my websites hosted on Siteground using this method:
https://docs.wordfence.com/en/Web_Application_Firewall_Setup#SiteGround_and_other_hosts_without_.user.ini_supportGreat it worked perfectly! Thanks for the quick solution.
Forum: Plugins
In reply to: [Easy Digital Downloads - Google AdWords] Google Adwords Remarketing TagThanks for the update. Do you have any suggestion in this regard?
Thanks for the quick response.
The code will be added to checkout page. I want to add the Sign-up to our newsletter checkbox to My Account page too.
Furthermore, is it possible to provide Unsubscribe option on the same page by unchecking the Sign-up to our newsletter checkbox?
Hi Jeroen,
Please note that your plugin is compatible with EDD Commission. I tested it and found that it is working perfectly for us.
I am marking this thread as resolved.
Forum: Fixing WordPress
In reply to: Trying to reduce the height of the headerI am pretty sure that they didn’t removed this option from twentysixteen theme. I captured the above screenshot from twentysixteen theme for you.
get_template_directory_uri()
will retrieve the directory URI of currently active theme. So in your case it will retrieve the following:
https://schuck-itconsultancy.co.uk/wp-content/themes/SSConsultancy/
You can upload your logo to this path via ftp and use the above code. You would also like to link your logo to your homepage. You can do it by enclosing your logo in an anchor tag. Try the following code:
<div class="site-branding"> <a href="/"><img src="<?php echo get_template_directory_uri(); ?>-" width="250px" height="90px" alt="Some alt text here"></a> </div><!-- .site-branding -->