The box used to close at the bottom – now it is cut off – because you want to put the name at the bottom in a dot, but my code was from before all this came in and well……
You added rating, date, and huge quote marks – not what we want at all
The check box to turn off the quote marks and date does not work.
I installed the French version of WordPress yesterday. I noticed that all ” characters are replaced by ?. This is weird…For instance, if I want to add timing in my articles such as 10’21”, when I publish it, it reads 10’21?
Also, sometimes I want to use double quotes, such as for quoting, but it won’t let me do, they get replaced by the old French quote symbols, it is not even done properly, e.g. ? test ? instead of ? test ?.
Have you stumbled upon this?
Thank you,
Charles.
]]>[logoshowcase slides_column="1" arrows=”true” show_title=”true” autoplay_interval=”10000″]
Varying the auto-play interval argument doesn’t seem to make much difference.
Dave
]]>Thanks for you help,
Steve
uwpqsf_ajax
HTML escapes the keyword (esc_html($keyword)
). I am wondering why this is done since earlier it is run through the sanitize_text_field
WP function? The problem this causes arises when someone searches for a phrase enclosed by quote marks because those quotation marks get converted to "
. For example, say I search for "keyword phrase"
The actual search will be for two words:
"keyword
and
phrase"
which invariably ends up returning no results.
The WordPress native search already handles this well by recognizing such an entry as a phrase (and thus removing the quotation marks). Simply removing that esc_html
part of your code would solve this problem. Unless there was a specific reason you included it that I am not considering?
Now, for anyone that wants to change this, as I did, it can be done in your theme functions file using the following code:
add_action( 'pre_get_posts', 'allow_phrase_searches', 9999 );
function allow_phrase_searches( $query ) {
if ( !is_admin() && $query->is_main_query() && $query->is_search ) {
$query->set( 's', html_entity_decode($query->query_vars['s']) );
}
}
https://www.ads-software.com/plugins/ultimate-wp-query-search-filter/
]]>If you enter double quotation marks in an annotation all of the text that is written after the opening quotation mark will not display in the annotation. Is this something that might be corrected in the future?
https://www.ads-software.com/plugins/tinymce-annotate/
]]>Site is: https://mortgagebyjim.com/
The testimonials are housed in the “What our fans say” section further down the page.
Thanks!
Ryan
https://www.ads-software.com/plugins/testimonials-by-woothemes/
]]>Every time I do this it returns a blank line. If I amend a phrase in the list of querys it adds slashes to the start and end of the phrase but still doesn’t behave as expected.
Is there a solution to this?
https://www.ads-software.com/plugins/twitter-posts-to-blog/
]]><meta name=”description” content=”This is my “description””>
Which is invalid.
(Using All in One SEO Pack v2.0.2)
https://www.ads-software.com/extend/plugins/all-in-one-seo-pack/
]]>