teolives
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: SlideshowOK, I cannot test the prophoto plugin as it is embedded on the premium theme.
Let’s try something else: can you give me the url of a picture you’ve changed? Or at least describe it…
What updates did you do btw? Removing, adding, replacing with same name, replacing with different name, etc…Forum: Fixing WordPress
In reply to: posting picturesDownloading or uploading?
Forum: Fixing WordPress
In reply to: Random image changes in older postsCan you at least provide a link to your blog and give some example?
Did it happen out of the blue or after you changed something?Forum: Fixing WordPress
In reply to: SlideshowAre you using a plugin to cycle the images? Which one?
Sometimes plugins create their own version of the picture so if you delete a picture and you replace with another one with an identical name that might not show up: isn’t there a control panel to refresh your slideshow?Forum: Fixing WordPress
In reply to: Custom post type multiple loop with pagination issueKessiemeijer,
thanks, exactly what I wanted!
Matteo
PS: complicating my life as usual…
OK, I was feeling lazy, here’s the solution:
<?php echo 'Number of images found :' . sizeof($nggSearch->search_result) ; ?>
Ciao,
M
After a bit of fiddling I’ve found a (I think) reasonable solution that I post here as other might have had the same problem (comments and corrections are appreciated!).
First, download yoxview’s last version from yoxigen.com (I used 2.21)
Second, in file yoxview-init.js erase or comment out the following lines
var jQueryIsLoaded = typeof jQuery != "undefined"; if (!jQueryIsLoaded) LoadScript("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js");
Third, if your theme is not doing it already, enqueue jQuery with wp_enqueue_script and do the same with the modified version of yoxview-init.js
Fourth, in your header (or footer if you prefer) launch the script like this:
<script type="text/javascript"> jQuery(document).ready(function($){ $(".ngg-galleryoverview").yoxview(); }); </script>
with .ngg-galleryoverview being the class NextGenGallery incapsulates the thumbnails.
I don’t know if this is the right way of coding it, but it worked for me.
Forum: Fixing WordPress
In reply to: How do i move my logo image to the right ?Style your title-area div with width: 100% and set the background-repeat to no-repeat in the same div.
Should do.Forum: Fixing WordPress
In reply to: help with Firebug for WordPressI don’t see anything wrong with your site… nor will Firebug!
The w3c validator though finds some errors: check your site at http://validator.w3.org and correct the errors and see if new ones show up once you’ve corrected the old ones.I assume you are either using Mozilla or Chrome if you are using Firebug.
When you launch it by pressing the bug icon it should open a window in the bottom part of your browser that will show you the HTML, CSS and script (and so forth) part of the site you are examining. That’s it, no flashy messages telling you what’s wrong with your site!
Firebug is extremely useful though if you want to style a site: you can change style properties on the fly and see immediately the output on your screen, you can select items from the site and see what is the style associated to the divs that contain them, etc.There are a few Firebug’s tutorials out there that you might want to have a look at but I guess you are asking Firebug to do something is not capable of.
Forum: Fixing WordPress
In reply to: Styling attachment id with css or preg_replace?CSS 101 π so easy… thank you!