Sjoerd Blom (Vertizio)
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Maskitto Light] Can't set titles in services and portfoliosIn the widget ‘Services’.
I’ve used a hook to work around it, for the time being… Waiting for the real solution. 🙂
Efoula’s solution is the way to go. I have a redirect after a submission too. Just find in yourtheme/plugins/event-manager/forms/event-editor.php
<?php if( !empty($_REQUEST['redirect_to']) ): ?> <input type="hidden" name="redirect_to" value="<?php echo esc_attr($_REQUEST['redirect_to']); ?>" /> <?php endif; ?>and replace it with:
<?php $redirect_to = site_url(); ?> <input type="hidden" name="redirect_to" value="<?php echo $redirect_to; ?>" />Ok, got it solved.
Nothing wrong in doing some old school coding myself.
I created a filter that adds <meta property=”og:*> lines. Facebook happy, customer happy and me too. 🙂Philipjohn,
You might be right, however the problem arises only with the tinymce editor within Events Manager, not with other plugins using tinymce. So, my first guess is that is merely EM related than YWP SEO related because of this behaviour. But again: I might be wrong.
Any way to cross post this instead of opening a second thread?
Had it too. Very annoying. For me this worked:
* On tab ‘Others’ unselect ‘Show attachments in the post’.I triple checked the API call and it still differs from the tracking code that can be obtained through the management interface of Piwik.
I’ve set enable_trusted_host_check=0 and made the API call again and management interface check again. Still the same.Anyway, I don’t think this is a problem that is wp-piwik related, but piwik itself. So I’ll drop it overthere and close it overhere.
Thanks for your suggestions and your good work!
I’ve already checked and tried these reports and suggestions. Still no luck. What baffles me though is that Piwik spits out the correct tracking code, so with my correct hostname and not with an IPv4 address, whereas wp-piwik uses the IPv4 address in the tracking code.
It is just that nothing has changed for weeks, only the upgrade of wp-piwik…Meanwhile I’ll try some other things to solve this.
Correction on that: only the preview shows the wrong setSiteId, the source of the sites reveal that the the correct setSiteId is being used.
However the still try to access Piwik via the URL containing the IP-number.Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Incompatibility with define( 'WP_PLUGIN_URL')I was facing a similar problem when using WP SEO by Yoast. My dev site is a replica of my production site, with the only difference that on the dev site I don’t use domain mapping. So WP SEO worked like a charm on the dev site, but when I activated on my production site it didn’t work properly. I found references to http://www.mysite.como/css/somekindoffile.css in my site instead of http://www.mysite.com/ws/plugins/wp-seo/css/somekindoffile.css.
However when I deactive the domain mapping the references are correct.
I’ve worked around this by adding the following code to my wp-config.php:if (isset($_SERVER['HTTPS'])) { define( 'WPSEO_FRONT_URL', 'https://'.$_SERVER['HTTP_HOST'].'/ws/plugins/wordpress-seo/' ); define( 'WPSEO_URL', 'https://'.$_SERVER['HTTP_HOST'].'/ws/plugins/wordpress-seo/' ); } else { define( 'WPSEO_FRONT_URL', 'http://'.$_SERVER['HTTP_HOST'].'/ws/plugins/wordpress-seo/' ); define( 'WPSEO_URL', 'http://'.$_SERVER['HTTP_HOST'].'/ws/plugins/wordpress-seo/' ); }But now I’m about to activate an other plugin and I run into the same problems again. I could again define the constants for this plugin, but I don’t think I should keep doing this.