Johnathan.PRO
Forum Replies Created
-
Forum: Plugins
In reply to: [Kognetiks Chatbot] OpenAPI technical problem messageThanks and I will take a look.
Forum: Plugins
In reply to: [AI Engine] The chatbot does not appear on mobileThe same is happening to me when updating to the latest version too.
Forum: Plugins
In reply to: [Kognetiks Chatbot] OpenAPI technical problem messageits still happening and repeatable so I can say….
tell me how play a violin and I get the OpenAI technical message
but if I say ..
tell me how to play a fiddle then I’ll get feedback from the plugin.
Forum: Plugins
In reply to: [Kognetiks Chatbot] OpenAPI technical problem messageLooks like I maybe experiencing the outage before it was made public: https://www.tomsguide.com/news/live/chatgpt-outage-june-2025
Forum: Plugins
In reply to: [Kognetiks Chatbot] Change subjects in conversationYes, it seems to be staying on track more now.
Thanks for the quick feedback and rapid updating!
Forum: Plugins
In reply to: [Kognetiks Chatbot] Context Conversation Blanks OutYes, thanks!
- This reply was modified 12 months ago by Johnathan.PRO.
Forum: Plugins
In reply to: [Kognetiks Chatbot] Context Conversation Blanks OutThanks and I’ll report back if I run into another issue.
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] Compatibility issues with Brizy proDid you get this resolved? I’m testing out Brizy and I think it’s related to media rewrites, but backgrounds won’t work with stateless enabled.
Thanks for the response, but I’ve noticed it seems doable with hosted WAFs. I’ve followed up with a message to your sales team on the commercial side. Thanks!
Forum: Plugins
In reply to: [WooSwipe WooCommerce Gallery] Latest update took down my siteSame here! Documented with WPCycle Managed Hosting as the RCA. Disabled until fix released.
Forum: Plugins
In reply to: [BuddyPress Simple Events] Restricting categoriesThanks! Is it possible to get you to add this as an option? I prefer to not directly hack a plugin if possible. An admin option to select a category for associating the events and then hiding the category from BP users. I don’t mind compensating of course.
Forum: Plugins
In reply to: [Disable Gutenberg] Disable For GoodAwesome! I’m a Web Project Manager and conversing with my hosting partners to potentially install this as an MU plugin until they’re ready to release in general. I don’t personally see how Gutenberg fits with most workflows of WordPress.
Forum: Plugins
In reply to: [Expire Users] CUSTOM REGISTRATION FROM – GRAVITY FORMS// Setup Gravity Forms Memberships Hooks
add_action( ‘gform_user_registered’, ‘saf_cc_add_custom_user_meta’, 10, 4 );
function saf_cc_add_custom_user_meta( $user_id, $feed, $entry, $user_pass ) {
$time_period = trim($entry[8]);if($feed[‘form_id’] != 1) {
return;
}$user = get_user_by( ‘id’, $user_id );
if(!empty($user)) {
$current_time = current_time(‘timestamp’);
if($time_period == ‘One Day for $15|15’) {
$new_time = ‘+1 day’;
} else if ($time_period == ‘One Week for $30|30’) {
$new_time = ‘+1 week’;
} else if( $time_period == ‘3 Months for $250|250’) {
$new_time = ‘+3 months ‘;
} else if ($time_period == ‘6 Months for $500|500’) {
$new_time = ‘+6 months’;
} else if ($time_period == ‘1 Year for $800|800’) {
$new_time = ‘+1 year’;
} else {
$new_time = ”;
}$time = strtotime($new_time, $current_time);
$default_settings = array (
‘default_to_role’ => ‘subscriber’,
‘reset_password’ => false,
’email’ => false,
’email_admin’ => false,
‘remove_expiry’ => false,
);$updated = update_user_meta($user_id, ‘_expire_user_settings’, $default_settings );
$updated = update_user_meta($user_id, ‘_expire_user_date’, $time );
$updated = update_user_meta($user_id, ‘_expire_user_expired’, ‘N’ );}
}function my_expire_users_expired( $user ) {
//may be we need it in future
}add_action( ‘expire_users_expired’, ‘my_expire_users_expired’ );tions here */
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Levels of AdsE decided to shelf the idea so please close and thanks for your response!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Featured ads in a slideshowIt does support normal posts though if there is a way to get WPadverts generated ads to register as posts?