technologyrocks
Forum Replies Created
-
It turns out it was a conflict with the Astra Theme!
Correction: it is the combination of Direct Checkout 3.3.9 and WooCommerce 9.3.2 that causes the error:
Update Direct Checkout to 3.3.9 and leave Woocommerce on 9.2.3 and no problem
Update Direct Checkout to 3.3.9 and WooCommerce to 9.3.2 and the cart gets the error as described above
Update Woocommerce to 9.3.2 and leave direct checkout on 3.3.7 and no problem
Further:
Delete an item and get
Uncaught TypeError: t is undefined
Update the item quantity and get
Uncaught TypeError: r is undefined
- This reply was modified 6 months ago by technologyrocks.
- This reply was modified 6 months ago by technologyrocks.
Hi,
The them is Astra. I have also tried the Storefront theme and get the same problem.
The site is using Elementor, and the plugins, WordPress and Theme are updated weekly.
Hi, do we have an update on this please? My site is multisite, WP V6.0, and AIOWPS V4.4.12.
thanks ??Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idHi, finally found the problem
It looks like when the database was moved the indexes were not.
Restoring the indexes solves the problem
thanks for your patience!
Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idInstallatron is from the hosting site for installing wordpress.
The other is for the theme to give different post types.
This problem only happened after moving the site.
Everything works on the original site: https://staging.technology.rocks
Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idHere is a screen shot:
https://www.dropbox.com/s/5uqoh6u6uq6xfqz/MU%20plugins.png?dl=0
Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idForum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idHi
a dropbox link to the screen shot of the db and inbound messages: https://www.dropbox.com/s/9trde6rdy6pct8y/inbound%20messages.png?dl=0
cheers
Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idHi
I deactivated all plugins except CF7 and Flamingo
switched to 2020 themeYou can see the default theme on https://xea7hb0j-staging.dreamwp.com/contact-us/
A screeshot of the deactivated plugins is here https://www.dropbox.com/s/5npwsd9mgh1z5z3/deactivated%20plugins.png?dl=0
Same problem.
- This reply was modified 4 years, 6 months ago by technologyrocks.
Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idHi,
It is a custom theme.
ACF to REST API Version 3.3.1
Advanced Custom Fields Version 5.9.1
Contact Form 7 Version 5.2.2
Flamingo Version 2.2
Limit Login Attempts Reloaded Version 2.15.2
Members Version 3.1.1
Smart Slider 3 Version 3.4.1.9
UpdraftPlus – Backup/Restore Version 2.16.29.24If you want to email me on [email protected] I can do a screen share session at whatever time/day suits and you can look at whatever you need to?
thanks very much
Forum: Plugins
In reply to: [Flamingo] Flamingo inserting post with 0 idHi Takayuki,
The site migrated to is https://xea7hb0j-staging.dreamwp.comI migrated from is https://staging.technology.rocks
Forum: Plugins
In reply to: [Flamingo] Not showing in MemberPress MembersHi,
The following is the solution that worked for me. Flamingo capabilities are all assigned the edit_users capability.
In Members, grant edit_users in the custom role and hey presto! Flamingo shows in the custom role (and no admin user menu for the custom role if Edit Users is the only capability granted).
This opens up a security hole, as my custom role should not have access to users. Therefore, I also added the following to my functions.php, where ‘cattery-admin’ is the name of the custom role:
add_action( 'load-user-edit.php', 'post_listing_page' ); function post_listing_page() { $user = wp_get_current_user(); if ( $user->roles[0] == 'cattery_admin' ) { wp_redirect( site_url('/')); exit; } }
Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] Flamingo Plugin not showingHi, for anyone else who needs this, I found that Flamingo is assigned the edit_users capability.
In Members, grant edit_users in the custom role and hey presto! Flamingo shows in the custom role (and no user menu if Edit Users is the only capability granted).
This opens up a security hole, as this custom role should not have access to users. Therefore, I also added the following to my functions.php, where ‘cattery-admin’ is the name of the custom role:
add_action( 'load-user-edit.php', 'post_listing_page' ); function post_listing_page() { $user = wp_get_current_user(); if ( $user->roles[0] == 'cattery_admin' ) { wp_redirect( site_url('/')); exit; } }
- This reply was modified 4 years, 6 months ago by technologyrocks.
For the benefit of anyone else needing a role to upload images and edit image attributes and to delete images:
Add the ability to Edit and Delete Posts. This does not allow the user to add new posts (even if the Add New button shows).
- This reply was modified 4 years, 6 months ago by technologyrocks.