Digital experiences for all disciplines
Forum Replies Created
-
-
September 15, 2016 at 10:23 pm in reply to: Weird URLs on Category Page and Excerpt Removal? #291983This reply has been marked as private.September 14, 2016 at 7:39 am in reply to: Icons with links, in Copyright section, keep losing linking #291754This reply has been marked as private.September 14, 2016 at 2:46 am in reply to: Dates showing in Google SERP, for Posts but not Pages #291725
Cheers Ed.
September 10, 2016 at 12:16 am in reply to: Dates showing in Google SERP, for Posts but not Pages #291321Hi SwiftIdeas, is the theme somehow displaying the ‘date updated’, as we’ve added above code to return false on those parameters, but it’s still showing?
<header class="article-heading hidden-hatom"> <div class="container"> <div class="entry-title" itemprop="name">BLOG TITLE HERE</div> <span class="date updated">May 11, 2016</span> <span class="vcard author"> <span class="fn">NAME HERE</span> </span> </div> </header>
August 31, 2016 at 1:16 pm in reply to: How to remove HTTP calls we're (don't think) not using #290077Thanks David. This combined with Cloudflare, other optimisations etc is really helping!
Trying to further optimise once and for all.
1) We’ve removed query strings from static resources with the code below
/*** Remove Query String from Static Resources ***/ function remove_cssjs_ver( $src ) { if( strpos( $src, '?ver=' ) ) $src = remove_query_arg( 'ver', $src ); return $src; } add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 ); add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
But this isn’t removing it from:
https://hoteliyo.com/wp-content/themes/uplift/css/font/fontawesome-webfont.woff2?v=4.6.3
https://hoteliyo.com/wp-content/themes/uplift/css/font/nucleo-general.ttf?ferlac
https://hoteliyo.com/wp-content/themes/uplift/css/font/nucleo-interface.ttf?nucelov10How can we remove that from these theme files?
Thanks Ed. Where can we access the images to try?
August 31, 2016 at 11:32 am in reply to: Icons with links, in Copyright section, keep losing linking #290047Thks David, will try and see if that works
August 30, 2016 at 1:07 pm in reply to: Dates showing in Google SERP, for Posts but not Pages #289866Thanks David. After much review, it seems the code was coming from Yoast SEO Plugin, not the theme.
For anyone with this problem, follow this: https://wordpress.org/support/topic/remove-yoast-date-meta-articlepublished_time
Add the below to child theme functions.php
add_filter( 'wpseo_og_article_published_time', '__return_false' ); add_filter( 'wpseo_og_article_modified_time', '__return_false' ); add_filter( 'wpseo_og_og_updated_time', '__return_false' );
Then view page source code and these 3 elements will be gone.
August 30, 2016 at 11:54 am in reply to: Can't Find Old Google Analytics Code to Change Anymore #289836Problem resolved and solution for anyone with similar. Seemed to be a problem with the Cloudflare Google Analytics App. It output both the old and new tracking codes, stuffing up pageviews and bounce rate stats. Have now inserted into Options > General > Tracking Code, and works fine, only outputting one code. Thanks SwiftIdeas for troubleshooting help.
August 30, 2016 at 11:28 am in reply to: Can't Find Old Google Analytics Code to Change Anymore #289818This reply has been marked as private.August 30, 2016 at 9:23 am in reply to: How to remove HTTP calls we're (don't think) not using #289773Thanks Mohammad. But we have that ON already, and they’re still showing
August 30, 2016 at 1:51 am in reply to: Icons with links, in Copyright section, keep losing linking #289734This reply has been marked as private.August 30, 2016 at 12:27 am in reply to: Different menu font weights on chrome vs firefox etc? #289729Great reading Tiago and Mohammad, thanks muchly
August 29, 2016 at 1:30 pm in reply to: Different menu font weights on chrome vs firefox etc? #289668Thanks Mohammad, but that makes it different between Chrome and Firefox still
Trying for weight to be same on both browsers and it’s not doing this automatically
Resolved, thanks.
-