vsellis
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Gallery Master] Search Input Field on IE 11The page is password protected per the client’s requirement so I can’t share it here but here is a screenshot of the search bar in IE11.
My concern about changing the CSS is the next time the plugin updates it will be overwritten. I was throwing this out there in hopes that with your next update, you’ll include a fix for this as well.
- This reply was modified 6 years, 7 months ago by vsellis.
Even with W3TC disabled the search doesn’t work but I did not try to reindex while W3 is off if that is what you mean.
I don’t see a wp-debug.log file
When I look at the Algolia dashboard I can search posts but I’m guessing that doesn’t translate to searchable_posts. Do I (or you) need to re-run the index?
Scott
Having a similar problem. If I deactivate the plugin, all I get is a blank website.
Bradvin, Thanks for the reply, that would explain it.
Forum: Installing WordPress
In reply to: Error establishing a database connectionGuys, ran across a fix that I haven’t seen posted anywhere else and might be the root cause if none of the things mentioned above have worked for you.
Make sure your hosting account wasn’t originally set up for php4, it’s possible your hosting provider may have upgraded to php5 (and didn’t tell you or you missed it)
Saw this twice recently and having the host change the account to utilize PHP5 fixed it.
Forum: Fixing WordPress
In reply to: Nested Page NavigationNot sure if this is exactly what you are looking for but give it a try:
https://www.vsellis.com/wordpress-how-to/wordpress-page-navigation-context-sensitive/Forum: Plugins
In reply to: Custom Page NavigationIf you are doing a multi-level heirarchy and going several pages deep I’ve got a short tutorial that might help as well: https://www.vsellis.com/wordpress-how-to/wordpress-page-navigation-context-sensitive/
Looks like changing line 23 from
$template_data = implode( ”, file( WP_CONTENT_DIR.$template ));
to
$template_data = implode( ”, file($template ));
will remove the error. Not sure this is a good long term fix but might get you running for now.
Likewise, I sent an email to Nathan as well. Let’s see what comes back.
Forum: Everything else WordPress
In reply to: Change sort order of pagesMTWKOL – you can also manage it manually (not hard). I did a video tutorial that might help:
Sort Order In WordPressForum: Fixing WordPress
In reply to: Contributor issue with WordPress 2.8.4Having this problem also. Contributor posts do not show up for review for the Admin. Any resolution found?
No role manager plugins, no simplepress forum.
Forum: Plugins
In reply to: Display posts and gallery of post attachments seperatelyGuys, I posted a similar approach about a month ago in case you are still looking for a Ma.tt like gallery tutorial
https://blackbox-tech.com/blog/wordpress-gallery-tutorial-as-seen-on-matt/Forum: Fixing WordPress
In reply to: Image Gallery Navigation like MattDon’t know if you’ll find this useful but posted a tutorial on this a month or so ago…
https://blackbox-tech.com/blog/wordpress-gallery-tutorial-as-seen-on-matt/Forum: Fixing WordPress
In reply to: GalleryI think this will cover what you are looking for…no special script needed, just an extra category template and some css..
https://blackbox-tech.com/blog/wordpress-gallery-tutorial-as-seen-on-matt/
Forum: Fixing WordPress
In reply to: Images don’t retain links when used in galleryI’m also having this problem in WP 2.7 the new line looks like this
$link = isset($attr[‘link’]) && ‘file’ == $attr[‘link’] ? wp_get_attachment_link($id, $size, true, false) : wp_get_attachment_link($id, $size, false, false);I changed it to :
$link = isset($attr[‘link’]) && ‘file’ == $attr[‘link’] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, false, false);
but still no luck. WP won’t save the link I set for the image..
Any thoughts on this? Alternate solutons?
Scott