Hello!
“Share This Entry” at the bottom of blog posts shares the plain URL, e.g. “http://mydomain.com/?p=3447”
Is there a way to have the post’s permalink shared rather than the plain URL? e.g. “http://mydomain.com/categoryORtag/page-name-goes-here/” ?
Thanks!
Hey mkammes,
It should share the url based on the permalink set.
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.
Best regards,
Nikko
Hello!
Here is an example: https://imgur.com/a/K3GSUOf
The credentials are in the Private Content area.
Thanks!
Hi mkammes,
Can you try adding this php code in functions.php:
function avia_add_social_share_link_arguments($args) {
$args['twitter']['pattern'] = 'https://twitter.com/share?text=[title]&url=[permalink]';
return $args;
}
add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
Hope it helps.
Best regards,
Nikko