mogo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Codeify] Drop Down Menu Not Working ProperlyThis is CSS fix for submenu background and link alignment:
.wp-block-navigation__submenu-container {
background:transparent !important}
.wp-block-navigation__submenu-container .wp-block-navigation-item {
background-color:#030712 !important;
display:flex !important;
justify-content: center !important;
align-items: center !important;
padding-top:0.5rem !important;
padding-bottom:0.5rem !important;
}Forum: Themes and Templates
In reply to: [Codeify] Drop Down Menu Not Working ProperlyIt seems the developers have abandoned the theme.
Regarding the issue of not displaying, if the link has # as the href, it doesn’t show.
Forum: Plugins
In reply to: [AI Power: Complete AI Pack] AutoGPT StucksThank you ?enol Bey
Forum: Plugins
In reply to: [WP Crontrol] Deactivating Plugin Deleted All Custom Crons AddedNever mind, I used WordPress’ default cron scheduling functions to setup intervals, my hooks, my crons on my plugin initialization/deactivation.
Nevermind. I found the solution. I used this: texty()->gateways()->send( $to, $message ); function for sending sms from my custom plugin and my function to send sms is:
function myfunction_to_send_sms( $to, $message) { $status = texty()->gateways()->send( $to, $message ); $response = [ 'success' => is_wp_error( $status ) ? false : true, 'message' => is_wp_error( $status ) ? $status->get_error_message() : '', ]; return rest_ensure_response( $response ); }
I have custom plugin which we add members to a waiting list. And when their turn is came, we want to send sms messages to members. So we want to use your plugin’s function to send the sms via a php function.
Forum: Installing WordPress
In reply to: Possible to downgrade from 2.6 to 2.3?there is a plugin to remove that notification. search on the wordpress plugin directory