Neo1337
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] yoast_breadcrumb problemI installed a fresh version of WordPress and Yoast and tried to recreate the current bug. Also, I use the WordPress default category, Twenty Twenty-Three theme, and only the Yoast plugin installed.
Code used to create a post:$post_id = wp_insert_post( array( 'post_type' => 'post', 'post_title' => 'random title', 'post_content' => '', 'post_status' => 'publish' )); if ($post_id != 0) { wp_set_object_terms($post_id, 'catname', 'category'); }
yoast_breadcrumb output:
Home ? Uncategorized ? random title
As you see, breadcrumb show Uncategorized, inside of catname taxonomy that is set.
In wp-admin on edit post page, catname value is correct set:
If I press the update button in wp-admin and go back to the post page, the correct breadcrumb is showing.
Home ? catname ? random title
Yoast Test Helper plugin is not helping here, as the bug is on a new fresh website, and you should send this to the developer team to lookup.
Hi, stepasyuk
I tested with another related plugin, but still get a 404 error on the AJAX request.
I think something is related to the filter-everything.js file.PS: Second plugin tested was “Permalink Manager Pro”.
Also, seem can easily break Form Responses from wp-admin if a user submits a form with 100k characters more.
After I tested and submit 100k characters form, I can no more access “wp-admin/edit.php?post_type=feedback”, the window is frozen and crash after some time.
Hi,
Thanks for the quick response, after some more checks I see some misleading configuration with the “fe_widget” shortcode, I fixed it and all seem to work correctly. ??
The same problem with Litespeed Object Cache enable.
After disabling it, all seem to work fine. ??
Forum: Plugins
In reply to: [Color Palette Generator] Color percentage?Like as: https://i.imgur.com/PRfdCWH.png
Also, you can look at this PHP library, as I tested, this is the best library to detect colors from an image.
Forum: Plugins
In reply to: [Related YouTube Videos] Add keywords in titleSeem to work much better with the exact filter off.
Also, it any way to make video responsible? or to use like as?
'width' => '100%',
'height' => '100%',
Regards,
AlexForum: Plugins
In reply to: [Related YouTube Videos] Add keywords in titleHi Chris,
I use in theme, so I try like:
'relation' => 'keywords',
'terms' => 'keyword1',
'filter' => '+postTitle keyword2 keyword3',
'max' => '1',
'width' => '250',
'height' => '150',
'lang' => 'en',
'class' => 'left horizontal bg-black center',
'preview' => false,
'exact' => true,
'viewRelated' => false
But seem to not works, I get one video for all articles (different title for each article).
I get better result with:
'relation' => 'postTitle',
'filter' => 'keyword1 keyword2 keyword3',
And If I can do something like as:
'relation' => 'postTitle keyword1',
'filter' => 'keyword2 keyword3',
I can get much better results. I don’t thing postTitle work in a filter.
Regards,
AlexForum: Plugins
In reply to: [Download Monitor] Custom Fields in templates?Hi Barry,
I try with
<?php echo get_post_meta($dlm_download->ID, 'author-link', true); ?>
but don’t works.Seem to work with follow code:
<?php global $wp_query; $postid = $wp_query->post->ID; echo get_post_meta($postid, 'compatible', true); wp_reset_query();?>
But only in WordPress posts. In download monitor posts didn’t work…
I like to use custom fields for each file posts, not in WordPress posts.
Thanks,
AlexForum: Plugins
In reply to: [WP Content Copy Protection] Error messageWarning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, ‘regis_options’ was given in /home/resource/public_html/wp-includes/plugin.php on line 406
Fix this error, I now use old version of your plugin!