vsc55
Forum Replies Created
-
Forum: Plugins
In reply to: [wpForo Forum] Problem list Style Color in SpanishHi,
Reducing the text to 80% is seen correctly.Forum: Plugins
In reply to: [wpForo Forum] Style Dark not apply in Admin Control PanelOk, in the new version 1.7.4 everything works correctly.
Thank you.Forum: Plugins
In reply to: [wpForo Forum] Style Dark not apply in Admin Control PanelOk, solved.
I have added the code in “Custom CSS Code” and now it looks correctly.
Thank you.Forum: Plugins
In reply to: [wpForo Forum] Style Dark not apply in Admin Control PanelHi,
With the new version 1.7.3 (04.20.2020) it continues reproducing the problem.
I have cleared all the cache and updated to the web Ctrl+F5.Best regards.
Forum: Themes and Templates
In reply to: [Pinnacle] Show WarningPerfect, now everything works ok! ??
Forum: Themes and Templates
In reply to: [Pinnacle] Show WarningI have deactivated the plugins and it does the same, it can be some kind of warning at the php level that I have activated in my system.
What I have checked is that in the “__construct” function where the error occurs (“pinnacle/themeoptions/redux/inc/class.redux_filesystem.php on line 29”) an attempt is made to add an array to the object “$this->parent” when it’s still NULL.
The question is that the “get_instance” function when creating the object does not pass the parent object to define in the constructor. But after creating the object, the variable “parent” is defined.
This has been my solution:
public function __construct() { if (! empty($this->parent)) { $this->parent->admin_notices[] = array( 'type' => 'error', 'msg' => '<strong>' . __( 'File Permission Issues', 'pinnacle' ) . '</strong><br/>' . sprintf( __( 'We were unable to modify required files. Please check your permissions, or modify your wp-config.php file to contain your FTP login credentials as <a href="%s" target="_blank">outlined here</a>.', 'pinnacle' ), 'https://codex.www.ads-software.com/Editing_wp-config.php#WordPress_Upgrade_Constants' ), 'id' => 'redux-wp-login', 'dismiss' => false, ); } }
- This reply was modified 4 years, 9 months ago by vsc55.