ericzqma
Forum Replies Created
-
Forum: Plugins
In reply to: [BlogText] How to input %%Noted with thanks!
Forum: Plugins
In reply to: [BlogText] How to input %%Thanks for the reply and analysis. I guess we may live with HTML code first.
Please check this blog entry: https://www.systutorials.com/3165/outlook-style-email-reply-header-thunderbird/
The plugin’s grammar uses %% to indicate variables.
Forum: Plugins
In reply to: [BlogText] How to input %%My current solution is to use the HTML code (no spaces)
& # 3 7 ; & # 3 7 ;
Is there more easier method?
Forum: Plugins
In reply to: [Google CSE] Returns results, but the links are brokenA little trick that makes the plugin work with twentyfourteen/WP3.8. See a live example here: https://www.fclose.com/?s=wordpress
diff --git a/wp-content/themes/twentyfourteen/content.php b/wp-content/themes/twentyfourteen/content.php index a793fed..28931ef 100644 --- a/wp-content/themes/twentyfourteen/content.php +++ b/wp-content/themes/twentyfourteen/content.php @@ -24,7 +24,11 @@ if ( is_single() ) : the_title( '<h1 class="entry-title">', '</h1>' ); else : - the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); + // zma hacking: make it work with the google-cse plugin + // the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); + ?> + <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> + <?php endif; ?>
But it will be great if this is fixed in Google-CSE.
Forum: Plugins
In reply to: [WP RSS Multi Importer] nofollow in shortcode parametersThat’s great! Thanks for the quick response.
I just updated the plugin and tested it on one site. I confirm it works very well. Cheers!
Forum: Plugins
In reply to: [BlogText] Does not work with [gallery]It turns out that it conflicts with the WordPress SEO by Yoast plugin. After disabling it, it works find now.