phatwebah
Forum Replies Created
-
Forum: Plugins
In reply to: [Testimonials Widget] Slider Widget not workingJust FYI, the image on the About tab of the plugin Settings is dead: https://www.axelerant.com/wp-content/uploads/2015/02/IGP7228-2015-01-22-at-05-18-02.jpg
Forum: Plugins
In reply to: [Testimonials Widget] Slider Widget not workingThank you for responding.
I did see that page and addressing the suggestions on that page are part of “many things” that I’ve tried. That said, I’m not 100% sure I’m in compliance with that list so I’m happy to start there for troubleshooting.
1. Tested with both global and widget settings at 10 and null (using default). The testimonial does seem to change sometimes on page refresh, but not while simply viewing the page.
2. I’m using the built-in widget in the sidebar so my thinking is this doesn’t apply. Please let me know if this is true.
3. same as #2.
4. I’ve confirmed both the existence of wp_footer() in my theme and that it is generating JavaScript in the html of my page (see below).
<script type="text/javascript"> var tw_2 = null; jQuery(document).ready(function() { tw_2 = jQuery('.testimonials-widget-testimonials2').bxSlider({ adaptiveHeight: true, auto: true, autoControls: true, autoHover: true, controls: false, mode: 'fade', pager: false, pause: 2000, video: false, slideMargin: 2, slideWidth: 0 }); }); </script></body>
5. I don’t believe it is included twice. Like the image on the FAQ, I have several jquery-<some plugin>.js files being included, but only one jquery.js (?ver=1.12.4). There is however a file called jquery-migrate-min.js.
6. There are no errors, but if I change the results to “verbose”, I see the following:
[Violation] Added non-passive event listener to a scroll-blocking ‘touchstart’ event. Consider marking event handler as ‘passive’ to make the page more responsive. jquery.js?ver=1.12.4:3
[Violation] Added non-passive event listener to a scroll-blocking ‘touchmove’ event. Consider marking event handler as ‘passive’ to make the page more responsive. jquery.js?ver=1.12.4:3
[Violation] Added non-passive event listener to a scroll-blocking ‘touchstart’ event. Consider marking event handler as ‘passive’ to make the page more responsive. jquery.js?ver=1.12.4:3
[Violation] Added non-passive event listener to a scroll-blocking ‘touchmove’ event. Consider marking event handler as ‘passive’ to make the page more responsive.
jquery.js?ver=1.12.4:37. Running jquery 1.12.4
I was going to attempt to uninstall/reinstall, but I don’t believe your plugin supports export/import (I could probably figure it out in phpmyadmin, but I’d rather not have to go that route).
Forum: Plugins
In reply to: Pagination links don't inlcude $_SERVER['QUERY_STRING']topic will be closed. here is a link to the correct topic.
Thank You! I will create a new topic to address the $url rewriting question. You have been very helpful.
Just out of curiosity, do you know where I would rewrite the link $url for the pagination links to include $_SERVER[‘QUERY_STRING’]?
EDIT: for example, in the legacy/lib directory there is a rewrite.php in which this could have been done.
I ask because most of my tagged galleries are limited to 15-20 photos, but there are a couple with more than 100 and the loading time is kind of slow.
Thank You,
MattI don’t know if a new thread is necessary (plus it is kind of related). Anyway, the disable_pagination parameter worked great. I was additionally helped by this thread. While trying to figure out this filtering stuff using do_shortcode() I searched on at least 2 occasions for the phrase “nextgen gallery shortcode parameters”, but never came across either disable_pagination or images_per_page. Does there exist a complete list of possible shortcode parameters for nggtags? or ngg_images for that matter?
I could not find this on the shortcodes page on your website.
Thank You,
Matt@photcrati,
I am having a similar problem, but I was actually thinking of a different workaround, especially after reading that, “ngg_tag as the display generator is undocumented as it has very limited functionality at the moment.”
I am using do_shortcode(‘[nggtags]’) after using a switch on a $_SERVER[‘QUERY_STRING’] to gain functionality similar to powertags (which I could not get to work).
The simplest solution for me would be a way to eliminate pagination all together. I would actually prefer all of the photos shown on one page (except the case where no filters are used, but the pagination works fine there). Please Help
Code:
<?php $filter = @$_GET['f']; switch ($filter){ case '2014': echo '<h4>Buy Photos from the <strong>2014 Exhibit</strong></h4>'; echo do_shortcode('[nggtags gallery="2014 Exhibit"]'); break; case '2013': echo '<h4>Buy Photos from the <strong>2013 Exhibit</strong></h4>'; echo do_shortcode('[nggtags gallery="2013 Exhibit"]'); break; default: echo '<h4><strong>All Photos</strong></h4>'; echo do_shortcode('[ngg_images gallery_ids="2" display_type="photocrati-nextgen_basic_thumbnails"]'); break; } ?>
Here is a link to the page in question: Gallery/Store
Thanks In Advance