residevil
Forum Replies Created
-
Yes that worked. Had not seen the new update. Thx
So standard custom fields dont work with standard revisions?
Hi stevejburge,
what about standard custom fields – should they work with standard version of revisions?
Are standard custom fields also supported in Pro or must ACF be used?
- This reply was modified 3 years, 11 months ago by residevil.
Sorry correction: I have this problem only on mobile devices.
This theme looks great on Desktops, but on mobiles it’s terrible although it states to be responsive.
What can be my mistake?
I also cant find the function, but have the same problem.
Any ideas how to solve?
Forum: Plugins
In reply to: [Yoast SEO] Meta Term Description too long – not truncatedWould be great if this finds his way to next official Update ??
Now I just hack the plugin itself with wp_trim_words:
use file: wpseo-functions.php and find the code
if ( !empty( $r->taxonomy ) ) { $replacements = array_merge( $replacements, array( '%%category_description%%' => trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ), '%%tag_description%%' => trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ), '%%term_description%%' => trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ), '%%term_title%%' => $r->name, ) ); }
and change to
'%%term_description%%' => wp_trim_words( trim( strip_tags( get_term_field( 'description', $r->term_id, $r->taxonomy ) ) ) , $num_words = 20 , $more = '' )
Every plugin update this must be done again.