James Fotheringham
Forum Replies Created
-
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Fatal ErrorHi, I still haven’t heard back since sending a message through your company contact page. Is there an update on this please? Thhanks.
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Fatal ErrorHey @mkesteban08
I have sent the contact form on the website but haven’t received anything back.
Any ideas please?
Thanks.
Forum: Plugins
In reply to: [WP User Manager - User Profile Builder & Membership] Fatal ErrorHi @mkesteban08 ,
Thanks for getting back to me. I have now sent a form on your contact page.
James.
Forum: Plugins
In reply to: [Database Cleaner] Tables tab is emptuHi @tigroumeow
I have the latest version and couldn’t see any errors.
I had to delete and start again for it to work.Very strange, as I’ve not had any problems before.
Works now though.Thanks for getting back to me though.
Thank you so much!
@wpusermanager That works for 1 additional tab. When I add more code for additional tabs like…
/* ADDITIONAL TABS ON EDIT ACCOUNT */ function my_wpum_account_tab_content() { // render content echo "test"; } add_action( 'wpum_account_page_content_marketing-preferences', 'my_wpum_account_tab_content' );
It breaks the site and displays an error saying a critical error has occurred. Any ideas, please?
Thanks, in advance.
Just wondered if you could take a look at the code I’ve posted to see if anything springs to mind please, about why it wouldn’t be working?
Thanks in advance!
It still isn’t working – this is the code I have got….
A new php file in mu-plugins
<?php /** * Register a new tab within the account page. * * @param array $tabs * * @return array */ function my_wpum_register_new_account_tabs( $tabs ) { $tabs['profile-picture'] = [ 'name' => esc_html__( 'Profile Picture' ), ]; $tabs['marketing-preferences'] = [ 'name' => esc_html__( 'Marketing Preferences' ), ]; $tabs['delete-account'] = [ 'name' => esc_html__( 'Delete Account' ), ]; return $tabs; } add_filter( 'wpum_get_account_page_tabs', 'my_wpum_register_new_account_tabs' );
and within functions.php
function my_wpum_account_tab_content() { // render content } add_action( 'wpum_account_page_content_profile-picture', 'my_wpum_account_tab_content' );
Any help would be greatly appreciated.
Thanks.
Forum: Fixing WordPress
In reply to: Searching an External WebsiteHiya, I shall have a look at that link, thanks!
It isn’t another WordPress site no, it’s a WHMCS system stored on the same server.
Thanks for fixing!
I also have already tried changing to a default theme, and the same issue occurs. I use the Astra theme.
Forum: Fixing WordPress
In reply to: Posts List Not Aligned to Post TitleThanks @swansonphotos , that has worked perfectly!