Any way to add Edit This, for the page you’re currently on to the dropdown list?
]]>So I checkboxed all the options at /options-general.php?page=admin_bar_edit_page_links
but still only have Pages showing.
Activated, deactivated, confirmed the settings are activated, no change.
Also, when deactivated the item remains in Admin bar, but with no icon.
I am using “Custom Admin Interface” plugin, conflict?
Any advice?
]]>Hi Brett, love your plugin, but since a few months I’m not able to select “Pages” to view in the Admin Bar. This is happening on multiple sites and for me this is the main reason to use your plugin. So for now, it’s useless to me.
Everytime I check “Pages” and hit save, the check is gone. I can select all the other options, only not pages.
Do you have any idea on how to fix this? I’m using WP 4.9.8 with Avada 5.7
]]>Hey there! Interesting plugin. Is there a way to limit the pages or posts listed to the x most recent or only ones that have been published in the last x days?
]]>I updated the plugin today and now have this error message on the top of my page “Invalid argument supplied for foreach() in /home/mywebsite.com/wp-content/plugins/admin-bar-edit-page-links/admin-bar-edit-page-links.php on line 89.” How can I fix this?
Thanks!
]]>Hi
This is a great plugin and saves a lot of time.
Is there any change to add a search box at the top of the list to speed up searching for pages. Even better if the search was shown as you typed in the box … narrowing the search as you type.
Also could posts be added to the list too. Pages in the list first then followed by posts.
Thank you.
Kind Regards
Neil
]]>Right after line 50 you need to add add the following:
$img = '';
Plugin throws errors because $img only shows on versions less than 3.8 so it never gets defined on versions greater than 3.8, but is called regardless. Adding an empty array should be an ok quick fix.
So it should go something like this:
if (floatval($wp_ver) >= 3.8) {
$title = '<span class="ab-icon"></span><span class="ab-label">Edit Pages</span>';
$img = '';
} else {
$title = '<span class="ab-icon"><img src="'. BS_ABEP_PATH . '/images/edit-page-icon.png" /></span><span class="ab-label">Edit Pages</span>';
$img = '_no_dashicon';
}
Alternatives could be to wrap the whole if then in a function, return the content instead of using variables and then just call the function directly. Isset would work too, but the method above seems like the easiest/quickest.
]]>A very handy addition to WP (should be there by default for Pages AND Posts)
Problem is when I activate the plug in I am not able to add media to pages, I select the add media button on the page, the media library popup shows I select an image but I then cannot use the drop down menus to select size etc are no longer active and the Insert button does not work.
I have tested this on a default WP install and also some other sites with other plugins installed.
When I deactivate the plugin the insert media works again.
]]>