Berichten onder de tag: ‘Wordpress’

Keep anchor links working in MailPress when using the tracking add-on

Geplaatst in: Wordpress op 23 februari 2011 door hrbrt – Geef als eerste een reactie

Using the MailPress tracking add-on changes all the links in the email to special tracking links. When you are using anchor links in your email newsletter these links are also changed to tracking links and will not work anymore. There is a solution all though hacking the core files is never a good option. I could not find an alternative so here it is:

in mp-content/add-ons/MailPress_tracking.php near LINE: 127

under the line:

if (strpos($match[1], 'mailto:') !== false) continue;

add:

if (strpos($match[1], '#') !== false) continue;

This will leave all ‘anchor-links’ untouched.


Twentyten child theme add custom header images

Geplaatst in: Wordpress op 23 september 2010 door hrbrt – 11 Reacties

So you need to add your own custom image in the images array of your Twentyten child theme? It’s is not to hard, here we go… (meer…)