Remove SEO by Artio link in JoomSEF 3.2.3
That pesky SEO by Artio link jumps straight back in when you do an update or install the latest version of Artio’s JoomSEF for Joomla 1.5.x. Here’s how you get rid of it!
(This fix works for most versions of JoomSEF, however the actual line for the fix may differ slightly.)
Jump into the file:
components/com_sef/joomsef.php
On line 757 (or thereabouts) the following string will be added to the end of your content ($buf is your content so far):
757 | $buf.='<'.'d'.'i'.'v'.'>'.'<'.'a'.' '.'h'.'r'.'e'.'f'.'='.'"'.'h'.'t'.'t'.'p'.':'.'/'.'/'.'w'.'w'.'w'.'.'.'a'.'r'.'t'.'i'.'o'.'.'.'n'.'e'.'t'.'"'.' '.'s'.'t'.'y'.'l'.'e'.'='.'"'.'f'.'o'.'n'.'t'.'-'.'s'.'i'.'z'.'e'.':'.' '.'8'.'p'.'x'.';'.' '.'v'.'i'.'s'.'i'.'b'.'i'.'l'.'i'.'t'.'y'.':'.' '.'v'.'i'.'s'.'i'.'b'.'l'.'e'.';'.' '.'d'.'i'.'s'.'p'.'l'.'a'.'y'.':'.' '.'i'.'n'.'l'.'i'.'n'.'e'.'"'.' '.'t'.'i'.'t'.'l'.'e'.'='.'"'.'I'.'n'.'f'.'o'.'r'.'m'.'a'.'t'.'i'.'o'.'n'.' '.'s'.'y'.'s'.'t'.'e'.'m'.'s'.','.' '.'d'.'a'.'t'.'a'.'b'.'a'.'s'.'e'.'s'.','.' '.'i'.'n'.'t'.'e'.'r'.'n'.'e'.'t'.' '.'a'.'n'.'d'.' '.'w'.'e'.'b'.' '.'a'.'p'.'p'.'l'.'i'.'c'.'a'.'t'.'i'.'o'.'n'.'s'.'"'.'>'.'S'.'E'.'O'.' '.'b'.'y'.' '.'A'.'r'.'t'.'i'.'o'.'<'.'/'.'a'.'>'.'<'.'/'.'d'.'i'.'v'.'>'; |
To ensure nothing is appended to the end of your content, simply replace that line with this:
757 | $buf.=''; |
And voila… link gone!
LNL 2.0 update
Can’t believe I haven’t dubbed it lnl 2.0 until now!
Anyway, after starting over 2 years ago (granted it’s been done in spurts, not 2 solid years of development) the light at the end of the tunnel is starting to shine brighter than ever.
The majority if the work for the admin suite is complete, there’s just one more section remaining, then the ability fir bands and artists to add their own gigs… That will be interesting!
Apart from that a lot of bugs have been fixed up in the front end, but the majority of work there won’t be completed until the design is confirmed.
If anyone wants to see a sneak peak let me know and I’ll see what I can do.
Modules in Code Igniter (HMVC)
Threw this on ShopTank tonight for Matt, looks very impressive. A way to create and load modules in code igniter… can’t be bothered explaining it, the details on their info page do a good job of it. Stupidly easy to install and get going, just add the libaries to your installation and you’re away. Might [...]
Threw this on ShopTank tonight for Matt, looks very impressive. A way to create and load modules in code igniter… can’t be bothered explaining it, the details on their info page do a good job of it. Stupidly easy to install and get going, just add the libaries to your installation and you’re away.
Might write something up another day on integrating this into a template manager (ala subooa.com)