
HID Lisa for Genesis 9
March 24, 2024
PN Clyo for Genesis 9
March 24, 2024
Description:
Matsumoto Rangiku Character and Outfit for Genesis 8 Female
This Content includes:
- Character shape
- Skin textures
- Hair
- Outfit (Scarf have dForce modified, Belt Sash have Bones)
- Sword
This material is for iRay render
Matsumoto Rangiku Bleach
Link:
https://www.renderhub.com/guhzcoituz/matsumoto-rangiku-for-g8f






Hey, I wrote some javascript to fix minor issues on the site. To add it you can use the “header & footer code” described here: https://themeisle.com/blog/wordpress-custom-javascript/. Basically, add the script to the footer section so that it loads after the content has loaded.
The script:
// Code for fixing some minor issues on 3DLOAD. Thanks for all the free stuff! <3 let postItems = document.querySelectorAll('.post-item'); let contentWrapper = document.querySelectorAll('.the_content_wrapper'); // Make thumbnails clickable postItems.forEach(element => { let originalLink = element.querySelector('.entry-title a'); if (originalLink instanceof HTMLAnchorElement !== true) { return; } let newLink = document.createElement('a'); newLink.href = originalLink.href; // Make the link span across the whole thumbnail newLink.style.position = 'absolute'; newLink.style.top = '0'; newLink.style.left = '0'; newLink.style.right = '0'; newLink.style.bottom = '0'; newLink.style.zIndex = '999'; // Add a slightly white background on hover newLink.onmouseenter = function() { this.style.background = 'rgba(255,255,255,.2)'; }; newLink.onmouseleave = function() { this.style.background = 'unset'; }; element.appendChild(newLink); // Remove title text rising on hover let title = element.querySelector('.post-desc-wrapper'); if (title instanceof HTMLDivElement !== true) { return; } title.style.transform = 'unset'; }); // Replace links on product page with actual links contentWrapper.forEach(element => { let allStrong = element.querySelectorAll('strong'); allStrong.forEach(strong => { if (strong.innerHTML.indexOf('https://') !== -1) { // Quick fix to remove extra 'h' if there is a misspelled link if (strong.innerHTML.startsWith('hh')) { strong.innerHTML = strong.innerHTML.substring(1); } let link = document.createElement('a'); link.href = strong.innerHTML; link.textContent = strong.innerHTML; strong.innerHTML = ''; strong.appendChild(link); } }); });I thank you for that, but I think it does not work
Ah, I believe the plugin requires that the code is wrapped with <script> tags so that the DOM parses it as javascript. I also added an event listener so it loads after the content has been loaded just to be sure.
Updated code with script tags:
<script> document.addEventListener("DOMContentLoaded", (event) => { let postItems = document.querySelectorAll('.post-item'); let contentWrapper = document.querySelectorAll('.the_content_wrapper'); // Make thumbnails clickable postItems.forEach(element => { let originalLink = element.querySelector('.entry-title a'); if (originalLink instanceof HTMLAnchorElement !== true) { return; } let newLink = document.createElement('a'); newLink.href = originalLink.href; // Make the link span across the whole thumbnail newLink.style.position = 'absolute'; newLink.style.top = '0'; newLink.style.left = '0'; newLink.style.right = '0'; newLink.style.bottom = '0'; newLink.style.zIndex = '999'; // Add a slightly white background on hover newLink.onmouseenter = function() { this.style.background = 'rgba(255,255,255,.2)'; }; newLink.onmouseleave = function() { this.style.background = 'unset'; }; element.appendChild(newLink); // Remove title text rising on hover let title = element.querySelector('.post-desc-wrapper'); if (title instanceof HTMLDivElement !== true) { return; } title.style.transform = 'unset'; }); // Replace links on product page with actual links contentWrapper.forEach(element => { let allStrong = element.querySelectorAll('strong'); allStrong.forEach(strong => { if (strong.innerHTML.indexOf('https://') !== -1) { // Quick fix to remove extra 'h' if there is a misspelled link if (strong.innerHTML.startsWith('hh')) { strong.innerHTML = strong.innerHTML.substring(1); } let link = document.createElement('a'); link.href = strong.innerHTML; link.textContent = strong.innerHTML; strong.innerHTML = ''; strong.appendChild(link); } }); }); }); </script>Now works fine thanks! This is really useful! 😉
I removed that function and left the possibility of being able to click on the whole image, in fact better that the link remains unclickable and just a text