martinconnelly
Forum Replies Created
-
I fixed this by adding:
div.tiled-gallery-item {display: block; width: inherit;}
Cheers -m
Forum: Plugins
In reply to: [SimpleModal Login] degredationForum: Fixing WordPress
In reply to: Custom Post Child 404 Permalink Flush Not WorkingI got it. Query Var was set to false. Should have been true!
Forum: Fixing WordPress
In reply to: wp_list_pages and hierarchical custom post typeSolved, with huge help from Rarst over at https://wordpress.stackexchange.com/ —
All you need to do is add $post_type=whatever to the line
$children = wp_list_pages..so it looks like
$children = wp_list_pages(“title_li=&child_of=”.$post->post_parent.”&echo=0$post_type=whatever”);
phew.
-m
Forum: Fixing WordPress
In reply to: wp_list_pages and hierarchical custom post typeHi Rev. I found that a while back, but near as I can see that’s how you could list all the pages in a certain post type…which seems useful, but i’m not sure it helps. the kicker is that $post->post_parent definitely works without assigning a specific post category — which means that $children *should* work too…
Thanks for the tip, though.
-m
Forum: Fixing WordPress
In reply to: Image Uploading – ONLY SOMETIMES — HTTP Error@shmuel — did you ever figure it out? I just started getting the http error, but only on images more than 560px wide…and even then sometimes the width didn’t fix it.
Cheers,
martin
Forum: Fixing WordPress
In reply to: Bizzaro Dashboard Loading IssuesUnderstood. But why would a plugin that hasn’t been updated start causing a new problem?
Forum: Fixing WordPress
In reply to: Bizzaro Dashboard Loading IssuesFor the issues I’m having today: There aren’t any new plugins. There were, but they’re gone. All the other plugins have been up and working both when the backed is good, and when it’s on the fritz, so I’m not sure they can be attributed to the issue.
It could be the theme (I designed it, and I’m I’m certainly fallible) but: How would a theme be influencing the back end?
Switching out the theme isn’t really an option, since the site is live and it would be more than a cosmetic change — what is there to do?
Any why would the WordPress footer (not that I really need it…) not load on one page, but load fine on every other?
Forum: Plugins
In reply to: [Plugin: FormBuilder] Styles and JS LoadingHi,
That’s exactly what I’m trying to figure out how to do. Any help would be very much appreciated!
Thanks!
MartinForum: Fixing WordPress
In reply to: Upload WoesI’m an idiot, it was cookies.
Forum: Installing WordPress
In reply to: Upload FolderAnd, once again, I’m an idiot. It must have been cookies.
Forum: Installing WordPress
In reply to: Upload FolderMore: Host did have PHP Safe Mode on. It’s now off. Uploads still not working. Still unable to change the directory in Settings -> Misc.
Forum: Installing WordPress
In reply to: Login WoesSo — trawling through the archives this morning I found this piece of code from #Dig50:
“…Edit this file at the very top of the functions.php file on the next line after the <?php
add these two pieces of code:update_option(‘siteurl’,’https://your-new-domain.com/’);
update_option(‘home’,’https://your-new-domain.com/’); …”Which got me in. Still some wonky re-directs going on, but at least one problem is solved.
-m