exitmode
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Login Page Customizer - Login Designer] Redirect automation ?!Rich… same stupid question…
Standard Registration is also changing with Login Designer?
- This reply was modified 6 years, 9 months ago by exitmode.
Forum: Plugins
In reply to: [Custom Login Page Customizer - Login Designer] Redirect automation ?!This yea!
*important talk* !!
Forum: Plugins
In reply to: [Custom Login Page Customizer - Login Designer] Redirect automation ?!But WordPress has different logout styles / pages…
Yes but we dont need a LogOut Designer when the redirect comes…
Forum: Plugins
In reply to: [Custom Login Page Customizer - Login Designer] Redirect automation ?!Haahaha Freaaaaaakk you are sooo fast! ??
Okay sounds really good! ??
And… Login is the same Logout Design? ??
Forum: Plugins
In reply to: [WooCommerce] Hide Shopbase with functions.php / How Can I make a redirect?Resolved! ??
Thank you very much! =)
Forum: Plugins
In reply to: [WooCommerce] Hide Shopbase with functions.php / How Can I make a redirect?Oh I didn’t receive an email for new answers.
I will test it tomorrow!
Thank you for the code! ??
What the… hell!
Close the Topic! Sorry!
EH ?! Storefront uses a style for the checkout / payment method.
I use the normal standard WooCommerce WordPress Layout.
My theme is not overwriting any Files from WooCommerce. No touches!
And in the last Updates it was normal.. but now? no!
Forum: Plugins
In reply to: [Nav Menu Roles] Nav Menu Roles not working!Yes.
Because the Theme uses the Menu Walker Classes for the Mega Menu and thats the Problem.
But now everything is fine and the Developer will change the Walker Classes.
Thank you.
Forum: Plugins
In reply to: [Nav Menu Roles] Nav Menu Roles not working!Hello Helga,
everything is Okay!
I told the Theme Developer the Problem and I currently use your NMR Toggle Plugin… it works!
Thank you,
PatrickForum: Plugins
In reply to: [WP Job Manager] Employment Types – Change?!Hey Adam,
now it works! Thank you so much for helping me! ??
// Neue WPJM Job Types in Deutsch add_filter( 'wpjm_job_listing_employment_type_options', 'akh_add_new_wpjm_employment_type' ); function akh_add_new_wpjm_employment_type( $employment_types ) { $employment_types['Vollzeit'] = __( 'Vollzeit', 'wp-job-manager' ); $employment_types['Teilzeit'] = __( 'Teilzeit', 'wp-job-manager' ); $employment_types['Aushilfe'] = __( 'Aushilfe', 'wp-job-manager' ); $employment_types['Befristet'] = __( 'Befristet', 'wp-job-manager' ); $employment_types['Praktikum'] = __( 'Prakitkum', 'wp-job-manager' ); $employment_types['Ausbildung'] = __( 'Ausbildung', 'wp-job-manager' ); $employment_types['Studium'] = __( 'Studium', 'wp-job-manager' ); $employment_types['Messe'] = __( 'Messe', 'wp-job-manager' ); unset( $employment_types['FULL_TIME'] ); return $employment_types; }
Forum: Plugins
In reply to: [WP Job Manager] Display their Jobs in their profile pageWhy it is so hard to display jobs from a author id (employer)?
Its good to build “Company Profiles” to show all listed jobs from the author / employer. You can Put that with a ShortCode into a blank Page – Tadaaa…
Forum: Plugins
In reply to: [WP Job Manager] Employment Types – Change?!unset will not work!
Forum: Plugins
In reply to: [WP Job Manager] Employment Types – Change?!Danke! =)
Forum: Plugins
In reply to: [WP Job Manager] Employment Types – Change?!add_filter( ‘wpjm_job_listing_employment_type_options’, ‘akh_add_new_wpjm_employment_type’ );
function akh_add_new_wpjm_employment_type( $employment_types ) {
unset $employment_types[‘FULL_TIME’];
return $employment_types;
}Errorwarning:
Deine PHP-Code-?nderungen wurden aufgrund eines Fehlers in Zeile 30 der Datei wp-functions.php zurückgesetzt. Bitte beheben und versuchen, erneut zu speichern.
syntax error, unexpected ‘$employment_types’ (T_VARIABLE), expecting ‘(‘