eric3d
Forum Replies Created
-
Forum: Plugins
In reply to: [CMS Tree Page View] How to display CMS Tree Page ViewCMS Tree Page View is designed as an admin panel for back end use only. It would take a lot of work to display it in the front end. You’re better off looking for an alternative plugin like Page-list.
Forum: Plugins
In reply to: [CMS Tree Page View] Deprecated function `create_function`The developer could easily check for php version and keep create_function if <5.3 to maintain backwards compatibility.
5.2 has been EOL for about 8 years now.You probably need to update your permalink structure for the new custom post type to be recognized. Simply go to Settings > Permalinks and click “Save Changes. This will rewrite the permalink structure and include any custom post types that were added since the last time that file was written.
Ivan, you may want to add that step to the instructions.
Forum: Plugins
In reply to: [iPanorama 360 - Advanced Virtual Tour Builder] Responsive heightThanks. That makes it a lot easier to target the correct div.
You may still want to adjust how it handles % heights.
Forum: Plugins
In reply to: [CMS Tree Page View] Deprecated get_screen_icon() functionIt doesn’t look like the plugin is abandoned, since it was updated in January 2018.
The call is on line 1228 of functions.php. While the error is minor, it’s annoying and that line can safely be removed.
Forum: Plugins
In reply to: [Contact Form 7] Mail settings disappeared after changing site to HTTPSThanks for the explanation. Problem solved.
Forum: Plugins
In reply to: [Contact Form 7] Mail settings disappeared after changing site to HTTPSUpdate: I converted 2 more sites.
Site 1:
The mail settings disappeared after I ran the SQL query to replace https://www.example.com with https://www.example.comUPDATE wp_options SET option_value = replace(option_value, 'https://www.example.com', 'https://www.example.com') WHERE option_name = 'home' OR option_name = 'siteurl'; UPDATE wp_posts SET guid = replace(guid, 'https://www.example.com', 'https://www.example.com'); UPDATE wp_posts SET post_content = replace(post_content, 'https://www.example.com', 'https://www.example.com'); UPDATE wp_postmeta SET meta_value = replace(meta_value, 'https://www.example.com', 'https://www.example.com');
Note that the string https://www.example.com was present in Mail settings.
Site 2:
I edited the string https://www.example.com (added a ‘s’) in Mail settings before converting to HTTPS. I got a warning from WordFence requiring me to authorize that change. The mail settings did not disappear.In conclusion, I’m not sure whether the problem is caused by CF7 or by WordFence, and I don’t have any other site to convert at this time.
Forum: Plugins
In reply to: [Flamingo] Unable to See or Edit Email MessageSame problem here. Have you figured out which plugin prevented editing?
@duongcuong96 Can you update the error message in a way that will suggest verifying that the region is properly set?
ERROR: S3 Bucket “…….” does not exist in selected region!
Forum: Plugins
In reply to: [Cognito Forms] Prefilling formThanks. I ended up using the embed code directly instead of the plugin. But it’s still something I’d like to see added to the wishlist for the plugin.
Forum: Plugins
In reply to: [List category posts] Excerpt does not show manual excerpt contentIgnore that. It was a caching issue.
Forum: Plugins
In reply to: [Custom DataBase Tables] Incorrect form action URL when editing entryI did not fix it. I was testing the plugin for potential use when I noticed and reported this bug. We ended up not using it so I stopped investigating.
Doing a search and replace for “/wp-admin/admin.php and replacing it with “<?php echo admin_url(); ?>/admin.php fixed many issues but not all.
Thanks. I’ll look into this solution.
I would like some clarification on that as well.
Regardless of what value I enter in the Jobs tab, the Information tab still displays a Maximum execution time of 120 seconds. Is that a server-side setting?
Does the “reduce server load” option help in these cases or hurt (by making the process longer)?
Forum: Plugins
In reply to: [Crop-Thumbnails] Not cropping featured imageThe plugin only works for image sizes that are set with hard crop mode (for details, read this). Those sizes are defined in your theme.
If you’re using a custom theme, you can add thumbnail sizes in the functions.php file. If you’re using a pre-built theme, look for a plugin that allows you to add thumbnail sizes (like this one, which I have not tested).