HairyPotter
Forum Replies Created
-
Forum: Reviews
In reply to: [TinyMCE Custom Styles] WORKING FINALLYI have finally discovered the problem. For some reason, the shared css file was being created using some wrong encoding. I discover that when I saw the file from terminal. I created a new shared file using VI and everything worked fine. Thanks.
Forum: Reviews
In reply to: [TinyMCE Custom Styles] WORKING FINALLYNot requested at all. Oh yeah both CSS are where I told the plugin.
That installation of wordpress is brand new. I have installed it a couple of days ago for testing purposes only, not to work on the production site. The theme it is using is basically the 2021 slightly modified. I have just 3 plugins installed: yours, classic editor and Advanced editor Tools (previously TinyMCE Advanced).
I have switched to regular 2021 theme and the problem persists.
I have reinstalled wordpress and now your plugin is loading the shared css but the problem persists.
thanks for the support given.
- This reply was modified 2 years, 11 months ago by HairyPotter.
- This reply was modified 2 years, 11 months ago by HairyPotter.
- This reply was modified 2 years, 11 months ago by HairyPotter.
Forum: Reviews
In reply to: [TinyMCE Custom Styles] WORKING FINALLYThanks for your answer.
Network shows the plugin style is not being loaded. I can force the frontend style by loading it on header. Is there a way to do the same for the editor?
Forum: Reviews
In reply to: [TinyMCE Custom Styles] WORKING FINALLYThis is how I have created the style
Forum: Reviews
In reply to: [TinyMCE Custom Styles] WORKING FINALLYI have tried what you suggested. Problem continues.
Forum: Reviews
In reply to: [TinyMCE Custom Styles] WORKING FINALLYHi, thanks for your message.
For example, I have this code on a page
<p class=”abc”>HELLO WORLD</p>
and this css
.abc?{ font-style: italic; color:#444; line-height: 1.6; letter-spacing:1px; font-family: 'Fuzzy Bubbles', cursive; font-family: 'Open Sans Condensed', sans-serif; font-family: 'Shadows Into Light', cursive; font-size: 1.2em; }
on both
editor-style.css
andeditor-style-shared.css
.Styles are not applied anywhere.
I have tried
p.abc { // bla bla }
and nothing
If I do
p?{ font-style: italic; color:#444; line-height: 1.6; letter-spacing:1px; font-family: 'Fuzzy Bubbles', cursive; font-family: 'Open Sans Condensed', sans-serif; font-family: 'Shadows Into Light', cursive; font-size: 1.2em; }
then it applies the style to all paragraphs.
- This reply was modified 2 years, 11 months ago by HairyPotter.
Forum: Everything else WordPress
In reply to: What are these comments containing an excerpt of the pageBrilliant, thanks!!!!
Forum: Everything else WordPress
In reply to: What are these comments containing an excerpt of the pageThanks for the answer.
These appear on comments.
Is there any benefit to my site if I approve them?
Is this spam?
Forum: Fixing WordPress
In reply to: plugin for immediate removal of spamThanks. I use askimet but all spam detected goes to the spam tab. I want these emails to be deleted immediately and never go to that spam tab on wordpress, or in other words, to never be stored on the database.
If wordpress detects a spam why is that spam stored? I don’t want to review them. I want them to be vaporized after being detected as spam.
Forum: Fixing WordPress
In reply to: WordPress fails with large databasesso, you have a blog with 6,000 categories running on wordpress, what would you do to display the categories?
Forum: Fixing WordPress
In reply to: WordPress fails with large databasesThese queries worked fast 0.0650 seconds. The problem is really with wordpress or more probably with php. Believe me. Imagine the time and memory that should be used by a query to list all 6,000 categories alphabetically. Php will never do that. It will timeout or crash before.
Forum: Installing WordPress
In reply to: Need help with upgrade to 2.3.3 (posts not displaying)upgrading wp process is really disgusting. As wordpress, the upgrade process is designed to small databases, sites with no more than 20,000 posts. Have you ever tried to upgrade from the browser a site with 120,000 posts and 6,000 categories? hahaha… upgrading from a browser sucks to infinity +1, it will never go thru and you will end jumping from a bridge.
Forum: Installing WordPress
In reply to: “wp_categories’ doesn’t exist” error in database wp 2.3I agree completely, when I read the explanation about “the famous 5 minute installation” I knew it would be a nightmare. I am trying to update my wordpress installation since yesterday. 22 hours trying… zillions of errors.-.. 5 MINUTES, THEY SAY…. I had to restore the database 3 times and try different methods. This upgrade via browser sucks to infinity + 1. Instead of developing a shell program that could update that, a genius developed a php program to upgrade via browser. If you have a large database, of course the browser window will time out and you will be in hell.
Forum: Fixing WordPress
In reply to: WordPress fails with large databasesSCREENER: I am not making the calls. WP is and version 2.3.3 is worst than 2.2. The old version can access the database faster.
PINOY.CA: Yes it is a dedicated server and the MySQL server is on the same box.
the full use of wp_create_categories is
wp_create_categories ($category_name, $post_id)
In this case, it will create a new category in the case the one you are trying to assing do not exist.
The problem is that this is theory and do not really works. Not for me.