ZeroGravity
Forum Replies Created
-
I am having a similar issue as the OP but on a login page with the [wpmem_form login] shortcode. I have created a registration page that has the [wpmem_form register] shortcode. I went to Settings > WP-Members > Pages > Register Page and selected the registration page.
I also have the user profile page set.
The login page shows the Forgot password link but it doesn’t show the link to the registration page.
- This reply was modified 4 years, 9 months ago by ZeroGravity.
- This reply was modified 4 years, 9 months ago by ZeroGravity.
Forum: Plugins
In reply to: [Restricted Site Access] Exclude registration pageI added this code so that access was enabled access to password reset and forgot username as well.
edit: just realized I should have qualified the profile links I added access to are for the WP-Members Membership Plugin. I have been bouncing back and forward between them testing are realized I was confusing functionality between the two. ??
add_filter( 'restricted_site_access_is_restricted', 'zgwd_login_override', 10, 2 ); function zgwd_login_override( $is_restricted, $wp ) { // check if page allowed if ( 'registration' === $wp->request || 'profile?a=pwdreset' === add_query_arg(array($_GET), $wp->request) || 'profile?a=getusername' === add_query_arg(array($_GET), $wp->request) ) { return false; } return $is_restricted; }
- This reply was modified 4 years, 9 months ago by ZeroGravity.
- This reply was modified 4 years, 9 months ago by ZeroGravity.
Ok. It’s just confusing seeing them there when they have been unset. Maybe a note added indicating that all WP image sizes are shown even if they are unset might help. ??
I know this is probably being pedantic but I assume you mean “these are the sizes that will be compressed it they already exist for an image.” The way you worded it indicates if they don’t exist they will be created. ?? Just want to make 100% it’s only optimizing images that already exist and not creating other sizes on the list.
Thanks for you quick response!
Forum: Fixing WordPress
In reply to: “-scaled.jpg” innecesary sufix and added 2 image sizesAfter testing is seems the filter only fixes the scaled image creation.
add_filter( ‘big_image_size_threshold’, ‘__return_false’ );
I also needed to unset the 2x medium-large and 2x large sizes to prevent them from being created.
function filter_image_sizes( $sizes) { unset( $sizes['1536x1536']); // disable 2x medium-large size unset( $sizes['2048x2048']); // disable 2x large size return $sizes; } add_filter('intermediate_image_sizes_advanced', 'filter_image_sizes');
I haven’t tested it yet but I was pointed to this code snippet.
https://library.easydigitaldownloads.com/misc/require-login-to-download-files.htmlForum: Fixing WordPress
In reply to: Editors not workingDid you find a solution to this? I am having the same error where the cmsmasters content composer is not working. Only the shortcodes are showing. Clicking the editor button “content composer” doesn’t do anything.
Forum: Plugins
In reply to: [Email Users] Show on frontendThanks Mike. We are putting a system together for someone and we are trying to stay away from the WP dashboard to keep logged in members on the frontend.
Thank you!
Thanks for the suggestions.
I understand there is no option at the moment that is why I asked for it as a feature request in my previous post. ??
Thanks @pratik-jain. I saw all those options and have set them. Sadly it looks like there is no option to force someone to be logged in before downloading a file.
If the “Download Link Expiration” time or the “File Download Limit” have not expired anyone who has the link can download the file.
A feature request would be to force login to download a file when accessing by the link.
1) Click on the link
2) When the link opens in a browser if the user isn’t logged into the website show the login screen.
3) after login file downloads. ??Thanks.
Thanks @pratik-jain.
I noticed that setting. It appears that does enforce creating a login to make a purchase but it doesn’t seem to enforce being logged in to download after the purchase has been made.
I copied the download link to another browser where I wasn’t logged in and was still able to download the PDF document.
Ideally, if someone copied the link and emailed it to someone else they would be required to login to download. Currently it doesn’t seem like this is possible.
Forum: Plugins
In reply to: [Regenerate Thumbnails] Unregistered thumbnail sizes still listed.I just noticed when you regenerate thumbnails for a single image it shows check marks next to the registered sizes and crosses next to the unregistered ones. This feature seems to be missing from the page to process all images.
Is anyone using tar.gz out there? Surely it’s not just me. Can anyone open the taz.gz from BackWPup using 7zip? Are you using different software? If so what are you using?
I can open tar.gz backups from cPanel. Any help would be really appreciated.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Enough is EnoughChristina,
We understand the most recent update was necessary, it was the way that you went about it (and other updates) that has frustrated so many users and is the last nail in the coffin.
- It was done with no warning
- You invalidated the existing Dropbox app which means all installations immediately stopped working. I personally now have more than 50 websites, each with two or more backups, that I need to go and re-authenticate each one. Some of these go to a dropbox account belonging to a client and I don’t have the logins. If there had been notice given we could have scheduled to progressively update clients sites instead of having to drop everything and do them all at once to ensure the continued safety of the sites.
- When WP has a security issue they urge you to update. They don’t turn everything off so functionality stops.
- Changing the folder name to include the company name is incomprehensible considering the install base and the potential to break scripts and synchronizations people may have setup.
This is on top of other issues that have gone unresolved or unanswered over time.
- Since v3.4.5 I have been unable to open a tar.gz backup. I have tested half a dozen plus archive programs all without success. I’m not the only person who has experienced this.
- I never received a reply related to why a popup window with a progress bar is now used when downloading a backup. The files used to download without this quickly and successfully. What is happening in the background that requires a popup and progress bar?
There seems to be no impact analysis with decisions or you just don’t care.
Daniel, it saddens me to see what your masterpiece has become. ??
This is extremely irritating. I have setup backups for many clients going to their own dropbox accounts. I don’t have their login credentials, nor do I want them. I setup the authentication when sitting with.
Now I have to go back to each and every one to reconfigure the backups.
I don’t think this has been thought through very well at all!
I also read that
Note: The Dropbox backup folder changed from BackWPup to InpsydeBackWPup.
Will existing backups be copied to the new folder and the old folder deleted or is that something we are going to need to do manually?