parisology
Forum Replies Created
-
I did notice one thing. If a gallery exists, but has no images, the image returned is not the placeholder image. So I have reverted to my cludge technique.
wp_get_attachment_image_src is what I needed. Thanks this works!
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Tooltip 5.10.0 behaviour changesI reverted to the previous version.
The main problem with 5.10 is the font size increased too much, and the thing about the br tags.
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] Tool Tip Custom CSS Not WorkingYes same here this update has broken the tooltip features that were working for me.
Forum: Themes and Templates
In reply to: [Virtue] Sidebar is emptyForgot to say I am using a child theme. The sidebar works correctly in the parent virtue theme. The problem is in the css.
.col-md-4,
.span4 {
width: 33.33%;
}However I am setting width here to 80%. If width is 33.33% the title text wraps too soon. I am trying to allow the text more horizontal room because I think it looks better to have the header title all on one line. I am also using the secondary menu position for the main menu so the menu appears below the title and is left aligned. Evidently this is messing up the sidebar widgets.
- This reply was modified 4 years, 8 months ago by parisology.
I had to grep the plugin source for a while to figure it out, and it all seems to be in class-foogallery.php.
$gallery = FooGallery::get_by_id($gallery_id);
if($gallery)
$image_count = $gallery->attachment_count();Forum: Fixing WordPress
In reply to: Image editor missing imageIt was whitespace in functions.php.
Forum: Fixing WordPress
In reply to: Image editor not working in child themeThank you for answering. It has nothing to do with FileBird.
I removed whitespace at the end of functions.php! The image preview in the child theme now works correctly. As a .NET C# programmer, what strange programming universe have I entered into? Whitespace breaks a feature?
The fix is described here:
https://wordpress.stackexchange.com/questions/292723/edit-image-preview-is-not-displayed
Forum: Fixing WordPress
In reply to: Post editor is not saving category changesNeeded DELETE privilege on database.
Forum: Fixing WordPress
In reply to: Zombie menu won't dieNeeded DELETE privilege on database.
Forum: Plugins
In reply to: All In One WP Security message won't go awayNeeded DELETE privilege on database.
Forum: Fixing WordPress
In reply to: My categories module is not workingProblem was due to lack of DELETE privilege on database.
The problem was that the database user didn’t have DELETE privilege on the WP database. Granting delete fixed a lot of issues I was having.
Forum: Fixing WordPress
In reply to: Can't delete term_relationship rows for postsBrilliant — I must have forgotten to grant delete when I was locking everything down. Also explains why I couldn’t delete menu items. Thanks.
I tried the twentyfifteen theme no change. The plugins don’t seem to have any effect.
aiowps_temp_configs starts with:
a:67:{s:36:”aiowps_remove_wp_generator_meta_info”;…
There are a lot of settings in there. I don’t know if I should post the whole text due to security, there is a secret key, and email address and don’t know what else. Is there a specific setting you need?
Also when I click yes (to re-insert) this message appears (as well as the problem message).
“The AIOWPS .htaccess rules were successfully re-inserted.”I assume this is referring to .htaccess in the root of the site? Mine is set to 0644 permissions.