dagnarus
Forum Replies Created
-
Forum: Plugins
In reply to: [Chat Bro Live Group Chat] Header layout doublelined bugFound a workaround (works only for short titles):
.chatbro_chat_name {max-width: -webkit-max-content; max-width: -moz-max-content; max-width: max-content;}- This reply was modified 8 years, 10 months ago by dagnarus.
Forum: Reviews
In reply to: [Name Directory] Something wrong with $wpdbI solved it somehow by adding
require_wp_db();toname_directory_show_submit_form($directory, $overview_url)
Now works like a charm! 🙂- This reply was modified 8 years, 11 months ago by dagnarus.
Forum: Reviews
In reply to: [Name Directory] Something wrong with $wpdbI found out, that problem was lying on
$wpdbby looking into where the message “Something must have gone terribly wrong. Would you please try it again?” was coming up. So, it is coming up if in shortcode.php$db_successis empty, what means, that$wpdb->insertisn’t working.
I searched for$wpdbassignment through all my site, and found and intercrossing with Query Monitor. After I enabled that plugin, Name Directory has started to work.
I suppose, solution was in$wpdb = new QM_DB( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );line of Query Monitor.
But the truth is I have no exact idea why your plugin isn’t working without Query Monitor and I hope, you will find a solution! 🙂All Best,
Dagnarus- This reply was modified 8 years, 11 months ago by dagnarus.