nhtvpostma
Forum Replies Created
-
Forum: Plugins
In reply to: [Contextual Related Posts] Exclude display related posts not workingHi Ajay,
Are you in a position to share this code in case others find it useful?
Sorry, no I am not.
Forum: Plugins
In reply to: [Contextual Related Posts] Exclude display related posts not workingHi Ajay,
You just need to add this post ID in “Exclude display of related posts on these posts / pages”.
Yes this option does not work with manual install.
I don’t need to try the code any more. I’ve had someone create some code so I can exclude the Related Posts with a custom field.
Thanks for the help
StevenForum: Plugins
In reply to: [Contextual Related Posts] Exclude display related posts not workingScratch that. I think I’ve got it backwards.
So once again. Please help
Forum: Plugins
In reply to: [Contextual Related Posts] Exclude display related posts not workingThe problem is the manual install code. It doesn’t check for exclusion of related posts on the post id itself.
So change:
<?php if(function_exists('echo_ald_crp')) echo_ald_crp(); ?>to this:
<?php $exclude_on_post_ids = explode(',',$crp_settings['exclude_on_post_ids']); if (in_array($post->ID, $exclude_on_post_ids)) { echo(''); } else { if(function_exists('echo_ald_crp')) echo_ald_crp(); } ?>And now the check is done before echoing CRP.
Hope this helps more people.
I’m a php-noob, so please comment if i’ve done something wrong!
Forum: Plugins
In reply to: [Dynamic Widgets] Widget Dynamics causing server errorsCould it have something to do with the https environment or maybe the User Role Editor?
I trying to figure out why my site is slow and stumbled upon this warning. Do you think it could slow down my site, or should I just leave it?
Forum: Plugins
In reply to: [Event Organiser] Search EventsHi Stephen,
I’m going leave it up to the company that made the website for me, because they have a test server and I don’t. My active site has over 6000 users and I don’t want trouble with this site.
Thanks for the help
Forum: Plugins
In reply to: [Event Organiser] Search EventsI did already included the events in the search, that’s the problem. Althought they are included, they still don’t show up.
Forum: Plugins
In reply to: [Event Organiser] Chrome only browser not displaying [eo_venue_map]I should read more carefully. Your initial instruction was correct and it solved my problem,
Thank you!
Forum: Plugins
In reply to: [Event Organiser] Chrome only browser not displaying [eo_venue_map]No luck, did the edit in Frontend.js, cleared browser cache and the server cache (using W3 total cache).. Anything else I can try?
Forum: Plugins
In reply to: [Event Organiser] Chrome only browser not displaying [eo_venue_map]I think I need the other edit also, console is still displaying the same error.
Forum: Plugins
In reply to: [Event Organiser] Chrome only browser not displaying [eo_venue_map]Ah yes, the console is giving me this:
“[blocked] The page at https://insight.nhtv.nl/?event=bress-winterbioscoop ran insecure content from http://maps.googleapis.com/maps/api/js?sensor=false&callback=eo_load_map.”
On this page: https://insight.nhtv.nl/?event=bress-winterbioscoop
(you can ignore the login screen, this post is not secured)I’ll probably need to load the maps as https also. How do I do that?
Forum: Plugins
In reply to: [Event Organiser] Rights to select category – Role ScoperI’ve found the solution. (for anyone experiencing the same thing)
If you have Role Scoper installed. Going to Option-Realm and unticking Events under Post Type Usage is not enough. I’ve unchecked anything to do with events in the Realm page and now it works.