-
Author
-
December 2, 2016 at 16:03 #145913vachanParticipant
Whenever we try to save any change in the Themes Options
No changes get applied, thus the default is only being dsplayed!
December 2, 2016 at 18:31 #145942RaduModeratorHi,
You will have to enable wp debug to find our what’s going on.
Steps to enable wp debug:
- Connect to your server by FTP
- Look in root directory of your WordPress install and open wp-config.php
- Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
COPY CODEdefine( 'WP_DEBUG', true );
- After this line add this:
COPY CODEdefine( 'WP_DEBUG_LOG', true );
WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).
Repeat the saving theme options action and then check the debug.log file and let me know what error appears.
If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.
After you have disabled the plugins try to see if the error persists.
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 3, 2016 at 12:12 #145963vachanParticipantFollowed the
WP_DEBUG
mode also and thePlugins
Deactive mode.
None working.Setting Saved
Meesage comes but the setting are the default only and no customizato gets saved 🙁December 3, 2016 at 12:45 #145964vachanParticipantThe Child Theme was a problem.
When saved from the Prent Theme, the settings got saved!!!
December 5, 2016 at 14:44 #146074RaduModeratorHi again,
In this case, it means you can have some PHP file added into child theme or some PHP code that it’s added in child theme functions.php (wp-content/themes/kleo-child/functions.php) that can causes that.
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.