Andrew Norcross
Forum Replies Created
-
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] FAQ's Appearing in Sidebar when Widget isn't Activatedcustom menus can be used as widgets, which is what I imagine is happening here. without seeing the scope of the code (which is beyond the level of help I can provide here) there is something that is modifying the loop that those menus are being generated from.
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] FAQ's Appearing in Sidebar when Widget isn't Activatedit’s a widget that is displaying the items on the side, or something hooked into your
do_action( 'before_sidebar' );action.did you build the site or did a developer handle it?
Forum: Plugins
In reply to: [Comment Blacklist Manager] Update readme for 4.0.1/4.1?should be all squared away
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] FAQ's Appearing in Sidebar when Widget isn't Activatedto clarify, the items being displayed on the sidebar are not from a widget, it’s the content inside a shortcode. so either someone put a shortcode in the nav (not likely) or its otherwise a modified query from the theme.
Forum: Plugins
In reply to: [SFN Easy FAQ Manager] FAQ's Appearing in Sidebar when Widget isn't ActivatedLooking a bit closer, I’m not seeing where in the plugin itself that the query is being modified. Do you have something filtering the post content ( a
pre_get_postsor similar ) to add FAQs?Forum: Plugins
In reply to: [SFN Easy FAQ Manager] FAQ's Appearing in Sidebar when Widget isn't ActivatedI can see the issue, the filter for displaying the items is also getting into the nav (which is shouldn’t). let me find a fix.
Forum: Plugins
In reply to: [YOURLS Link Creator] Importthe update just pushed will not address imports, since the amount of posts being imported can affect the API returns and potentially break an import. I will be addressing this in a separate update.
Forum: Plugins
In reply to: [YOURLS Link Creator] Allow non-admin access?Just pushed the update, so you can now filter the capability level. Here’s the filter you will need to add to your theme / functionality plugin (not the YOURLS plugin itself, of course):
function rkv_yourls_allow_contribs( $action, $cap ) { return 'edit_posts'; } add_filter( 'yourls_user_cap', 'rkv_yourls_allow_contribs', 10, 2 );Forum: Plugins
In reply to: [YOURLS Link Creator] Plugin strips hyphens out of shortlinkJust pushed the update. Here’s the filter you will need to add into your theme / functionality plugin (not the YOURLS plugin itself, of course) to handle it
function rkv_allow_yourls_hyphens( $filter ) { return '/[^A-Za-z0-9-]/'; } add_filter( 'yourls_keyword_filter', 'rkv_allow_yourls_hyphens' );Forum: Plugins
In reply to: [Content Update Notification] Setting up more than one email?sending to more than one person? or sending multiple emails? I’m not completely sure about your question.
Forum: Plugins
In reply to: [Content Update Notification] Content-edit-user tag dont workthe update has been released.
Forum: Plugins
In reply to: [YOURLS Link Creator] Plugin strips hyphens out of shortlinkyep. this is gonna be a filter that you use to modify the keyword sanitation. since its something that isn’t always on by default, you’ll need to enable it. I’ll give you an example when I release the update.
Forum: Plugins
In reply to: [YOURLS Link Creator] Importto confirm: are the short urls generated on import now (just without the keyword portion)?
Forum: Plugins
In reply to: [Content Update Notification] Content-edit-user tag dont workwelp. due to me using
user_idinstead ofuser_ID. ill update this evening.Forum: Plugins
In reply to: [YOURLS Link Creator] Allow non-admin access?I’ll need to add a filter to accommodate this. I’ve got a version coming out in the next day or two, I’ll add it in there.