WilliamJames
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: login.php causes Router blackoutThis issue was resolved following the supply of a new BT Router Hub –
Forum: Everything else WordPress
In reply to: login.php causes Router blackoutBT – Are sending out a new (not-regraded with the latest Firmware) to see if that will cure the issue – I’ll keep you posted.
Forum: Everything else WordPress
In reply to: login.php causes Router blackoutHi Steve – Glad you pointed that out – I have a BT Business Hub 2700HGV. Firmware 6.3.9.63-plus.tm – which (according to a Forum Post at Business BT – Forum – has been updated remotely! BT have not replied to my Ticket as yet so that may prove critical – Thanks again – I’ll post the news from BT
Forum: Everything else WordPress
In reply to: login.php causes Router blackoutHi Ipstenu, my ISP are BT
Forum: Plugins
In reply to: NextGEN Gallery SidebarI’ve got the same problem – and is seems like it will be a tricky one. There must be some way of finding how your theme calls a page, and why it is conflicting with nextgen. Something between sidebar.php and how to include a call to nextgen (alongside the sidebar)
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Howto: custom links based on photo title?I’m working on something similar – a linked imagetopage (in the same site) link when clicking on each image. Tricky:
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] How to link image to a specific page (URL)I may have found an alternative workaround by modifying nggSmoothGalleryFunctions.php:
This section:
// Error with only one element
foreach ($pictures as $picture)
if ($picture[“img”]) {
$out .= “<div class=\”imageElement\”>”;
$out .= ” <h3> ” . $picture[“title”] . “</h3>”;
$out .= ” <p style=\”color: #FFF000;\”> ” . $picture[“desc”] . “</p>”;
$out .= ” <(a) target=\”_blank\” href=\”” . $picture[“link”] . “\” title=\”read more\” class=\”open\”></(a)>”;
$out .= ” <img src=\”” . $picture[“img”] . “\” class=\”full\” />”;
$out .= ” <img src=\”” . $picture[“thumb”] . “\” class=\”thumbnail\” />”;
$out .= “</div>”;
}$out .= ‘ </div></div>’;
return $out;
}By modifying this [note I have altered the mouse-over text]:
$out .= ” <(a) target=\”_blank\” href=\”” . $picture[“link”] . “\” title=\”read more\” class=\”open\”></(a)>”;
It should be possible, I am assuming, to link each image to a specific page (on the site) I would also like the ‘thumbnails’ in the carousel to behave the same. Still drawing board, but closer!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] How to link image to a specific page (URL)I may have found an alternative workaround. Using the commands in nggSmoothSharedFunctions.php :
// Error with only one element
foreach ($pictures as $picture)
if ($picture[“img”]) {
$out .= “<div class=\”imageElement\”>”;
$out .= ” <h3> ” . $picture[“title”] . “</h3>”;
$out .= ” <p style=\”color: #FFF000;\”> ” . $picture[“desc”] . “</p>”;
$out .= ” <<<<“;
$out .= ” <img src=\”” . $picture[“img”] . “\” class=\”full\” />”;
$out .= ” <img src=\”” . $picture[“thumb”] . “\” class=\”thumbnail\” />”;
$out .= “</div>”;
}$out .= ‘ </div></div>’;
return $out;
}It should be possible, IO am assuming, to modify line:
$out .= ” <<<<“;
[note I have altered the hover-over text for this] to call a page I can attribute to each image…hhhhmmmmmm still drawing board stuff, but closer. I would also like the carousel ‘thumbnails’ to behave in the same way, i.e. link to a page (on the site btw) corresponding to the image – they are covers of ‘zines.
Forum: Fixing WordPress
In reply to: Why does log out redirect to the log in screen?Cool – ta ??
Forum: Plugins
In reply to: Customizing SuperSlider Login appearanceAHA – Thank you,
William
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] How to link image to a specific page (URL)Hiya – I am attempting the same workaround. I have custom fields installed but I’m sure I have not created the image custom field correctly – Field Name = URL – Field Type = Text Input (?) linked to my gallery. Modifying singlepic.php poses no problem, but I am at a loss to see how I will be able to place and specify the URL’s I am hoping to send visitors who select the images. The ‘lightbulb’ could also be larger and the alt text would be better suited as something like ‘read more’. Would I find these specs in the same file?
Would appreciate some guidance,
Cheers!! William
Still not got confirmation that this is not a problem on my pc – anybody check to see if they find the same problem?
Also, clearing the browser cache and refreshing the page will cause each top level link to work normally
-
once
– then one mouse off action, and the link will stop working – got me stumped…
Forum: Fixing WordPress
In reply to: Custom Default AvatarThat’s a really neat slot – thanks!
Forum: Fixing WordPress
In reply to: Removing the comment sectionIt is possible to disable comments on each page you create:
Edit Page / Discussion / “Allow Comments”