IIStevowII
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Images are shown for both languages (instead of just one)So I downloaded version 2.1.6 (previous version) and placed this one in the plugin directory instead of the newest version. This seems to solve the problem, so it is definitely something that occurs with the new release.
Never had any more problems between NextGEN and Polylang before.
Does this mean that this issue has no priority? It seems that loading Polylang after NextGEN solves the problem for now, but I’m not sure for how long.
Forum: Plugins
In reply to: [Polylang] Wrong url rewrite -> 404 pageDid the trick for me too, thanks Chouby.
Will this development version automatically be updated like the normal plug-in? Or do I have to keep track of new updates manually to get back on the main version?
Forum: Plugins
In reply to: [Polylang] Stop redirect of blog page to default languageI didn’t. So far I was able to use different slugs for each languages.
But for the blog I don’t need two pages either, I just don’t want the language to change (but just show the content in the default language).
Forum: Plugins
In reply to: [Manual Related Posts] Undefined index: in_homepageRe-saving settings, does that help? It usually could help. I haven’t updated to 3.9.1 yet, so maybe that could be the problem. (I’m not planning on doing that either for a while after hearing what happend to you :-P)
Otherwise I don’t really know what the problem could be without diving in the code, but that’s more the job of the author. I don’t really have the time for it.
Forum: Plugins
In reply to: [Manual Related Posts] Undefined index: in_homepageVery strange, I have version 1.8.1 myself but this error does not happen. I must say that my line 186 is something completely different. Are you sure you are looking a the correct file?
My suggestion: Completely re-install the plugin and then make the change I’ve pasted above. That should fix it.
Forum: Plugins
In reply to: [Manual Related Posts] Undefined index: in_homepageWhat version are you using? Could you copy line 186 (And a few surrounding lines) of the file baw-manual-related-posts/inc/backend-noajax.inc.php
Forum: Plugins
In reply to: [Manual Related Posts] Undefined index: in_homepageOn line 28 and 29 of the file /wp-content/plugins/baw-manual-related-posts/inc/frontend-noajax.inc.php I have added ” && isset($bawmrp_options[‘in_homepage’])” BEFORE “$bawmrp_options[‘in_homepage’]==’on'”
if ( ( is_home() && isset($bawmrp_options['in_homepage']) && $bawmrp_options['in_homepage']=='on' && in_the_loop() ) || is_singular( $bawmrp_options['post_types'] ) ) {This problem could occur on more/different places. The error message tells you which file and line.
Forum: Plugins
In reply to: [Navayan Subscribe] [Plugin: Navayan Subscribe] Sending Two EmailsThe problem occurs because of post revisions. So a simple check wether or not a post is a revision will solve the problem.
In the navayan-subscribe folder should be a functions.php file.
Around line 128 there should be a function called: function nys_UpdateBox() {, change that to: function nys_UpdateBox($post_id) {
2 lines below change the if statement to: if (!empty($checked) && !wp_is_post_revision($post_id)) {
Problem fixed.