dmykos
Forum Replies Created
-
Thank you for the quick reply. Do you have some time estimations for Recipe schema in the plugin?
Forum: Plugins
In reply to: [W3 Total Cache] Fragment Caching don’t work: “Unable to execute code: “Thank you for response.
Now I’m using this code:<!--mfunc <?php echo W3TC_DYNAMIC_SECURITY; ?> --> echo 'The time is '.date( 'H:i:s', time() ); <!--/mfunc <?php echo W3TC_DYNAMIC_SECURITY; ?> -->And it outputs this on first page load
The time is 17:29:25
And this on all next page loads:
echo ‘The time is ‘.date( ‘H:i:s’, time() );
So, it works only on first page load.
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache v1.5.0 Not Adding Source Footer CommentsThank you for the answer.
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache v1.5.0 Not Adding Source Footer CommentsHello! After updating to 1.5.3, I see “Footer Comments” only when I’m logged out. On other site (also with v-1.5.3) I don’t see them at all.
So, how can I be sure, that cash works, without this comments?
Maybe it will be useful for somebody.
You can enable shortcode in SEO title like this:function my_wpseo_title( $title ){ return do_shortcode($title); } add_filter( 'wpseo_title', 'my_wpseo_title' );Just put this code into your function.php file. It also work for ”og:title”
Hello! I also have same problem.
I was able to fix this for title with this code in my header.php file:
<title><?php $title = wp_title('»', false); echo do_shortcode($title); ?></title>But it still do not work for
<meta property=”og:title” content=”bla bla [my_shortcode] bla bla” />Is there any way to fix this?
- This reply was modified 9 years, 5 months ago by dmykos.