shoqvalue
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Hueman vs CustomizrWell, scratch #1. I don’t know why I missed this before, but there are many child themes for Customizr. Exactly what I wanted.
So, on to question #2?
UPDATE
This was wrong. THese childthemes were meresly showcased, they are not available
So again, are there any pre-made customizr child themes?
https://presscustomizr.com/extension/customizr-child-theme/- This reply was modified 7 years, 2 months ago by shoqvalue.
Forum: Themes and Templates
In reply to: [Hueman] Changing toggle widthThank you for the reply. Our site is still on lockdown. I can I provide that to you privately if you tell me how?
But I really don’t know what there is to see, though. I am talking about the “<<” toggle buttons “>>” that open and close the left and right widgets. It’s a major feature of your theme (one is yellow, one green). When closed, a lot of space is wasted because the buttons (and the vertical column they appear in) are over a 1/2 inch wide. We just want to make them smalled (1/2 the existing width, but there seems to be some complexity to doing that and was hoping it was easier than it appeared.
Forum: Plugins
In reply to: [Export WordPress Menus] Import is not workingThank you. Working fine now. Finally, someone solved this problem. Well done.
Forum: Plugins
In reply to: [Export WordPress Menus] Import is not workingI had the same result. I get only the menu name, and it reports that the items were already imported when I try to do i again, but there are never any items
A menu importer isn’t too valuable without the menu items. We really need his, so sure hope you can fix soono.
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsFrank, so we solved that.
Now, suppose we had a 1000 subsites we needed to migrate your settings to, how many we go about it? You don’t have CLI acccess to this plugin, do you? If not, how we might approach it. We’re pretty clever.
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsOk frank, my coder, Charles fixed it. Here’s the solution for your reference:
CHARLES: The problem was that he was calling the export function outside of the WordPress context, then checking for user capabilities – but the user object hasn’t been set until everything has loaded. So it failed.
I fixed it by putting the call to the export function inside the ‘plugins_loaded’ hook, so it happens after everything is up and running.CHARLES:
This was the faulty code in adminimize_page.php:// Export the options to local client. if ( array_key_exists( '_mw_adminimize_export', $_GET ) ) { _mw_adminimize_export_json(); die(); } I CHANGED IT TO: // Export the options to local client. add_action( 'plugins_loaded', function() { if ( array_key_exists( '_mw_adminimize_export', $_GET ) ) { _mw_adminimize_export_json(); return; } } );
- This reply was modified 7 years, 7 months ago by shoqvalue.
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsPerhaps if you could respond more than once a week, we could figure out what’s going on, but you have others reporting the same problem. We are running a virtual server in a Debian distro
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsFrank, I have done that and posted the error messages to you twice.
https://www.ads-software.com/support/topic/the-plugin-is-not-exporting-the-settings/#post-9313528
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsHas the author tried different browsers? I am using CHrome
Obviously there is something wrong somewhere, but the plugin is useless to us if we can’t export the settings.
We have disabled all other plugins, and get the same result. A blank tabCreated a project. It shows up in the group’s list of projects with me as the creator (I am the group admin).
But when I click on the project, I get“Opps, Page Can’t be Found
It looks like nothing was found at this location. Maybe try a search?”Everything looks normal, but there is no project there. What now?
UPDATE
When i click on the project, the url points to a path that DOES NOW EXIST.
../blog/project/the-learning-buddy-press-project/
I have no such project page under “Blogs?This is very confusing. How do I fix this?
- This reply was modified 7 years, 7 months ago by shoqvalue.
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Status of this pluginThank you for the reply. Is it basically stable, or will we find a lot broken? Anything we should be careful to stay away from?
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsAnd obviously, I am not the only one having this issue, as the thread was started by someone getting exactly the same blank page that we are. Since it happens with no other plugins active, it has to be an Adminimize issue. Your plugin is excellent, but without being able to export to other subsites, it’s useless to us.
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsAs I said a the outset, we have tested it with all plugins disabled. Same result
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settingsOk, I turned on debugging and got this after I tried to export. Does this tell you anything more?
Notice: Use of undefined constant AUTH_COOKIE – assumed ‘AUTH_COOKIE’ in /var/www/vf/wp-includes/pluggable.php on line 767
Notice: Use of undefined constant LOGGED_IN_COOKIE – assumed ‘LOGGED_IN_COOKIE’ in /var/www/vf/wp-includes/pluggable.php on line 760
Forum: Plugins
In reply to: [Adminimize] The plugin is not exporting the settings“As my feedback for notices above?” I don’t understand what you’re asking. I gave you the only errors that reported when we tried to export. We are running mutlisite? Ddid you test in that enivorment? We are running Apache on a virtual server?
I don’t know what “notices from other topics” refers to.
What exactly do you wish me to do?