david81wp
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] WP Super cache keeps refreshing homepageI switched to W3Totalcache, it’s way better, depends on your site structure.
Forum: Plugins
In reply to: [Yoast SEO] Page Numbers in titles and meta descriptionNo, I didn’t try default theme with only yoast active, but finally I found the fix in this guide: https://edward-designer.com/web/multipage-wordpress-seo/
Thank you everyone for taking the time! ??
Forum: Plugins
In reply to: [Yoast SEO] Page Numbers in titles and meta descriptionNot working on pages, including home page, even tried to add the tag %%page%% directly on custom meta title, it’s just not working. I mean WTF?
Forum: Plugins
In reply to: [Yoast SEO] Page Numbers in titles and meta description@mshakeel can you help me with that please?
Forum: Plugins
In reply to: [Yoast SEO] Page Numbers in titles and meta descriptionHello I have exactly the same issue, I’m using yoast, I need to add it on every paginated pages, including homepage and taxonomy.
I’m using custom meta tags, I tried to add the tag %%page%% directly to custom meta tags, but it’s not working.@mshakeel, can you help me with that?
I found the fix for meta description, but not for titles..
Here is the fix for meta description (function.php):
————————————————————————————–
if ( ! function_exists( ‘t5_add_page_number’ ) )
{
function t5_add_page_number( $s )
{
global $page;
$paged = get_query_var( ‘paged’ ) ? get_query_var( ‘paged’ ) : 1;
! empty ( $page ) && 1 < $page && $paged = $page;$paged > 1 && $s .= ‘ – ‘ . sprintf( __( ‘Page %s’ ), $paged );
return $s;
}add_filter( ‘wpseo_metadesc’, ‘t5_add_page_number’, 100, 1 );
}————————————————————————————–
My theme is using: add_theme_support( ‘title-tag’ );
Please help.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Images Missing From Media Library – plus CrunchingI have the same issue, I did optimize bulk conversion png to jpg, I see the files in my server, both jpg and png, there are not any new rule added on .htaccess file.
Any suggestion?
Thank you all for your help.
Forum: Plugins
In reply to: [WP Super Cache] WP Super cache keeps refreshing homepageI have the same issue, this happened since I was trying to install redis object cache plugin. I already uninstalled the plugin but still the same issue. I’ve try to cleaning the plugin data with options optimizer plugin but I can’t find the files names data. Please help.