maraki
Forum Replies Created
-
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Max Image Previewoh I missed that, thanks! works great
ok great ?? thank you, I will use this from now on.
ok this seems to work but I am always getting these characters (
<p>
) at the beginning of the description<meta name=”description” content=”<p>Lorem Ipsum text blah blah” />
- This reply was modified 3 years, 4 months ago by maraki.
I think I have figured it out:
function my_seo_framework_description($description, $args) { if (empty($description)) { $description = get_field( 'fl_description', $args['id'], false ) ?: ''; $description = strip_shortcodes ( $description); $description = wp_trim_words($description,25); } return $description; } add_filter('the_seo_framework_custom_field_description', 'my_seo_framework_description', 10, 2); add_filter('the_seo_framework_generated_description', 'my_seo_framework_description', 10, 2); add_filter('the_seo_framework_fetched_description_excerpt', 'my_seo_framework_description', 10, 2);
Please let me know if you see any issues with this code..
Forum: Plugins
In reply to: [Exit Notifier] rel=”nofollow undefined”Hi, thank you for looking into this.
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Page with Listings – What schemaWe will try and get this as soon as possible but in the meantime it would be great if you could check that your plugin is indeed compatible with Gridbuilder – https://wpgridbuilder.com/
Forum: Plugins
In reply to: [Schema & Structured Data for WP & AMP] Page with Listings – What schemaWe have tried to use a custom class for the itemList but the schema generated appears to be broken.
We are using the Gridbuilder plugin.
Forum: Plugins
In reply to: [Geolocation IP Detection] Load Plugin only on Specific Pagesok so it will not add additional load to the website at all, only when it explicitly runs on specific pages?
thanks ??
It would be nice to have an extension, I didn’t come across a plugin which only does that…
Forum: Plugins
In reply to: [Search by Algolia – Instant & Relevant results] Edit Image Size in Loopok thanks that works!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] SEO for Pagesok this is very helpful as always thanks!
ok thanks works great now !
Ok this works but 2 things.
1. My meta description appears like:
<meta name="description" content="Chef Yoshinori Ishii is on a mission to spread his <em>Ike Jime revolution</em> across the world." />
Is google going to translate those special characters correctly or is that gibberish text ?
2. If I have a custom meta description in the SEO box of the post, this gets overwritten. I can live with that ??
many thanks again x Maria
- This reply was modified 8 years, 5 months ago by maraki.
I am getting this error in the source code:
Notice: the_seo_framework()->s_description() is not accessible. In /var/www/html/wp-content/themes/x-child/functions.php on line 431.<br>
I have 10 different post types and the field is the same: “fl_description”.
Could I use a universal code which is applicable to all posts, pages and custom post types?