marceltj
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Activity Plus] Change CSSSuggest you inspect it again with Firefox/Chrome. Might be overwritten by theme.
Forum: Plugins
In reply to: [Iframely – WP media embeds, cards and blocks] bottom padding?Ok, thank you very much!
Forum: Plugins
In reply to: [Iframely – WP media embeds, cards and blocks] bottom padding?Forum: Plugins
In reply to: [WPFront User Role Editor] Fatal error: Call to undefined functionMy issue is resolved. Thank you to Syam for his help and prompt responses!
Turn out that I had a hidden field which was spelled out incorrectly.
Double check that your field mappings and namings are correct! ??Forum: Plugins
In reply to: [WPFront User Role Editor] Fatal error: Call to undefined functionSyam, your email? I will send you a private link
Forum: Plugins
In reply to: [WPFront User Role Editor] Fatal error: Call to undefined functionHi Syam,
I am getting the same error when using Gravity for my registration form:
Fatal error: Call to undefined function get_user_to_edit() in /homepages/wp-content/plugins/wpfront-user-role-editor/classes/class-wpfront-user-role-editor-assign-roles.php on line 123NOTE: User does get created with correct user role. In this case ‘subscriber’.
I am using gravity form+registration add on.
Regards,
MarcelForum: Plugins
In reply to: [Social Articles] posting new articlePlace this in functions file. Then link to /articles/postarticle/ or whatever you want the link to be.
function redirect2profile(){ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if($_SERVER['REQUEST_URI'] == '/articles/postarticle/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){ global $current_user; wp_redirect( get_bloginfo('url') . '/'. $current_user->user_login . '/articles/new'); exit(); } else { if ($_SERVER['REQUEST_URI'] == '/articles/postarticle/' && is_plugin_active('buddypress/bp-loader.php') && !is_user_logged_in()) { wp_redirect( get_bloginfo('url') . '/wplogin?action=register'); exit(); }} } add_action('init', 'redirect2profile');
Forum: Plugins
In reply to: [Social Articles] Default profile tabslight tweak
function redirect2profile(){ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if($_SERVER['REQUEST_URI'] == '/articles/postarticle/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){ global $current_user; wp_redirect( get_bloginfo('url') . '/'. $current_user->user_login . '/articles/new'); exit(); } else { if ($_SERVER['REQUEST_URI'] == '/articles/postarticle/' && is_plugin_active('buddypress/bp-loader.php') && !is_user_logged_in()) { wp_redirect( get_bloginfo('url') . '/wplogin?action=register'); exit(); }} } add_action('init', 'redirect2profile');
Forum: Plugins
In reply to: [Social Articles] Default profile tabThis is how I got my button to work (I point to url /articles/postarticle but you can change that to whatever you want
function redirect2profile(){ include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); if($_SERVER['REQUEST_URI'] == '/articles/postarticle/' && is_plugin_active('buddypress/bp-loader.php') && is_user_logged_in()){ global $current_user; wp_redirect( get_bloginfo('url') . '/'. $current_user->user_login . '/articles/new'); exit(); } else { if ($_SERVER['REQUEST_URI'] == '/profile/' && is_plugin_active('buddypress/bp-loader.php') && !is_user_logged_in()) { wp_redirect( get_bloginfo('url') . '/register/'); exit(); }} } add_action('init', 'redirect2profile');
Forum: Plugins
In reply to: [Social Articles] How to create dynamic url to "New Article" in Nav Menu?Any update on this? I feel this is a recurring question about this plugin and yet no resolution. Tried using an embedded link with php but that didn’t work for me.
Forum: Plugins
In reply to: [WP Job Manager] Attach seeker to job posting?for The first item #3 above- by post resume I mean create profile
Forum: Plugins
In reply to: [WP Job Manager] Attach seeker to job posting?Yes, people looking to apply for jobs. I guess workflow would look something like
1) Identify job
2) Click apply
3) Login or register (post resume)
4) On submission, show that user has applied
5) Email notification would be nice also.I guess the main point is to capture the user data as opposed to just having them apply off the site.
Maybe on job create also include options for apply type:
1) “Direct apply” – Would use the plugin
2) “Email apply” – Would be a mail form
3) “URL apply” – recruiter can enter url to offsite apply formThank you very much for the outstanding support!