brasofilo
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Tweaks] Possible bug with widget optionsThanks a lot for reporting, I’ll check and update ASAP.
Forum: Plugins
In reply to: [Posts for Page] PhP Error? and question about nav positionNo, I can’t see a culprit for that
Array
that’s displaying.if you change line 305 to
$output .= 'TEST';
does it still happens?
Forum: Plugins
In reply to: [Posts for Page] PhP Error? and question about nav positionShow the code you’re using. Create a Pastebin and post the link here.
Forum: Plugins
In reply to: [Posts for Page] [Plugin: Posts for Page] Feature request: WP-PageNavimissi1976, open your own thread, this one is marked as [resolved].
Forum: Plugins
In reply to: [Plugins Enabler] C'est ?a une forkeWell, taking a second round on the plugin, it does not do what it says it does. And seems kind of problematic trying to make it work.
How can I say that? There’s no single instance of
activate_plugin()
, nor manipulation ofwp_%ID%_options.active_plugins
.The more I think, the more I’m convinced this plugin is not a good idea. Reading the functions
activate_plugin()
andactivate_plugins()
tells me that’s better let WordPress do plugins activations and deactivations in the screen it’s supposed to.Sorry, but I should have called this thread C’est ?a une farce… >:|
@hitchb, I submitted a patch, hopefully it gets included in future releases.
Meanwhile, you can change it in the file
analytics360.php
:– Change 2 occurrences of
current_user_can
in the function a360_request_handler.– And remove the
if(current_user_can)
from the function a360_admin_menu, and modify the capabilities for the dashboard page. It’ll look like:function a360_admin_menu() { add_options_page( __('Settings', 'analytics360'), __('Analytics360°', 'analytics360'), 'manage_options', basename(__FILE__), 'a360_settings_form' ); add_dashboard_page( __('Dashboard', 'analytics360'), __('Analytics360°', 'analytics360'), 'manage_options', // <------ CHANGE HERE basename(__FILE__), 'a360_dashboard' ); }
Forum: Plugins
In reply to: [Admin Tweaks] Admin Dashboard OptionHere it goes:
- https://www.ads-software.com/plugins/wordfence/
- https://www.ads-software.com/plugins/sucuri-scanner/
- https://www.ads-software.com/plugins/obfuscate-email/
- https://www.ads-software.com/plugins/backwpup/
- https://www.ads-software.com/plugins/antispam-bee/
- https://www.ads-software.com/plugins/exploit-scanner/
- https://www.ads-software.com/plugins/bad-behavior/
- https://www.ads-software.com/plugins/block-bad-queries/
And for analyzing themes (that are not from the repository) before uploading to a live server: https://www.ads-software.com/plugins/tac/ and https://www.ads-software.com/plugins/theme-check/
Forum: Plugins
In reply to: [Admin Tweaks] Admin Dashboard OptionHi Cieran, thanks again for the kind words ??
And surely enough, I did this plugin because I use it in every site and it’s installed in the first batch, together with backup and security.Well, the feature you ask is not so small. I’m taking a look on how this is stored at the database, and there are too many variables to control… Per user setting, available widgets, its position and order, if it was previously saved or not, number of columns.
That’s really work for a separate plugin. And right now I need an equilibrium in my number of features and the risk of bloating the plugin.
cheers,
RodolfoForum: Reviews
In reply to: [Admin Tweaks] NiceThanks for the feedback, Dave.
Have you ever looked inside Adminimize code? It’s mind-blowing, that’s a work only a German Gentleman could do, my Latin blood prevents me to do so ??
But, yes, I agree, I’ll try to increase the roles tweaking bit by bit.
cheers!
Forum: Plugins
In reply to: [WP-Syntax] Doesn't work nested in other shortcodesWe have to do the following when using WP-Syntax
<pre>
inside our shortcode:return apply_filters ( 'the_content', $my_shortcode_content );
Forum: Plugins
In reply to: [WP-Syntax] Cache support for massive speed boost via this patchGone again…
Forum: Plugins
In reply to: [Admin Tweaks] What about Multisite and PHP 5.4?Hi Marcelo,
I run it with PHP 5.3.22, I don’t think there’ll be any issues.
Checking the backwards incompatible changes for 5.4, I don’t see anything related.Right now, the Multisite features are few and nothing really that affects the whole network, mainly manipulation of the Sites and Dashboard screens.
Here’s a snapshot of the MS config section. The configurations made in the Plugins section affect both pages
wp-admin/plugins.php
andwp-admin/network/plugins.php
.Another theme only worked with this other hook:
add_action( 'template_redirect', 'b5f_block_parent_gallery' );
Forum: Plugins
In reply to: [qTranslate] How to upgrade from 2.5.36 to 2.5.37No, simply upgrade from the Updates dashboard page, or the All Plugins page.
It’s important to do a backup of your files and database before any update. This plugin is good for that: https://www.ads-software.com/plugins/backwpup/
Forum: Plugins
In reply to: [Unattach and Re-attach Media Attachments] How to make the invisible menuOk, final touch. You don’t need to check for
is_admin()
in the following, one because it’s already targetingupload.php
and the other is already anadmin_*
action and can be targeted as well:add_action( 'load-upload.php', 'bulk_action') ); add_action( 'admin_footer-upload.php', '_admin_footer') );