Seodev
Forum Replies Created
-
@avi1020p a third reply 🙂 Just run the schema markup through AI and it will find several problems. Fix them and it might validate.
@avi1020p https://surerank.com/ only shows FAQ markup, lots of stuff is missing
@avi1020p try https://lummun.com/. It’s not larger then 2MB, plus the code is in the header not the footer.
Also what does this mean? “design team has optimized the site”? Seems like a encoding problem this.
Check your own site: https://surerank.com/
Same result
<script type="application/ld+json" id="surerank-schema">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www...At the Google validator I see this code, when showing the html it retrieves. So it’s there.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] get_field() doesnt workSolved it. Preview a private page might have been the problem. Also deleted and added the field.
Alright thanks.
No, I do the index rebuild myself from the dashboard, “rebuild index” button.
Yes I now have keywords in the dashboard. Do you want login so you can try?
Actions are added, and completed. Nothing happens with the index.
“Batch” action is working… Dont remember the exact action name.
Alright.
I add keywords and update. Nothing happens even as linkindex has been updated (upper bar icon).
Thank you for fast reply!
And well, that did it. Actually, Post type was already there. But I decided to remove it and, update, and then add it again, update. And then it worked.
I think if “Keep configured keywords and plugin settings after plugin deactivation” had worked for me, that would have solved the problem. But it didnt. So that is one thing you could check. If keywords has been added, but no index is present. Will the plugin clean up after deactivation?
And also, I’m not sure the plugin updates correctly after clicking on “update” for a post. Doesn’t look like it. Rebuild index button does work, so I will leave as is.
- This reply was modified 3 years, 2 months ago by Seodev.
[18-Jul-2019 07:00:42 UTC] WordPress database error Column ‘post_modified’ cannot be null for query INSERT INTO
fg_posts(post_title,post_type,post_status,post_date,post_date_gmt,post_modified,post_modified_gmt,comment_status,ping_status) VALUES (‘sdf’, ‘pretty-link’, ‘publish’, ‘2016-12-20 08:12:09’, ‘2016-12-20 14:12:09’, NULL, ‘2019-07-18 07:00:42’, ‘closed’, ‘closed’) made by require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, PrliAppController->install, PrliDb->prli_install, PrliUtils->migrate_after_db_upgrade, PrliLink->create_cpt_for_linkSame problem here! 3gb logs. Cleared it, 5min later 22mb error log.
Forum: Fixing WordPress
In reply to: wp_update_post inserts empty title and contentSolved…. UTF8 problem! Had to utf8_encode it.
Seems like a WordPress bug to me. Inserting any other then utf8 should not insert and empty value.
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] Not showing postsSolved it. You need to make a menu for this to work, to activate the menu system in functions.php:
// Add Your Menu Locations
function register_my_menus() {
register_nav_menus(
array(
‘header_navigation’ => __( ‘Header Navigation’ ),
‘expanded_footer’ => __( ‘Expanded Footer’ )
)
);
}
add_action( ‘init’, ‘register_my_menus’ );