brianWP
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Manager] How to migrate downloads from one website to anotherThat worked, thanks. Presumed the WordPress export/import would have downloaded the documents, but I guess it didn’t/can’t. Thanks for your help,
Forum: Plugins
In reply to: [WP Fastest Cache] Browser Cache Not Working – VPS Issue?Thanks for your prompt response. I just figured it out. Amazon Lightsail/bitnami wordpress setup disables the .htaccess file by dfault and uses htaccess.conf instead…so I enabled access to the .htaccess file by adding AllowOverride All in my virtual host record, and GTMetrix is now showing browser caching enabled.
Forum: Plugins
In reply to: [Force Login] Whitelist Blog Pagination PagesYes, using 5.0. Did try is_archive, and is_page_template(‘archives.php’) and neither came out true for some odd reason.
Just got is_paged to work, and luckily I don’t have any other paging on the site that needs protected.
Thanks for your help,
Forum: Plugins
In reply to: [Force Login] Whitelist Blog Pagination PagesSorry, nevermind, not working. Thought I was logged out. Still getting redirected to login on /archives/page/2 . Also tried condition if is page template archives.php and that didn’t work. (Even though source shows archives template body class)
Forum: Plugins
In reply to: [Force Login] Whitelist Blog Pagination PagesPerfect, thanks! Didn’t realize the paging pages were going to be true for that condition.
Awesome, thank you! Great instructions and worked perfectly.
Thanks for the reply. It’s a password protected page, can I email it to you?
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Mapo doesn't renderI can’t remember unfortunately, but try 1.11.1
//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Maps Not Displaying – version 2.43.3Try checking the version of jquery that your theme is calling. Update it to 1.12.2 , that worked for me.
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Mapo doesn't renderThe fix for me was to update the version of jquery that my theme was calling
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Map stopped displaying in latest versionMost likely an outdated version of jquery being called in the theme. That was the issue for me
Forum: Plugins
In reply to: [User Role Editor] "Apply to All Sites" Checkbox Does Not AppearThank you! Just found that same answer a few seconds ago in your changelog here! https://shinephp.com/user-role-editor-wordpress-plugin-changelog/ 3.14 = 17.05.2013
Thank you kindly for your help
Forum: Plugins
In reply to: [User Role Editor] "Apply to All Sites" Checkbox Does Not AppearHi there, I have it Network Activated and still don’t see “Apply to All Sites”. Any other ideas as to why it’s not showing for me? My user is super admin.
Forum: Plugins
In reply to: [User Role Editor] Compatible with Domain Mapping?Never mind, found your response here and worked perfectly https://www.role-editor.com/forums/topic/cant-edit-roles-via-subsite/#post-1879
Thanks
With the help of the support team at Gravity Forms, I was led to see that in the database , the postmeta (the table that these images are stored in) values are being stored differently.
When a post is created using the post editor and custom field upload image, the image is stored a wp_attached_file, and then the custom field name is stored as another record that calls the wp_attached_file ID.
When a post is created using a gravity forms form, the image upload field (mapped to an ACF custom field) is simply stored in postmeta as a file URL value.
I don’t have a solution to fix this, but I ended up using the “Post Image” field in gforms and set it as a “featured image” for the post to achieve what I wanted. Hope that helps