I have a site that is wordpress but uses ajax for content on pages etc. I have “All-in-one-seo” installed and loaded all correct information for each page in the plugin. However, the pages arent getting properly crawled and the meta date for each page isnt being seen. I only see the homepages meta data and title no matter what page im on. Here is sample:
Hoempage: https://www.smilestudiola.com
About Us page: https://www.smilestudiola.com/#1/about-us/encino-dentist-marilyn-calvo
Porcelain Venners Page: https://www.smilestudiola.com/#!/portfolio-view/dental-veneers
notice how the meta title doesnt change> Its affecting google ranking.
can your plugin help me overcome this issue and get all meta information for all pages seen properly by google and thus ranked. I cant do backlinkg yet till i get this fixed?
]]>Dear Brainstorm media,
we are trying to use your AJAX Post Meta plugin with woocommerce but we cannot get it to work.
If i am correct i should add the post type product to the post_types in the functions.php and the columns which need the direct edit function.
But it does not work is there something i am doing wrong?
I hope you can help me out.
this is the code i have in functions.php
// Ajax quick edit
function my_ajax_meta_post_types( $post_types ) {
// Add list of post types to any previously enabled.
// To complete override, just return an array
return wp_parse_args( array(
'product',
), $post_types );
}
add_filter('ajax_meta_post_types', 'my_ajax_meta_post_types');
function my_ajax_meta_keys($keys) {
// Array of meta keys to enable editing for
return wp_parse_args( array(
// General syntax
// 'meta_key' => __('Column Title'),
'code' => __('Code'),
'Leverancier' => __('leverancier'),
), $keys );
}
add_filter('ajax_meta_keys', 'my_ajax_meta_keys');
Yours Truly,
Patrick
]]>‘wpseo-title’ => __(‘Title Override’),
‘wpseo-metadesc’ => __(‘Meta Description’),
‘wpseo-focuskw’ => __(‘Focus Keyword’),
I tried the above meta keys for Yoast WordPress SEO to add to the wp_parse_args array but they don’t seem to work. Does this plugin work with Yoast SEO. If yes, what are the correct meta keys? Thanks!
]]>