nogginj
Forum Replies Created
-
Howdy
Thanks for the link, but no, it does not help.The issue is that the image as a link displays the image fine in the lightbox. However, the text and the whole
<li>
element are clickable as well, and these just bring up an empty lightbox when clicked.I have for the moment modified the plugin to wrap the entire contents in
<a>
tags, but that is a temporary solution and will of course be overwritten when the plugin is updated.I can share the code if that would be helpful, but I don’t want to submit a less-than-optimal fix, and this is just my own hack to get it working quickly.
Thank you
Forum: Plugins
In reply to: [oik-nivo-slider] OIK Nivo Slider 'Offset' parameter doesn't seem to workThanks a lot for your reply!
I ended up using a hand-rolled version of Nivo-Slider, but this will be great for next time I use this plugin.Thank you
-jForum: Plugins
In reply to: [AJAX Thumbnail Rebuild] Only rebuild 43 imagesCan confirm – plugin stalls at 42 for me.
Forum: Fixing WordPress
In reply to: No visual editor, white text after 3.8.1 – no solutions workI have made weird progress…
In another thread, I read to switch to a new theme, edit the page/post, then reactivate my current theme.
I switched to 2014, edited the page with an html comment<!--yadayada-->
then hit edit.
The page went blank.
I went to my dashboard, switched back to my theme, and all seems fine. even the other pages seem to show with the proper text and the editor visible. However my problem page, it just brought up a blank screen, like a php error.The only way I was able to fix it, luckily, I had that same editor window opened on another computer. I copy/pasted the html code, deleted the page (which also resulted in a white screen of death), then recreated the page from scratch.
What a hell of a bug – I hope this helps someone.
works now thanks
Appreciate it.
Thanks
-jhttps://www.flickr.com/photos/91215575@N03/collections/72157632276794099/
it seems the plugin is generating links like:
https://www.flickr.com/photos/USERID/collections/USERID-COLLECTIONID/while it should be:
https://www.flickr.com/photos/USERID/collections/COLLECTIONID/Also, it is actually listing all collections 3 times.
Forum: Fixing WordPress
In reply to: Uploader restarts once finishedI left a file uploading all weekend and it just kept restarting each time it ‘finished’.
Any ideas what to check for?
Forum: Plugins
In reply to: Category Based ArchivesHello
I was looking for a solution to this as well, and having not found anything, I got in there and coded it up.In the plugin code file “category-based-archives.php”, we’re going to edit the function ‘cba_add_rewrite_rules’.
So, find these lines:$new_rules = array( '([0-9]{4})/in-(.+?)/?$' => 'index.php?year=' . $wp_rewrite->preg_index(1) . '&datecategory=' . $wp_rewrite->preg_index(2), '([0-9]{4})/([0-9]{1,2})/in-(.+?)/?$' => 'index.php?year=' . $wp_rewrite->preg_index(1) . '&monthnum=' . $wp_rewrite->preg_index(2) . '&datecategory=' . $wp_rewrite->preg_index(3) );
and replace with this:
$new_rules = array( '([0-9]{4})/([0-9]{1,2})/in-(.+?)/page/([0-9]{1,2})?$' => 'index.php?year=' . $wp_rewrite->preg_index(1) .'index.php?monthnum=' . $wp_rewrite->preg_index(2) . '&datecategory=' . $wp_rewrite->preg_index(3). '&paged=' . $wp_rewrite->preg_index(4), '([0-9]{4})/in-(.+?)/page/([0-9]{1,2})?$' => 'index.php?year=' . $wp_rewrite->preg_index(1) . '&datecategory=' . $wp_rewrite->preg_index(2). '&paged=' . $wp_rewrite->preg_index(3), '([0-9]{4})/in-(.+?)/?$' => 'index.php?year=' . $wp_rewrite->preg_index(1) . '&datecategory=' . $wp_rewrite->preg_index(2), '([0-9]{4})/([0-9]{1,2})/in-(.+?)/?$' => 'index.php?year=' . $wp_rewrite->preg_index(1) . '&monthnum=' . $wp_rewrite->preg_index(2) . '&datecategory=' . $wp_rewrite->preg_index(3) );
What it does is it notices the ‘page’ part of the link, and then uses the number after that to pass into the raw wp query.
I hope this helps.
-J
Forum: Themes and Templates
In reply to: header.php not updatingi will look around in the server for some option…i have never seen this before though and why would it still update the stylesheet…or the whole files whenever i change themes (that does work)?
i tried copying the default theme to make my own, but then when i upload this copied version (without changing anything)…it fails. all i get is a whitescreen (hooray php).
very confused.
-j
Forum: Themes and Templates
In reply to: header.php not updatingwordpress will not read any template files i have edited…it always displays teh default…
only the stylesheets are updated on the web when i change them
Forum: Themes and Templates
In reply to: header.php not updating“Off the top of my head do you have an cache on?”
I’m not sure…are you talking about in wordpress? i dont know how to check that.
“Also some themes load header.php from a subdirectory. The theme was working on your machine? “
The wordpress i see online is NOT loading the header.php that I have in my themes folder.
“Which editor? Do you mean the one in the admin backend? You need to set the proper write permissions to use that. You can use your ftp program to do that for example should you wish do to do so. “
I was using the wordpress editor, which does change the actual files. Also, if i edit them on my pc and then upload them, they seem fine…but wordpress will not pull them to render them.
I have tried on a different computer and it is definitely on the server. wordpress is NOT reading my header.php in themes/default
so what is this about cache?
-jForum: Themes and Templates
In reply to: header.php not updatingdo i have to rebuild the site like in movabletype?
my pages will not update…only the stylesheet.