jurv266
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache] Makes my submenu's not work.Well after some extensive testing I found out when I enable WP fastest cache the submenu’s stop working after a while. On other websites where I work with same theme the submenu’s do keep on working? I’m confused as to what the reason of this could be.
Forum: Plugins
In reply to: [WP Fastest Cache] Makes my submenu's not work.Sure I would be happy to vote. But the problem is still there also when I use one of these options
Combine Css
Reduce HTTP requests through combined css files
Combine Js
Reduce HTTP requests through combined js filesBrowser Caching (Reduce page load times for repeat visitors)
Forum: Plugins
In reply to: [WP Fastest Cache] Makes my submenu's not work.My mistake it seems to happen with the options
Combine Css
Reduce HTTP requests through combined css files
Combine Js
Reduce HTTP requests through combined js filesTy that solved it! ??
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Broken with use of cache plugin after updateDid that but that didn’t work. I reversed back to 1.5.3 and now it works again.
Forum: Plugins
In reply to: [Weekly Schedule] Hourly Cell Time Division does not workOkay thats clear now thanks!
To add to this I also have Revolution Slider running but that didn’t give me a problem with this plugin.
In the mean time would be there be a solution to this other then cross domain tracking solutions? Like can I code the tag code to exclude itself on a certain page?
That is correct. Unfortunately I don’t have access myself to the tag manager thats a 3rd party.
If this could be added that would be fantastic.
The 3rd party domain also has the tag manager (same code) but I have no access to that part. I would like to exclude the tag manager from my side on certain pages that include that certain iFrame with the 3rd party domain.
I hope this clarifies it a bit. ??
Forum: Fixing WordPress
In reply to: read more instead of excerpt doesn't work correctlyThanks that works like a charm!
Forum: Fixing WordPress
In reply to: read more instead of excerpt doesn't work correctlyAmazing that works! The only thing it does but its not a huge deal is show Read the full article… at the very end of the meta tag when I look at the source code in Firefox but I can live with that. Thank you so much!
Forum: Fixing WordPress
In reply to: read more instead of excerpt doesn't work correctlyI’m using a custom made theme not made by me so I’m rolling in the deep here with no knowledge of how exactly everything is build.
Well after digging deeper and deeper I found out that the header.php from the custom template is the problem the texts come from the code <?php echo get_the_excerpt(); ?>
<meta itemprop="name" content="<?php the_title(); ?>"> <meta itemprop="description" content="<?php echo get_the_excerpt(); ?>"> <meta property="og:title" content="<?php the_title(); ?>"/> <meta property="og:type" content="article"/> <meta property="og:url" content="<?php echo esc_url( get_permalink() ) ?>"/> <meta property="og:description" content="<?php echo get_the_excerpt(); ?>"/>
Now I need to figure out what to change exactly to keep the meta data but also use that excerpt button. If anyone has an answer please do let me know if I figure it out myself I’ll share it here.