pressvibes
Forum Replies Created
-
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Meta DataAny news?
And now, just to tell you, a new error: alt images.
According to your plugin my images have no alternative, and they have.Forum: Plugins
In reply to: [SEOPress - On-site SEO] Meta DataHello,
thanks for your reply.
But actually I checked via schema.org, and all markups are fine, there are no errors.
About the internal links, as you can see there is one post with an intenal link, and the plugins still claims 0:
Here the post with the link to that article:
Benefits of Remote Work – PressVibes
Both article piints at each other, and still no internal link.
Anyway before the update there were no issues, I think there is something in the update.
Maybe also others are experiencing something similar?Hello,
sorry it will be just some screenshots, as I said it’s staging website:
1) the list of pages:
https://i.gyazo.com/5d7f2d0d5e0f4b74b0bc840e16346264.png
2) the pages sitemap:
https://i.gyazo.com/72caae7e6f77e4a9ac7e2fdb0a87db8e.png
As you can see there is not the archive page
3) the posts sitemap:
https://i.gyazo.com/b04b3ef090d2d35847d5a52bdc0b0653.png
The PAGE Archive is listed in the posts list sitemap, any clue how to solve it?Forum: Plugins
In reply to: [SEOPress - On-site SEO] Export Seo Settings To YoastWell actually Yoast has the automatic option to import from other plugins.
Other wise you can do it manually: go to SEOpress settings, export, save the JSON file on your computer then IMPORT it in YOASt.Forum: Plugins
In reply to: [SEOPress - On-site SEO] Meta DataHere the screenshot:
https://i.gyazo.com/3e5a72fbe92548bae3d935fdbf0aa2ae.png
No errors at all.Forum: Plugins
In reply to: [SEOPress - On-site SEO] Meta DataHi,
here a gyazo:
https://i.gyazo.com/109b293edc4b12143de32e4145e1ef06.pngAnd here details:
https://i.gyazo.com/eff9d42fdaee1f472b498b519003768e.png
As you can see… it’s weird!
ThanksForum: Plugins
In reply to: [SEOPress - On-site SEO] Meta DataHi.
It’s updated to 7.5.2 and nothing changed.
Still issues with:
Structured data
Meta title
Internal links
I also tried to debug, like deactivating all other plugins, same result.Forum: Plugins
In reply to: [GN Publisher: Google News Compatible RSS Feeds] CategoriesOk, I have an update, I guess I understood where is the issue: the permalink structure. for categories.
I did set up, with SeoPress, that categories have this structure:
https://www.pressvibes.com/technology/
instead of the default
https://www.pressvibes.com/category/technology/I guess I am not the only one who does not want “category” in permalink structure, because having “category” in the permalink is not good for seo, this option is almost default in all seo plugin (Yoast, RankMath, AIOSEO etc).
I did a little test and if I include “category” in the permalink your plugin perfecly works and feeds are generated.I also checked if the feed was generated like this:
“pressvibes.com/category/technology/feed/gn” and it’s not.Is there any chance to make your plugin work even if you remove “category” from your cat permalink?
- This reply was modified 8 months, 3 weeks ago by pressvibes.
Forum: Plugins
In reply to: [GN Publisher: Google News Compatible RSS Feeds] CategoriesThank you for your answer.
Meanwhile you check, just an update: if on GNews you see categories is because atm I am using a mix of 3 plugins to reach that result, but still something is not properly working since some my articles stay on my pubblication for a couple of days and then they disappear (despite I see them from inside in G Publishers Center), some others stay for ever.
So clearly my solution is not the best, and anyway using a mix of 3 plugins is not the best!
I keep yours running, so you can maybe debug and check why categories are still empty.
The main one ( https://www.pressvibes.com/feed/gn ) is properly working.
And thanks in advance guys! ??Forum: Plugins
In reply to: [GN Publisher: Google News Compatible RSS Feeds] CategoriesThese are the feed i added:
https://www.pressvibes.com/cultureblend/feed/gn
https://www.pressvibes.com/lifestyle/feed/gn
https://www.pressvibes.com/technology/feed/gn
https://www.pressvibes.com/vibes/feed/gn
https://www.pressvibes.com/worksphere/feed/gn
as you can see, they look emptyForum: Plugins
In reply to: [AddToAny Share Buttons] Custom FollowHello everyone,
I did play with code snippet and I found a solution to add as many I want, I paste it here, just in case someone will have the same need, with code snippet this is the code that perfectly works when you want to add more:function addtoany_add_follow_services( $services ) { $services['example_follow_service_minds'] = array( 'name' => 'Minds', 'icon_url' => 'URL.TO.MINDS.ICON', 'icon_width' => 32, 'icon_height' => 32, 'href' => 'https://www.minds.com/${id}', ); $services['example_follow_service_reddit'] = array( 'name' => 'Reddit', 'icon_url' => 'URL.TO.REDDIT.ICON', 'icon_width' => 32, 'icon_height' => 32, 'href' => 'https://www.reddit.com/user/${id}', ); $services['example_follow_service_NAMESERVICE'] = array( 'name' => 'NAMESERVICE', 'icon_url' => 'URL.TO.THE.ICON', 'icon_width' => 32, 'icon_height' => 32, 'href' => 'URL.TO.SOCIALMEDIA.WITHOUT.YOUR.ID/${id}',
Forum: Fixing WordPress
In reply to: permalink doubtThank you for your replies.
Actually it is working exacly as I want: if you try to open a ?p8428 it will bring you to a 404 page on my website, and the /post-title is working perfectly.
I just realized that I have hundreds of ?p*** (revisions, drafts, media, etc), that are noindex and nofollow as I sat up with seo options.
But as you confirmed that default structure with ?p-id will anyway be created, then you solved my doubt.Forum: Plugins
In reply to: [AddToAny Share Buttons] Custom FollowThank you,
I am sorry to bother, I am just not that expert with coding!so technically i can add whatever, one code for every social media i am going to add, in this way:
function addtoany_add_follow_services( $services ) {
$services[‘example_follow_service’] = array(
‘name’ => ‘whatever’,
‘icon_url’ => ‘https://urltomyicon’,
‘icon_width’ => 32,
‘icon_height’ => 32,
‘href’ => ‘https://www.whatever.blahblah/${id}’,
);
return $services;
}
add_filter( ‘A2A_FOLLOW_services’, ‘addtoany_add_follow_services’, 10, 1 );
Or i have to add in ONE snippet more than one?
like this:
function addtoany_add_follow_services( $services ) {
$services[‘example_follow_service’] = array(
‘name’ => ‘whatever1’,
‘icon_url’ => ‘https://urltomyicon1’,
‘icon_width’ => 32,
‘icon_height’ => 32,
‘href’ => ‘https://www.whatever.blahblah1/${id}’,
);
return $services;
}
{
$services[‘example_follow_service’] = array(
‘name’ => ‘whatever2’,
‘icon_url’ => ‘https://urltomyicon2’,
‘icon_width’ => 32,
‘icon_height’ => 32,
‘href’ => ‘https://www.whatever.blahblah2/${id}’,
);
return $services;
add_filter( ‘A2A_FOLLOW_services’, ‘addtoany_add_follow_services’, 10, 1 );- This reply was modified 9 months ago by pressvibes.
- This reply was modified 9 months ago by pressvibes.
- This reply was modified 9 months ago by pressvibes.