TheBusinessCat
Forum Replies Created
-
Hi Patrick,
Thanks for your response.
I found the error_log file. You can download it from here.
I did do the conflict test before I posted my first message and still got the error.
Thanks for the help.
Hi there,
Thank you, that did work. The stats for the men’s group was not showing, but I just did as you explained above for a men’s fixture, and the stats showed.
Thank you again for all your help.
That account was deleted, so I can create another account with admin rights. Please let me know where I can send the login info?
I removed the plugin, re-installed it, and opened each matachday and clicked the update button, but it’s still not showing the player stats.
And just to answer your previous question, there are two groups, once with ID 25 and another with ID 26, and both do not show the stats.
Hi
Thanks, just want to make sure that I will not lose any data from Jomsports when uninstalling? I will make a backup just incase.
Hi Kris,
Aah ok, thanks very much. Was just curious.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] No Line BreaksHi again,
My apologies, I have resolved this myself. It was my error, I had put line breaks in the table itself.
Thank you.
Just to add to my post above, I was trying other scenarios, and when I search for a product and click on the product from the search page, and then on the button, I also get the “Home” pulling through and not the page title.
In case it matters, I’m using the Divi theme and page builder.
Thanks.
I am well thanks, hope you are too.
Thanks so much for the quick response. I will do as suggested.
All the best.
Forum: Plugins
In reply to: [Secure Custom Fields] Divi Theme Builder & Taxonomy ImageHi @acfsupport,
Just want to check if you received my response above?
Do you perhaps have any further advice?
Thank you.
Forum: Plugins
In reply to: [Secure Custom Fields] Divi Theme Builder & Taxonomy ImageHi @acfsupport,
Thanks for getting back to me.
The return format is set to URL, becuase if I set it to array or ID, the image does not show on the estate agent single page template I created in the Divi Theme builder.
Just to let you know I did change it to array, but it still did not show the image.
- This reply was modified 1 year, 2 months ago by TheBusinessCat.
Forum: Plugins
In reply to: [Controlled Admin Access] Unable to delete registered usersThank you for your message.
I am just a standard admin user created by WordPress.
There is another admin that is also having the issue, and he has the standard admin role and WooCommerce customer role.Just to let you know that there is a new user role created called chairperson, and this is done with some code, which I will put below, however, I nor the other admin has this user role set.
function add_egha_chairperson_role() { // Add the custom role with read-only capabilities $role = 'chairperson'; $display_name = 'Chairperson'; $capabilities = array( 'read' => true ); add_role($role, $display_name, $capabilities); } add_action('init', 'add_egha_chairperson_role'); // Assign Chairperson role to specific ID's $egha_chairperson_user_ids = array( 552, 554, 593, 604, 605, 606, 607, 608, 609, 610, 615, 887); foreach ( $egha_chairperson_user_ids as $user_id ) { $user = new WP_User( $user_id ); $user->add_role( 'chairperson' ); } // Add customer role to Chairperson after purchase function add_customer_role_to_chairperson( $order_id ) { $order = new WC_Order( $order_id ); $user_id = $order->get_user_id(); $user = new WP_User( $user_id ); if ( in_array( 'chairperson', (array) $user->roles ) ) { $user->add_role( 'customer' ); } } add_action( 'woocommerce_new_order', 'add_customer_role_to_chairperson' );
Thank you.
Hi @beardev,
Thank you, I’ll do that.