Jeremy
Forum Replies Created
-
Forum: Plugins
In reply to: [Tooltipy (tooltips for WP)] Settings for mobile version missingI’d like to be able to set mobile options for this plugin.
I tried getting css classes using F12, but a mouse over and I lose the tooltip to get the css class.
After completing some testing I think I have found the action which creates this code.
I put two paragraphs into the text editor section.
I backspace the second paragraph into the first, realise what I have just done and then hit return.
This is all done in the main editor, rather than the editor on the left hand panel.The result from a test post:
<p>This is the first paragraph.</p><p><span style=”font-size: 17px;”>this is paragraph number.</span></p>
<p></p>Having a slider to control how lossy or lessless the WebP files are created, managed would be really useful. Depending on needs, generic sites may want as lossy as they can get, travel or photography sites need more emphasis on maximising image quality.
Appreciate the reply!
I am also looking for information on what the plugin does with WebP. Are they lossy or lossless compression?
I hid the icons with some CSS:
.hover-inner.transition-50 {
visibility:hidden;
}Forum: Plugins
In reply to: [Grid Plus - Unlimited grid layout] Thumbnail should link to the postJust so you know I am not affiliated with the plugin owner, I think you need more assistance. The plugin owner does offer paid support which you can probably benefit from.
Forum: Plugins
In reply to: [Grid Plus - Unlimited grid layout] Thumbnail should link to the postSkin options tab, the first option is thumbnail only.
Forum: Plugins
In reply to: [Grid Plus - Unlimited grid layout] Add Grid (admin) page is blank?Another way to fix the issue is to rename the file
/assets/js/backend/settings.min.js
to
/assets/js/backend/settings.js
Which may be easier for some to implement.
Forum: Plugins
In reply to: [Grid Plus - Unlimited grid layout] Add Grid (admin) page is blank?RESOLUTION FOUND:
Content in grid-plus.php line 99 was recently updated by the plugin author.
//wp_register_script(‘grid-plus-settings’, G5PLUS_GRID_URL . ‘assets/js/backend/settings.min.js’, array(‘wp-util’), true, true);
wp_register_script(‘grid-plus-settings’, G5PLUS_GRID_URL . ‘assets/js/backend/settings.js’, array(‘wp-util’), true, true);The file settings.js does not exist. Looking at the content of settings.min.js in the /assets/js/backend/ directory nothing has changed in the file from version 1.2.5 and 1.2.7.
I do not know if the author intended to package up a new settings.js file. However, the fix I found was to update this line of code as follows:
wp_register_script(‘grid-plus-settings’, G5PLUS_GRID_URL . ‘assets/js/backend/settings.min.js’, array(‘wp-util’), true, true);
This points to the file which does exist and the settings page loads as expected.
Forum: Plugins
In reply to: [Grid Plus - Unlimited grid layout] Add Grid (admin) page is blank?I have just updated the latest version 1.2.7.
I know this worked in 1.2.5. I do not know if the issue started for me with either 1.2.6 or 1.2.7.
Plugin is essentially broken at this time! ??
Update: Reverted back to 1.2.5 since I had the plugin files on my local system. I am able to confirm everything works with this version.
- This reply was modified 5 years, 1 month ago by Jeremy.
Sounds great. Thank you.
I have actually found wp_get_attachment_image_src is called a couple of times in the plugin. Though the one in the grid.plus.base.class.php was the only one I needed to update.
Emailed the developer asking to update the plugin with this fix.
Self resolve.
https://developer.www.ads-software.com/reference/functions/wp_get_attachment_image_src/
Changed grid.plus.base.class.php line 313 to call the default of ‘thumbnail’, instead of ‘full’.
$orig_image = wp_get_attachment_image_src($attachment_id, ‘full’);
$orig_image = wp_get_attachment_image_src($attachment_id);
Anyone who is interested in speeding up their page load, improving their Google page speed test score will probably be interested in this.
Suggest this is included in the next update.
Leaving as unresolved, as though I have my fix I would like to see this update published to the wider audience.