We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Here's how to remove periods (.) from URLs - Blogger Pro | Forum

Tecca
Tecca Dec 19 '15
Here we go, for those that might not want periods in the URL. It can look a bit ugly. Keep in mind that periods are okay to have, it's a matter of preference.


Example blog title:

Hello, this is a blog post...


The URL would end up being: 

yourwebsite.co/blogger/hello.-this-is-a-blog-post....html


To make the URL nicer, like this:

yourwebsite.co/blogger/hello-this-is-a-blog-post.html


Open up the file /var/www/beardprofile.com/public_html/ow_plugins/blogger/bol/service.php


Replace line 2755, with:

$seo_title=str_ireplace(",","",$seo_title);

$seo_title=str_ireplace(".","",$seo_title);


So you're removing one line and replacing it with two. Keep in mind that you need to keep note of this change should the plugin be updated in the future, as a new version will overwrite your changes. I always keep a file that notes any core or plugin changes I've made. 

Tecca
Tecca Dec 21 '15
This was added in the latest update. Thanks, Aron! One less thing to keep track of when updating plugins.
You do not have permission to reply this topic