oliverhtml
Forum Replies Created
-
Forum: Plugins
In reply to: [Schema - All In One Schema Rich Snippets] Unclosed SpanMe again, there’s now an issue with a closing div.
The aio-info is closed early so area and description sit below the image which doesn’t look great. This also leads to an extra closing div when closing on line 1102
I commented out //$service .= ‘</div>’;
on line 1069 of functions.php and that solved that so it looks better :Forum: Plugins
In reply to: [The Events Calendar] Can’t add featured image in articlesSame issue here on a new install on localhost
plugins: betheme header builder 1.0.5
The events calendar : 5.0.2
Woocommerce 3.9.2
WPbakery page builder 6.1
Classic editor 1.5latest wordpress, the theme installed is betheme
I’ve stripped it back to just the events calendar and the classic editor plugin and it still occurs. It seems like the plugin isn’t communicating with the page when the classic editor is enabled. There’s no error in the console but it just doesn’t set the image preview or the input field.
@zamartz No problem, glad it helped someone!
Greetings,
I’ve just run into this also, the contact form 7 wpcf7_special_mail_tag
function takes 3 arguments but the plugin only provides two. I edited contact-form-7-mailchimp-extension/lib/functions.php line 139 to pass in an empty string for the ‘html’ field and it’s now working for meif ( $special = apply_filters( ‘wpcf7_special_mail_tags’, ”, $matches[1], “” ) )
return $special;Forum: Plugins
In reply to: [LiteSpeed Cache] Problem with JQuery remote loadingHi there,
I had the same issue,
in the latest wordpress core in wp-includes/script-loader.php on line 1015
There are the following two lines that correspond to the incorrect jquery version$scripts->add( ‘jquery’, false, array( ‘jquery-core’, ‘jquery-migrate’ ), ‘1.12.4-wp’ );
$scripts->add( ‘jquery-core’, ‘/wp-includes/js/jquery/jquery.js’, array(), ‘1.12.4-wp’ );the 4th argument is the version number
in the plugin it looks like you’re pulling the version number from wordpress core in litespeed-cache-cdn.class.php line 590
Kind Regards,
oliverForum: Plugins
In reply to: [Lead info with country for Contact Form 7] Issue with session_startHi again!
I just used empty because it checks whether the variable exists and is the equivalent of : !isset($var) || $var == falsehttps://www.php.net/manual/en/function.empty.php
I will update to your method and give it a go
Thanks,
OliverForum: Plugins
In reply to: [Lead info with country for Contact Form 7] Issue with session_startHi,
this seems to do it for compatability with this plugin: https://wordpress.org/plugins/redis-cache/it’s probably not the best solution overall as it’s specific to that plugin but it does get it running on krystal hosting’s onyx package.
if (!session_id()) {
if(empty(WP_REDIS_HOST) && empty(WP_REDIS_PORT) && empty(WP_REDIS_PASSWORD)){
session_start();
}
}Thanks,
OliverForum: Plugins
In reply to: [Lead info with country for Contact Form 7] Issue with session_startHi there,
it turns out that this is the cause of the intermittent 502 errors we’ve been seeing also. Could you check for one of the redis constants: WP_REDIS_PORT, WP_REDIS_HOST, WP_REDIS_PASSWORD prior to a session_start call or provide a filter that returns whether or not to start a session. I’m conscious that we still want to use the plugin but don’t want to take it off of the update path!Kind Regards,
OliverForum: Plugins
In reply to: [Trust Payments Gateway for WooCommerce] Invalid Plugin HeaderHi Josh
I sent some login details via your website
Kind Regards,
OliverForum: Plugins
In reply to: [Trust Payments Gateway for WooCommerce] Invalid Plugin HeaderHi,
sooo I updated php and managed to get it installed and not breaking however, none of the settings are saving.I’ve tried the disabling plugins approach, updated woocommece and enabled debugging. The plugin isn’t causing any errors but it’s not saving.
Any help would be much appreciated.
Forum: Plugins
In reply to: [Trust Payments Gateway for WooCommerce] Invalid Plugin HeaderSure that’s 5.0.3
and woocommerce 3.5.3Thank you