bradster1029
Forum Replies Created
-
Hi Plugin Support.
I am also having this issue. The plugin is adding a trailing slash to all wp-admin pages. (Ex. /wp-admin/plugins.php is showing as //wp-admin/plugins.php) and when it redirects it goes to the homepage for us as well. We have done all the above testing and even tested with a default theme. This does not seem like it’s a problem with other plugins since more than one user is having the problem…
Please support this crucial plugin to our site.
Any update on being able to add to multiple products? Via the quick edit function or special taxonomy?
Forum: Plugins
In reply to: [WooCommerce - Gift Cards] Latest update BROKE EVERYTHING! EMERGENCY@imkane – Can you try uninstalling the plugin and reinstalling the plugin? Please backup your site before doing so!
Forum: Plugins
In reply to: WordPress User Role Plugin / CapabilityI found this code via a different forum but its not finished and im not the greatest in PHP yet.
function admin_users_filter( $query ){ global $pagenow,$wp_query,$user_id; if ( is_admin() && $pagenow=='users.php' && !current_user_can('manage_options') ) { $editor_user_id = get_current_user_id(); $affiliate = get_user_meta($editor_user_id, 'affiliate', true); $query->search_term = $affiliate; global $wpdb; if (!is_null($query->search_term)) { $query->query_from .= " INNER JOIN {$wpdb->usermeta} ON " . "{$wpdb->users}.ID={$wpdb->usermeta}.user_id AND " . "{$wpdb->usermeta}.meta_key='affiliate' AND "."{$wpdb->usermeta}.meta_value LIKE '%{$query->search_term}%'"; } } } add_filter( 'pre_user_query', 'admin_users_filter' );