heyda
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Language switcher fails with Theme: Story by PexetoYes, by buying wpml-plugin.
I never got an answer and lost my patience.wpml works straight out of the box.
Forum: Plugins
In reply to: [Polylang] Language switcher fails with Theme: Story by PexetoI checked.
pll_translation_url filter is not used by the theme.Forum: Plugins
In reply to: [Polylang] Language switcher fails with Theme: Story by PexetoIt was a local install, but I have set up a live copy for you.
story.wk2017.nl
This install has the same language switcher problem. Works with twenty sixteen theme and does not work with story theme.
I would also give you a admin-login to switch the theme if you want. But I cannot provide you the login via this public forum. 😉
You can also test and ask me to switch themes for you. If that is helpfull.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] updated to 3.2 and got auto pNope, still waiting for a clue where to start.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] not using single.php?I had the same problem.
– open events/the-event-calendar.class.php
– back up this file.
– go to line 733.
– select lines 733 – 758 (function templateChooser)
– paste this code:
public function templateChooser($template) {// hijack to iCal template
if ( get_query_var(‘ical’) || isset($_GET[‘ical’]) ) {
$this->iCalFeed();
die;
}if( is_feed() || get_query_var( ‘post_type’ ) != self::POSTTYPE ) {
return $template;
}$this->constructDaysOfWeek();
// single event
if ( is_single() ) {
return $this->getTemplateHierarchy(‘single’);
}
// list view
elseif ( sp_is_upcoming() || sp_is_past() ) {
return $this->getTemplateHierarchy(‘list’);
}
// grid view
else {
return $this->getTemplateHierarchy(‘gridview’);
}}
– now it should be ok
All I did was change the order in the function.Remember if you update the plugin, this modification will probably be lost. But for now it should help you out.