Zsono
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Paypal problemSame problem here, EM is v5.5.2 and EM Pro is v2.3.4
We are using HUF with comma as thousand separator and dot for the decimal places, so an amount looks like this: 4,000.00 HUF
Thank you for your help in advance!
@scampy, I have found some forums and articles about NGG-suPHP conflicts, they are in German, but the snippets are easy to understand: https://www.soziotech.org/nicht-lesbare-thumbnails-bei-wordpress-buddypress-mit-suphp/
https://forum.wpde.org/plugins-und-widgets/26280-nextgen-gallery-erstellt-keine-thumbnails-2.html@rgreisman, it is a very strange problem. When I first visited your site, the images were displayed correctly, but the second, third time the blank black background appeared. It’s not a permission problem, I think that the plugin’s javascript and the theme’s javascript files don’t like each other. I will look for a solution.
Sorry scampy, just got back to my computer. ??
Did the galleries ever work on the site? If yes, did you update NG Gallery, WP or have you changed the site/WordPress URL 2 weeks ago? If it worked with NGG 1.9.2, then you should downgrade to that version.
What I find strange is when I enter https://wickford-infants.iscoming.co.uk/wp-content/gallery, it gives a “Nothing Found” page. It should give a 403 forbibben message or a blank page.
scampy, could you give a link? I’ll try to figure out something.
You don’t need the <?php and ?> before and after the echo nggShowSlideshow, since you already have the opening and closing tag. Only use this part:
echo nggShowSlideshow(ID,width,height);
For the parameters write only the variables or numbers, like this:
echo nggShowSlideshow(4,450,350);
So the full code should look like this:
<?php $slideshow_id = get_post_meta( $post->ID, 'slideshow_id', true); // Get slideshow id from custom field data if( isset($slideshow_id) ){ echo "<div class=\"post-gallery\">"; echo nggShowSlideshow(4,450,350); // Display the slideshow echo "</div>"; } ?>
Instead of nggShowGallery use nggShowSlideshow:
<?php echo nggShowSlideshow(ID,width,height); ?>
What’s the permission of the image and thumb folders? A few weeks ago I also had broken thumbs: file permission were set to 664, but the thumbs folder was 774 – modified it to 755 and everything worked.
Forum: Plugins
In reply to: [Job Manager] [Plugin: Job Manager] Alternating row colorsI figured it out this morning, thanks to this tutorial: https://davidwalsh.name/css-tables-css3-alternate-row-colors
There are two ways: CSS3 or jQuery. I chose CSS3: in the Jobs Manager display settings, I gave my table a class (<table class=”jobs-table”>), which I defined in JM’s display.css:
.jobs-table tr:nth-child(odd){ background-color:#eee; } .jobs-table tr:nth-child(even){ background-color:#fff; }
It looks like this: https://btkhok.idejeh.hu/szolgaltatasok/kepzesek-es-allasok/allashirdetesek/
This CSS3 selector works with Chrome, Mozilla and Safari. Have a nice day!