Justin Frydman
Forum Replies Created
-
Well here is how I got it working:
1) Installed lightbox plus: https://www.ads-software.com/extend/plugins/lightbox-plus/
2) Set Table IX 9a to: lightbox
3) Set Table VI 2 to: (Link type) lightboxMade sure the plugin didn’t have any warnings/errors (had to disable a few things as recommended).
Now it’s good. Confusing, as I understood lightbox was included with this plugin.
Hi again Opajaap,
I’ve tried a number of things so far, so if you have any suggestions that would be great.
I reset all the settings, added in wppa again to the Lightbox keyname setting, followed the warnings/error messages your plugin generated to disable things that weren’t compatible with lightbox, but it still doesn’t work. I even reverted to the twentyten theme, but it still functions the same.
No JS errors to follow or anything. Using the debug setting didn’t give me any useful information.
Please advise.
Forum: Plugins
In reply to: [WP Photo Album Plus] [Plugin: WP Photo Album Plus] LayoutWhere is G1 in Table I? I Just see 1,2,3,4 etc… and no letters.
Hi opajaap,
Did you have a chance to check the site out?
Thanks
I’d like to add I don’t have any visible javascript errors. Also looking at the source it seems the wppaLightBox = “”; variable is empty under “WPPA+ Runtime parameters”.
I hacked wppa-non-admin.php to force it to be wppa but it still doesn’t work.
Please let me know what I can try to get it working.
Thank you
I haven’t been able to yet. If you have any suggestions, please let me know.
Can you post your entire file so we know exactly where this goes?
Thanks!
Hey Jay,
Spot on here, I was trying to force them to the footer.
Thanks again for spending the time.
Well, I got it working.
I removed these completely from my functions.php:
wp_enqueue_script('jquery', '', '', '', true); wp_enqueue_script('jquery-ui-core', '', '', '', true); wp_enqueue_script('jquery-ui-tabs', '', '', '', true); wp_enqueue_script('jquery-ui-resizable', '', '', '', true); wp_enqueue_script('jquery-ui-draggable', '', '', '', true); wp_enqueue_script('jquery-ui-selectable', '', '', '', true); wp_enqueue_script('jquery-ui-dialog');
does that mean something is trying to enqueue this more than once? I always had 7 of these:
<script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script>
which matches how many scripts I was trying to enqueue there.
Thank you very kindly for your help Jason, it is much appreciated. Any chance you know why this was happening for my understanding?
Updated and no change for me, still adding a bunch of these at the bottom of my script, if you want to speed this up I can give you access to have a look to make troubleshooting faster:
<script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script> <script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script> <script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script> <script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script> <script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script> <script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script> <script type='text/javascript' src='https://mydomain.com?ver=1.8.9'></script>
No dice ??
Here is my full function, tried making your adjustments: https://pastie.org/2977611
I have this in my functions.php, maybe it helps:
wp_enqueue_script('jquery', '', '', '', true); wp_enqueue_script('jquery-ui-core', '', '', '', true); wp_enqueue_script('jquery-ui-tabs', '', '', '', true); wp_enqueue_script('jquery-ui-resizable', '', '', '', true); wp_enqueue_script('jquery-ui-draggable', '', '', '', true); wp_enqueue_script('jquery-ui-selectable', '', '', '', true); wp_enqueue_script('jquery-ui-dialog');
Hi Jason,
I don’t think I do, I would be happy to send you any further debug information. If I just use “use google libraries” alone, it only loads 1 very jquery, enabling BWP minify seems to interfere with that and cause it to load like 9 times. I’m not exactly sure where the problem lies…
Forum: Networking WordPress
In reply to: permalink problem on nginxAdd this to functions.php
add_filter( 'got_rewrite', '__return_true', 999 );
WordPress is checking if mod_rewrite is enabled (which of course it’s not since we aren’t using Apache), so force this to return true and it won’t add the additional index.php into the permalinks.
Then, just save your permalinks again and you should be good to go.