tapiohuuhaa
Forum Replies Created
-
Forum: Plugins
In reply to: [AI Power: Complete AI Pack] Missing Stable Diffusion Api and DALL-E license.I get Stable diffusion to work but it is for me useless. That is as bad as Imajinn AI, which can’t generate proper photorealistic images (uses stability ai). Maybe usefull in some other cases.
I get also added credits. DALL-E works but for my primary purposes free Webjoyrney mjght be better. It did better images for my primary purpose.
BTW. The plugin has also integration to pixabay. Can you say if the image below is made by human or AI:
https://pixabay.com/illustrations/bench-lantern-park-rain-night-1374736/
- This reply was modified 1 year ago by tapiohuuhaa.
- This reply was modified 1 year ago by tapiohuuhaa.
- This reply was modified 1 year ago by tapiohuuhaa.
Forum: Plugins
In reply to: [AI Power: Complete AI Pack] Missing Stable Diffusion Api and DALL-E license.I have api key, but https://platform.openai.com/api-keys does not tell if it relates witn ChatGPT or DALL-E.
I’m not interested on chatbox but just DALL-E.
Forum: Plugins
In reply to: [AI Power: Complete AI Pack] Missing Stable Diffusion Api and DALL-E license.Non relevant content deleted.
- This reply was modified 1 year ago by tapiohuuhaa. Reason: I solve problrm myself
Forum: Plugins
In reply to: [Filestack Official] Shortcode problemIt was wrong shortcode. But “Select Files to Upload” failed to upload images. I did’t get the selected image to the edit box.
- This reply was modified 1 year, 1 month ago by tapiohuuhaa.
Forum: Plugins
In reply to: [GD bbPress Tools] Quote has not wrapper divI hope that designer if the plugin makes correspinding changes.
Forum: Plugins
In reply to: [GD bbPress Tools] Quote has not wrapper divI edited front.js and front.min.js and added after </blockquote><p class=”after-quote”><span class=”after-quote”></span></p>.
I added span if editor drop empty P tag. With classes it is possible to set margins uf necessary. Anyway now user don’t need to think how to terminate quote and continue writing his own text.
Forum: Plugins
In reply to: [GD bbPress Tools] Quote has not wrapper divWrapper does not solve the problem. The only way to get result, which is not extremely difficult for most users and for all users irritating is to add P-tags. TinyMCE handle blockquotes so irritating way that there is ni’o other solution for TinyMCE to get quotes to work non-irritating.
Forum: Plugins
In reply to: [GD bbPress Tools] Quote has not wrapper divQuote has wrapper AFTER creating comment. Creation of extra code should be when users WRITE comments. With TinyMCE it is extremely difficult to stop writing blockquote and creating after it extra content.
If there could be automatic additional <p></p> after the closing tag </blockquote>, it would be easy to continue creating extra text. Everybody, who has used quotes have problems with them – I survive, but I don’t like the current situation. It is simply extremely annoying!
Forum: Plugins
In reply to: [Post Editor Buttons Fork] Doesn’t work in front-end in bbPressI found files, which must edit: wp-includes/js/quicktags.js and
wp-includes/js/dist/blocks.js
I replace DEL-tags with SPOILER-tags
Forum: Plugins
In reply to: [GD bbPress Tools] Translating into finnishI didn’t get frontend texts translated in your GD bbPress Tools. I deleted entire translation, which I made for it because filtering worked better, but filtering works only for texts, which don’t have dynamic texts (%s etc). I get with “My WP Translate” translated “WP Sitemap Page”, so the translation tool works.
Forum: Plugins
In reply to: [GD bbPress Tools] Translating into finnishMy WP Translate used for this plugin translation file, which has as part of the name gd-bbpress-attachment. Does this plugin incorrect file references?
Forum: Plugins
In reply to: [Post Editor Buttons Fork] Doesn’t work in front-end in bbPressI would lije to fork the cire code of WordPress concerning editors. I found TinyMCE related fike but I didn’t find where te’he button set if the text editor has been defined. I would fork the front-end side.
Forum: Plugins
In reply to: [Code Snippets] How to retrieve a deleted Snippet.They are immediately deleted. There is no trashing system for this plugin. A snippet is just active and inactive. If you delete it you can’t get it back.
You may find the deleted record back from some backup copy of your database by searching deleted field and using an SQL-command to get it back to the working database.
Make next time a security copy by using the “Clone” functionality.
Forum: Plugins
In reply to: [Code Snippets] is_front_page() error messageThe code doesn’t do anything:
- “add_action(‘wp’, function…
” doesn’t have a valid name. In the name of actions “wp” is prefix and needs always something after. I presume that in this case you need apparently “wp_head”. - PHP-function inside JavaScript in this case doesn’t do anything. If you want PHP to create conditional code together with JavaScript, you should split JavaScript into several parts or put the PHP function outside from the JavaScript code
The following code creates JavaScript, if the page is front page.
<?php add_action('wp_head', function(){??if( is_front_page() ) { ?> <script> window.addEventListener("load", function() {console.log("front page") };); </script> <?php } });
Note in the end additional ‘}’.
You can create JavaScript in several parts, but you need more code. If you use PHP-functions, you must separate them from JavaScript.- This reply was modified 4 years, 7 months ago by tapiohuuhaa.
- This reply was modified 4 years, 7 months ago by tapiohuuhaa.
- This reply was modified 4 years, 7 months ago by tapiohuuhaa.
- This reply was modified 4 years, 7 months ago by Yui.
Forum: Plugins
In reply to: [Code Snippets] Bad snippet cause site to crashUse phpMyadmin and delete with it invalid snippet. The worst issue with Code snippet is that it can’t check, if some function has been defined elsewhere or not.