semoliner
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Google Search] Widget disappearedThe whole widget disappears from the header, and apart from that, the header appears normal.
With regard to the HTML source, what should I be looking for, eg. I can see:
<script id=’google_cse_v2-js-extra’>var scriptParams = {“google_search_engine_id”:”[i’ve deleted the ID from this copy/paste]”};</script>But if that’s what you mean, it’s still there in the source, even when the widget isn’t visible.
Forum: Plugins
In reply to: [WP Google Search] Widget disappearedI believe I know what’s causing this – it’s a combination of whether a VPN is being used and which protocol.
If viewing the website from a PC that uses ExpressVPN, when connected to certain servers that use the OpenVPN TCP protocol, the widget does not appear.
Switching to a different protocol usually fixes it, but results vary depending on which VPN server is connected.
I’ve never encountered anything like this before! It’s almost akin to some sort of ‘geoblocking’ effect.
Forum: Plugins
In reply to: [WP Google Search] Widget disappearedFor a short time the widget was showing only with Chrome for Android, but now it isn’t working even in that browser.
@webshoplogic any ideas?
Forum: Plugins
In reply to: [WP Google Search] Widget disappeared…and today it’s disappeared again ??
Plugins that updated in the meantime were WP Forms, CleanTalk Anti-Spam and RankMath. But deactivating all of those didn’t help, so I don’t think the issue is related to a conflict with another plugin.
Forum: Plugins
In reply to: [WP Google Search] Widget disappearedAnd again – just like last time… the next morning it’s magically working again ??
Is this a perhaps fix that gets applied by the devs at the Webshoplogic end?
Forum: Plugins
In reply to: [WP Google Search] Widget disappearedForgot to mention – I also installed Rank Math today – but deactivating it made no different, nor did clearing Autoptimize cache.
Thanks – I can confirm that v9.9.1 has fixed the issue of the non-Jetpack Carousel being displaced to the right.
Forum: Plugins
In reply to: [DreamHost Automated Migration] Migrating from Deamhost to Dreamhost?Thanks, I’m not on DreamPress, just shared hosting. It’ll be a while before the new site is ready so I’ll contact Support for the various options then. Thanks again.
I also have the same issue so I have disabled Jetpack 9.9
Using Astra theme.
Would you anticipate a fix to be rolled out in 9.9.1?Forum: Plugins
In reply to: [Spam protection, Anti-Spam, FireWall by CleanTalk] Feature RequestThanks, I’ll redirect my enquiry to there – please feel free to delete this thread!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Query terms not highlighted since updatePerfect! Thanks so much Mikko.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Query terms not highlighted since updatefunctions.php doesn’t seem to accept that?
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Query terms not highlighted since updateSorry that paste got really messed up so you have got what I wanted you to see in functions.php, let’s try again for search.php…
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.www.ads-software.com/themes/basics/template-hierarchy/#search-result
*
* @package Astra
* @since 1.0.0
*/if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly.
}get_header(); ?>
<?php if ( astra_page_layout() == ‘left-sidebar’ ) : ?>
<?php get_sidebar(); ?>
<?php endif ?>
<div id=”primary” <?php astra_primary_class(); ?>>
<?php astra_primary_content_top(); ?>
<?php astra_archive_header(); ?>
<?php astra_content_loop(); ?>
<?php astra_pagination(); ?>
<?php astra_primary_content_bottom(); ?>
</div><!– #primary –>
<?php get_footer(); ?>
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Query terms not highlighted since updateI’m using the Astra theme, and this is the default search.psp – in a previous post here you commented that it was quite non-standard compared to other themes, so anyway, this is the default without any changes:
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.www.ads-software.com/themes/basics/template-hierarchy/#search-result
*
* @package Astra
* @since 1.0.0
*/if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly.
}get_header(); ?>
<?php if ( astra_page_layout() == ‘left-sidebar’ ) : ?>
<?php get_sidebar(); ?>
<?php endif ?>
<div id=”primary” <?php astra_primary_class(); ?>>
<?php astra_primary_content_top(); ?>
<?php astra_archive_header(); ?>
<?php astra_content_loop(); ?>
<?php astra_pagination(); ?>
<?php astra_primary_content_bottom(); ?>
</div><!– #primary –>
<?php get_footer(); ?>`
Now, additionally, here are the changes made to my functions.php by both you and by Astra support - so you may find some of this familiar - and if you need me to post the entire functions.php (standard Astra) just let me know: <code></code>/** * Added by Astra support so that page Titles are displayed on the Search Results page instead of just More >> */ function new_excerpt_more($more) { return ''; } function the_excerpt_more_link( $excerpt ){ $post = get_post(); $excerpt .= '<p class="read-more"><a href="'. get_permalink($post->ID) . '">'. get_the_title() . ' ?</a></p>'; return $excerpt; } function read_more_callback(){ if(is_search()){ add_filter( 'the_excerpt', 'the_excerpt_more_link', 21 ); add_filter('excerpt_more', 'new_excerpt_more', 21 ); } } add_action('wp' , 'read_more_callback'); /** * Added by Mikko Saari otherwise Relevanssi on-page highlighting messes up the quotes in the data parameters related to Elementor image animations */ add_filter( 'relevanssi_clean_excerpt', function( $content ) { if ( preg_match_all( '/data-settings="(.*?)"[ >]/', $content, $matches ) ) { $source = array(); $replace = array(); foreach ( $matches[1] as $match ) { $source[] = $match; $replace[] = str_replace( '"', '"', $match ); } $content = str_replace( $source, $replace, $content ); } return $content; } );
`
Indeed it does – thank you again for your assistance with this!