drlovable
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] qTranslate X is not compatible with WordPress 5.5I updated to Q-Translate XT Version 3.9 from the github repo
https://github.com/qtranslate/qtranslate-xt/releases/tag/3.9.0The Media Library still does not work. The page loads, but no media items appear. If I disable the Q-Translate XT plugin the Media library does work.
jQuery Migrate Helper — Warnings encountered
This page generated the following warnings:jQuery is not compatible with Quirks Mode
HELP!
- This reply was modified 4 years, 2 months ago by drlovable.
Forum: Plugins
In reply to: [qTranslate X] qTranslate X is not compatible with WordPress 5.5After installing the plugin “Enable jQuery Migrate Helper”, it throws the following error when trying to open the Media Library:
jQuery Migrate Helper — Warnings encountered
This page generated the following warnings:https://dev-youthhubsca.pantheonsite.io/wp-content/plugins/qtranslate-xt/modules/acf/assets/acf_5/qtranslatex.js: jQuery.fn.load() is deprecated
Using Q-translate XT Version 3.6.0.
Any ideas on this?
Thank you!
Same issue here. Error at the bottom of the contact form edit screen.
Warning: Parameter 1 to wpcf7_tg_pane_honeypot() expected to be a reference, value given in /wp-includes/plugin.php on line 470
Forum: Plugins
In reply to: [Meta Box] Warning: call_user_func(Array)Same here! I’ve used this plugin exactly the same way for years, and suddenly all errors.
Forum: Plugins
In reply to: [Genesis Connect for BuddyPress] What does this plugin do specifically?We’re using Buddypress 1.8. with a custom theme. Do I need this plugin?
What do you mean by “when you use the theme compatibility?” My primary sidebar always shows up even when I specifically tell my pages to use a template file that uses
__genesis_return_full_width_content
. How can I prevent that from happening?Also, how can I override template files for, say, the groups-loop.php file? If I put the file in themes/custom/activity/ folder or themes/custom/buddypress/ the groups-loop is still not over-ridden. Any ideas what I’m doing wrong? I don’t know whether we should be using this plugin or not.
Forum: Plugins
In reply to: [The Events Calendar] pluggable.php errorNot sure this is the same thing, but definitely an issue between Events Calendar and Genesis framework.
When I go to mysite/events.
Warning: in_array() [function.in-array]: Wrong datatype for second argument in /websites/cmha/wp-content/themes/genesis/lib/functions/general.php on line 275
The calendar displays, but this error displays 5 times at the head of the page.
Then in div id=”tribe-events-header”
Warning: in_array() [function.in-array]: Wrong datatype for second argument in /websites/cmha/wp-content/themes/genesis/lib/functions/general.php on line 275
data-title=” ” data-view=”month” data-date=”2013-07″ data-baseurl=”https://cmha-dev.rtraction.com/events/month/”>I have no other plugins enabled.
Events calendar Version 3.0.2
Genesis Version 2.0Forum: Plugins
In reply to: [FAQ Manager] FAQ showing up twiceNot sure how this is marked as resolved. Just updated to WordPress 3.5.1 from 3.4.2. We’re using WPML 2.6.0. As soon as I updated wordpress core, my FAQ’s started appearing twice, in both languages.
I’ve got Version 1.326 of the FAQ plugin, but updating to 1.331 doesn’t help.
Commenting out wp_reset_query(); does resolve the issue.For whatever reason, the functions tribe_get_listview_link() and tribe_get_gridview_link() are not always returning the correct path. Sometimes it’s un-translated, sometimes it just returns to the current page.
We ended up hardcoding the over-ridden view files to return what we needed in the french language.
$upcoming = “upcoming”;
if(get_bloginfo(‘language’)==”fr-CA”) {
$upcoming = “a-venir”;
}
href='<?php echo get_site_url() . ‘/events/’.$upcoming;