Json Koning
Forum Replies Created
-
Forum: Plugins
In reply to: [Stream] 500 Internal Server ErrorMainWP in my case
Forum: Plugins
In reply to: [Stream] 500 Internal Server ErrorHey Luke, I’ve found out which plugin is causing the issue – submitting to Github now.
Forum: Plugins
In reply to: [Stream] 500 Internal Server ErrorSure thing Luke.
Forum: Plugins
In reply to: [Stream] 500 Internal Server ErrorSure enough, it’s a plugin conflict. Did as you suggested, Stream installed & activated fine. Went to reactivate the deactivated plugins & whammo – there’s that 500 again.
Sorry, don’t have time right now to switch them all on one by one, but will do so when I do & report back. Might be a few days though.
I’m wondering if iThemes Security might be causing this, it is about the only plugin I can think of that might, & is used across all my sites…Forum: Plugins
In reply to: [Stream] 500 Internal Server ErrorHi Luke, it was the site in general (never got to the migration). I did try a fresh install of 3.0 & upon activating – got the same error. No doubt a hosting issue, but tracking it down…
Forum: Plugins
In reply to: [Stream] 500 Internal Server ErrorI know a 500 error isn’t very specific, & it’s likely not memory related as the sites all have 128mb – which surely should be enough in most cases?
Forum: Plugins
In reply to: [NextGEN Gallery Voting] SOLUTION: How to show votingI may have just answered my own question with a little experimentation.
In gallery.php I placed<?php echo nggv_imageVoteForm($image->pid); ?>
on the line directly below<img title="<?php echo esc_attr($image->alttext) ?>" alt="<?php echo esc_attr($image->alttext) ?>" src="<?php echo nextgen_esc_url($image->thumbnailURL) ?>" <?php echo $image->size ?> />
which for me was line 38.
This gets the stars (in my case) displaying under each thumbnail.Forum: Plugins
In reply to: [NextGEN Gallery Voting] SOLUTION: How to show votingHi starlinggirl,
I don’t suppose you could post that code to https://pastebin.com/ or similar, & then provide that link in your reply?
I seem to be having an issue with location, it’s displaying (stars) but only for the last thumbnail image in the gallery, not for each.
JasonForum: Plugins
In reply to: [WP Document Revisions] Ok, that's it – I give upNot at all, you are dead right & it’s generally not how I like to operate, so a reminder from time to time is a good thing.
BTW – the ‘harsh’ comment was in regards to my original comment – not your reply ??Forum: Plugins
In reply to: [WP Document Revisions] Ok, that's it – I give upFair comment threemc, a little harsh perhaps.
Regardless, it’s caused me more headaches than I care to remember, so I’m happy to consign this one to history.Forum: Plugins
In reply to: [Menu Item Visibility Control] Any known issues with 4.1.1?Hi Max,
Sure thing, first of all this may be of some use Zen Menu Logic
The hand coded solution is specific to my theme framework Enfold.In my case I needed a custom menu for a portfolio category, so it was the is_tax function I made use of.
This went in the theme’s /includes/helper-main-menu.php;
if(!is_tax('portfolio_entries', 'economics')) { $avia_theme_location = 'avia'; } else { $avia_theme_location = 'avia4'; }
‘economics’ is the custom taxonomy in the above example.
And this went in the functions.php;
add_action('init', 'ava_add_custom_menu'); function ava_add_custom_menu() { register_nav_menus(array('avia4' => __('Enfold Custom Menu', 'avia_framework'))); } ava_add_custom_menu();
‘Enfold Custom Menu’ is the new menu you’d create & swap out for the default navigation in the above example.
I know this is theme specific, but hopefully may help give you a pointer or two.
JasForum: Plugins
In reply to: [Menu Item Visibility Control] Any known issues with 4.1.1?No, I’m afraid not – so I’ve had my solution hand coded into functions.php
Ditto, which basically renders this plugin unusable with my installation.
Had a feeling it may be iThemes Security causing issues, but deactivated that – still no go.Forum: Plugins
In reply to: [Import and export users and customers] MD5 passwords – just checkingHi Javier,
Yes, that would be fantastic. I have a project that requires import of users with passwords that are already encrypted using MD5, so that would be brilliant.
JasonIt was switching off “Long URL Strings” that fixed the issue for me.