wycks
Forum Replies Created
-
Forum: Plugins
In reply to: [File Permissions & Size Check] how to understand this error-logThis had to do with your PHP settings, see https://stackoverflow.com/questions/1846882/open-basedir-restriction-in-effect-file-is-not-within-the-allowed-paths
Forum: Plugins
In reply to: [Yoast SEO] Undefined index when debug = trueSame issue on all sites with latest update 1.6, please fix.
Thanks guys really awesome support and I think your service is great.
Forum: Plugins
In reply to: [Admin Column View] Incompatible with Advanced Custom Field PluginIts unfortunate situation when both developers just point fingers at each other instead of coming to a solution. At this point AFC has a lot more usefulness so it’s a one or the other, until a fix can be applied and not hacked into place.
I think you need to feed the developer some more carrots.
2.5.4 did not fix the problem, so I looked at your code.
The
plugin_action_links
is being called wrong. If the filter uses the basename of your plugin it should be called in the main plugin file (the one which is initially loaded) which in your case is twinesocial-widget.php.So remove this function from /lib/functions.php
add_filter( 'plugin_action_links' , 'add_action_links' ); function add_action_links ( $links ) { $links[] = '<a href="'. get_admin_url(null, 'admin.php?page=twinesocial-key-setting') .'">Build My Hub</a>'; $links[] = '<a href="https://www.twinesocial.com/" target="_blank">Learn More About Twine<a>'; return $links; }
and instead put this function in twinesocial-widget.php.
add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'add_action_links' ); function add_action_links ( $links ) { $links[] = '<a href="'. get_admin_url(null, 'admin.php?page=twinesocial-key-setting') .'">Build My Hub</a>'; $links[] = '<a href="https://www.twinesocial.com/" target="_blank">Learn More About Twine<a>'; return $links; }
There are other ways of doing this but that is a simple solution.
Also after looking at this plugin code I am very concerned about a freemium plugin that does not prefixes function names. You have functions like
add_action_links
… yet some functions have a prefix liketwinesocial
, please be consistent and prefix all your functions.Thanks
Forum: Plugins
In reply to: [Simple Admin Notes] Few issues and suggestions of/to this great plugin.1. I don’t see anyway to fix this outside using javascript, which I don’t think is worth it. The reason is this plugin alters the submenu items to make them more clear, but that removes the active submenu CSS from the first item.
2. I believe this has been fixed in last update, generally speaking the UI has been revamped to work well with 3.8 and a lot of CSS has been removed/changed.
3. See above, it’s not 100% like the default but it’s better.
Forum: Plugins
In reply to: [Better Admin Reading] strangeThat’s the whole point of the plugin, it adds more space..
Forum: Plugins
In reply to: [Simple Admin Notes] Few issues and suggestions of/to this great plugin.I will be updating this over the holidays, stay tuned.
Forum: Plugins
In reply to: [Simple Admin Notes] add metabox input to post type insteadSorry I think it’s a great idea, I just don’t have the time to rewrite it at the moment.
Forum: Plugins
In reply to: [Toggle Admin Bar] No go on a multisiteCan you elaborate on the issue?
I have multi site running on WordPress Version 3.6.1 and I do not see any js conflicts or errors, and the plugin works.
Can you open the console in chrome developer tools (or firebug) and tell me what you see?
Thanks
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Cant edit fieldsWP 3.6.1 broke the older versions of GF because it uses a new version of jQuery which no longer uses “selected” for .tabs. So you have 2 options.
1. Update your GF to the newest version.
2. Change the following code in GF’s
form_editor.js
.Change:
jQuery("#field_settings, #form_settings, #last_page_settings, #pagination_settings").tabs({selected:0});
To:
jQuery("#field_settings, #form_settings, #last_page_settings, #pagination_settings").tabs({active:0});
AND change:
jQuery("#field_settings").tabs("select", 0);
To:
jQuery("#field_settings").tabs("option", "active", 0);
Forum: Plugins
In reply to: [WooCommerce] Adding product categories to custom menus?Just to note an easy hack to allow the top menu item to not be a category itself and act as a true parent to all of them
For example you want the menu to be:
-Products
— cats
— dogs
— fish
—–goldfishYou just have to make -Products a link item with the link set to “#” then drag the product categories under it.
Forum: Plugins
In reply to: [Facebook Likes You!] Plug-in ErrorThis settings page is supposed to load the developer’s website (which is stupid) BUT his domain expired and now serves nothing, though it can be enabled to show ads at some point it is not currently doing so.
It’s not malware but its crapware.
Forum: Hacks
In reply to: WP_Query in admin bar breaks post editorUse
get_posts
instead, using the WP_Query admin is a no go since it will overwrite the object.This also crashed the admin on one of my servers, I had to delete the plugin just to log in.
It is NOT acceptable to hijack the login process, can you confirm that this no longer takes place?