H. Adam Lenz
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Links To] See on which posts/pages a link is activated?ah, indeed you are correct sir
cheersIn multisite, this issue does not go away. When a new site is created it gets utf8_bin applied and the same issue arrises
Forum: Plugins
In reply to: [Page Links To] See on which posts/pages a link is activated?add_filter( 'manage_edit-page_columns', 'pages_columns' ); add_filter( 'manage_edit-page_sortable_columns', 'pages_columns_sortable' )); add_filter( 'manage_pages_custom_column', 'pages_column_content' ); add_action( 'pre_get_posts', 'pages_orderby' ); function pages_columns($columns){ $columns['page_links_to'] = __( 'Page Links To' ); return $columns; } function pages_columns_sortable($columns){ $columns['page_links_to']='page_links_to'; return $columns; } function pages_column_content($column){ global $post; switch($column){ case 'page_links_to': $meta = get_post_meta($post->ID,'_links_to'); echo '<a href="'.$meta[0].'">'.$meta[0].'</a>'; break; } } function pages_orderby($query){ if( ! is_admin() ) return; $orderby = $query->get( 'orderby' ); if( 'page_links_to' == $orderby ) { $query->set('meta_key','_links_to'); $query->set('orderby','meta_value'); } }
Forum: Plugins
In reply to: [Page Links To] See on which posts/pages a link is activated?I know this is an old post, but I’m looking for the same info. thinking about rolling some custom column code. will post back if i make it work
Forum: Plugins
In reply to: [BU Section Editing] edit_private_pages_in_sectionI ended up making the page status ‘draft’ which seems to work just fine
Forum: Plugins
In reply to: [Redirection] Multisite Redirectit’s working for us, but we only have it installed on site 1
Forum: Plugins
In reply to: [Page Links To] Compatibility with WordPress 4.4.1it is working for me. in 4.4.1
Forum: Plugins
In reply to: [Nested Pages] 502 Bad Gatewaysearch for ‘np-redirect’ in your database. The links are all under wp_posts. np-redirect is the post-type
Forum: Plugins
In reply to: [Nested Pages] 502 Bad GatewayI get the same thing. Removing links that are not really pages solve the issue
Forum: Plugins
In reply to: [BU Section Editing] Remove "Section Editing" RoleStardrive, you can delete the section editor role (or any other role) with the members plugin
apparently this-> https://themehybrid.com/board/topics/content-permissions-does-not-seem-to-work
plugin author does not answer questions here as well
I am having the same issue
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Custom Post Type doesn't worksame problem here