humanandcargo
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Plugin does not let me save SEO Settings on PagesOk so I had the same issue and could not change any meta data on old published pages only new ones.
So this fix worked for me…..
The problem is the _wp_page_template in the wp_postmeta table. This was being saved to a previous themes template name.
You can change the following line of code in wp-admin/includes/meta-boxes.php:
if ( ‘page’ == $post->post_type && 0 != count( get_page_templates( $post ) ) ) {
on line 742 to the following:
if ( ‘page’ == $post->post_type ) {
This will force the page attributes to display “Default Template”. When saving the page this will then update the value in the DB.
The actual line which causes the problem is: $page_templates = wp_get_theme()->get_page_templates( $post ); which is in wp-includes/post.php. This returns blank and then fails to run update_post_meta();
Hope this helps you.
Forum: Fixing WordPress
In reply to: ACF Custom Fields, Yoast SEO, and others Not SavingOk so I had the same issue and could not change any meta data on old published pages only new ones.
So this fix worked for me…..
The problem is the _wp_page_template in the wp_postmeta table. This was being saved to a previous themes template name.
You can change the following line of code in wp-admin/includes/meta-boxes.php:
if ( ‘page’ == $post->post_type && 0 != count( get_page_templates( $post ) ) ) {
on line 742 to the following:
if ( ‘page’ == $post->post_type ) {
This will force the page attributes to display “Default Template”. When saving the page this will then update the value in the DB.
The actual line which causes the problem is: $page_templates = wp_get_theme()->get_page_templates( $post ); which is in wp-includes/post.php. This returns blank and then fails to run update_post_meta();
Hope this helps you.
Forum: Plugins
In reply to: [NextGEN Custom Fields] Option to exclude fields on another page?Thats Shauno ill take a look and see how I get on.
Forum: Plugins
In reply to: [NextGEN Custom Fields] Rows do not line up!!I am using this hack by doug for now until I can find a coder who can wrap it properly.
Forum: Plugins
In reply to: [NextGEN Custom Fields] Rows do not line up!!Thanks Shauno, Im glad that this can be done but is not something I can do as my coding skills are under development.
I will look for someone to do this code for me and then post it here as I think that it is an essential element in addition to your plugin.
There must be other users who need varying information under each image that have had problems with layout and will come across this in the future.
??
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Can't set width and Height of map.For anyone having problems with the latest version just revert back to one that works for you here:
https://www.ads-software.com/extend/plugins/store-locator-le/developers/
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Can't set width and Height of map.possibly.
I am using the all time selling theme U-Design from themeforest.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Can't set width and Height of map.Tried this but no joy unfortunately.
emptied my cache too!The developer emailed me an hour ago and said he was working on a fix this weekend, so hopefully this should be sorted soon.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Can't set width and Height of map.Would be good to know if the developers are working on a fix for this issue on the latest release.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Can't set width and Height of map.just to add to this I de-activated all of my other plugins and reverted back to the twenty eleven theme and still the same.
Forum: Plugins
In reply to: [Store Locator Plus? for WP] Can't set width and Height of map.Ok I have found the problem, It is definitely a problem with the latest release.
I had another test site with version 3.7.7 and changed size with no problems, then when I updated to version 3.8.5 it failed to change and save the sizes in settings.
By looking at the latest threads I can see that the developers are very active on here and hope they can come up with a solution very soon for this as I was hoping to show my client the final designs soon.