mykhaylopetrov
Forum Replies Created
-
@arnaudbroes,
Thank you very much.Thank you ??
No problem, thank you ??
Yes, you are right. If you check this encoded JSON micro-markup in the https://search.google.com/test/rich-results service, it passes validation successfully, and Cyrillic characters are displayed correctly. The fact is that some SEO specialists claim that site pages with Cyrillic characters in micro-markup encoded in JSON via “Unicode Escape Equence” are indexed worse by the Google search engine. As confirmation, there is a corresponding comment at this address https://github.com/Yoast/wordpress-seo/issues/17862.
Solved! The problem was that it was not known how these meta tags would be set (possibly by some third-party code). Decided as follows: for the blog page set them manually, opening in the editor.
Thanks again for your help.
Hi there. I’ve published all the code for you, which I use to change the description tag. If your code works for you, I will look for a problem in the code of active plug-ins and themes.
I wonder why there are no changes even if the code is like this:
function lc_aioseo_filter_description( $description ) { return 'Page ' . get_query_var( 'paged' ) . ' | ' . $description; } add_filter( 'aioseo_description', 'lc_aioseo_filter_description' );
Please tell me a few points:
1. Could this error occur in the old version of your plugin that I use?
2. Can the filter be affected by any option in the graphical interface (on the plugin settings pages or individual site pages)?Thank you very much for your help.
- This reply was modified 2 years, 7 months ago by mykhaylopetrov.
Here is one of the pages of the site:
https://lanet.click/blog/page/2/
The title meta tag changes normally. I use a similar code for it, only the aioseo_title filter.
I use All in One SEO Pro 4.0.2
Thanks.
YES. Before the description itself, I display the word “Page” with the page number of the pagination.
Hello. I’m trying this code:
function lc_aioseo_filter_description( $description ) { if ( is_front_page() && is_home() ) { // Default homepage } elseif ( is_front_page() ) { // static homepage } elseif ( is_home() ) { // blog page if ( is_paged() ) { return 'Page ' . get_query_var( 'paged' ) . ' | ' . $description; } return $description; } else { //everything else } } add_filter( 'aioseo_description', 'lc_aioseo_filter_description' );
Although similar code works without problems in the case of the aioseo_title filter.
Thanks.
Forum: Themes and Templates
In reply to: [Blocksy] Gravatar icon is not displayed in the author’s blockThank you for your help. Have a good day.
Forum: Themes and Templates
In reply to: [Blocksy] Social profile icons are not displayedandrew828, unfortunately, the problem was not solved by your method. I had to add these fields for users through the code in functions.php.
Forum: Themes and Templates
In reply to: [Blocksy] Social profile icons are not displayedandrew828, thank you for your advice. I installed the Blocksy theme right after installing a copy of the WordPress. Therefore, the database is clean. Didn’t add any content, didn’t install plugins or other themes.
Forum: Themes and Templates
In reply to: [Blocksy] Social profile icons are not displayedEverything works fine if use the update_user_meta() function.
- This reply was modified 3 years, 5 months ago by mykhaylopetrov.
Forum: Themes and Templates
In reply to: [Blocksy] Social profile icons are not displayedThank you for your hint. But unfortunately, on the user profile page, I don’t have social profile fields (only the standard fields of WordPress itself). Installed a fresh version of WordPress, no plugins. For testing, I installed the theme on the local XAMPP server. The problem repeats itself. I also tested the Child Theme.
- This reply was modified 3 years, 5 months ago by mykhaylopetrov.
- This reply was modified 3 years, 5 months ago by mykhaylopetrov.
- This reply was modified 3 years, 5 months ago by mykhaylopetrov.
Forum: Themes and Templates
In reply to: [Blocksy] Social profile icons are not displayedThere are no errors in the server logs. In the Author box on the post page and in the author’s archive, only the site URL icon is displayed.
Tried specifying the following values:
1) fb_username
2) https://www.facebook.com/fb_usernameand also a valid email.