LRigel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disable Responsive Mobile MenuWill try, thank you.
Forum: Fixing WordPress
In reply to: Site randomly freezes, not loadsNevermind. It was a server issue. Upgraded the server and problem went away.
Forum: Reviews
In reply to: [NS Widget Recent Comments] Great workThanks for making this free. I’ve looked at about 3 other plugins but most were needlessly complex. This one’s perfect, and even I could edit it (I’m terrible at editing code).
Perhaps giving a few dashboard options (like changing text color, alignment, etc) would help users who are very bad at code. Anyway, thanks again.
Forum: Fixing WordPress
In reply to: Failed update?I upgraded to 4.0 and had to downgrade recently. I explained my process here (but don’t hate me if you screw up your site). Just know that my process worked for me, and I now run WP 3.9.2 and everything is ok
http://ww.wp.xz.cn/support/topic/how-to-downgrade-from-wp-40?replies=4
Forum: Fixing WordPress
In reply to: How to downgrade from WP 4.0It sure did. Thanks! I thought my day would only get worse.
So i finally downgraded. For any other amateurs reading, you can do this by first backing up (then later replacing) the following files (using a program like filezilla):
wp-adming (folder)
wp-includes (folder)and the following .php files located in the root folder, including:
index.php / wp-activate.php / wp-blog-header.php / wp-comments-post.php / wp-config-sample.php … all the way down to … wp-signup.php / wp-trackback.php / xmlrpc.php (there should be 15 .php files in total)
Leave the plugins and theme folders alone, unless maybe you’ve upgraded a theme or plugin with WP 4.0 (I haven’t). In either case, replace the files listed above with those from WP 3.9.2 and the site should go back to normal. Don’t hate me if something goes wrong, as this is the process that worked for me, and I didn’t upgrade any theme or plugin whilst under 4.0
Make sure to back up your site. In case something fails, you will at least not lose everything. WP asked me to update my database, I clicked ok, everything is now back no normal. Thanks. No updates for me for awhile that’s for sure
Forum: Fixing WordPress
In reply to: How to downgrade from WP 4.0A Dashboard issue.
Ah and it appears that I can’t center my videos anymore. How awesome…
I just want my website to work. It worked before, it doesn’t work as well now.
Forum: Fixing WordPress
In reply to: How to downgrade from WP 4.0I don’t care for none of that as I don’t need any of it. I work on a laptop with a narrow resolution and with long (1k word) posts. I don’t need extra scrolling – it only wastes my time. That’s all I got for it unfortunately.
Forum: Plugins
In reply to: [Site Layout Customizer] Post Limit, Alphabetical Sorting and Title SizeScratch number 3.
To change the limit on posts, simply open the php file and use your text editor to find the number ’30’ eventually, you’ll find a line that looks like ‘<option ‘.$sel[30].’ value=”30″>30</option>’. Change the number 30 with whatever number you want, like 60, 80 or 99
I read that numbers over 99 produce errors
I would like to know how I can lower the title font
Forum: Fixing WordPress
In reply to: Static homepage / categoryWhat I meant was ‘regardless of the theme you use’.
Forum: Fixing WordPress
In reply to: Static homepage / categoryYou can choose to display either your recent posts or a static page that you create. I think that issuing the static page as your homepage is possible regardless of plugin. go to dashboard / appearance / customize. you should find the option there.
Forum: Fixing WordPress
In reply to: Only variables should be assigned by reference inI get the 404 error.
Probably not much help, but all I can tell you to go to Dashboard/Appearance/Menus and update the menu bar with the correct links.
Forum: Fixing WordPress
In reply to: Suggestions for WP site?That looks promising. thanks for the help
Forum: Fixing WordPress
In reply to: Reduce padding inside WP tablesIn the end I’ve figured it out. Apparently, it had nothing to do with my table.
I added
<div style="line-height: 1.0em;">to my container div, which I also listed in my original post. It lowered the space between text lines. So the div containing all of my tables now looks like this-<div style="line-height: 1.0em; float: right; margin: 2px 2px 2px 2px;"> </div>It seemed to have fixed the issue.
Forum: Fixing WordPress
In reply to: Reduce padding inside WP tablesThanks. Basically I’m looking a way to override the default cellspacing/cellpadding values. I guess I’ll look into it some more. I didn’t think it would be a problem mixing HTML and CSS (I thought that since WP supports both of them, why not mess around).