x500.net
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with Chrome and Displaying the Entire Length of Page/Poststyle.css, comment out line 34
current:.post_single { float: none !important; width: 100% !important; }
change to:
.post_single { /* float: none !important; */ width: 100% !important; }
Forum: Localhost Installs
In reply to: Is there a simple way to change name?First change WP path settings in Dashboard->Settings->General and then rename the folder.
More info can be found hereForum: Fixing WordPress
In reply to: Syntax Error. Site Gone. Help Neededcan you post code from the option.php file?
Forum: Fixing WordPress
In reply to: Collapsing categories?Forum: Fixing WordPress
In reply to: Display order of category namesOne possible solution could be to rename category slugs and then order terms by slug.
The only difference you’ll notice will be the url, so instead of https://www.example.com/category/ernest-hemmingway you’ll have https://www.example.com/category/hemmingway-ernest$taxonomy = 'category'; $param_type = 'category__in'; $term_args=array( 'orderby' => 'slug', 'order' => 'ASC' );
More about get_terms function here
Forum: Themes and Templates
In reply to: which theme or modified theme si this?from the css file
/*
Theme Name: In i vildmarken
Theme URI: https://www.ads-software.com/
Description: The 2010 theme for WordPress is stylish, customizable, simple, and readable — make it yours with a custom menu, header image, and background. Twenty Ten supports six widgetized areas (two in the sidebar, four in the footer) and featured images (thumbnails for gallery posts and custom header images for posts and pages). It includes stylesheets for print and the admin Visual Editor, special styles for posts in the “Asides” and “Gallery” categories, and has an optional one-column page template that removes the sidebar.
Author: the WordPress team
Version: 1.2
License: GNU General Public License
License URI: license.txt
Tags: black, blue, white, two-columns, fixed-width, custom-header, custom-background, threaded-comments, sticky-post, translation-ready, microformats, rtl-language-support, editor-style, custom-menu
*/Forum: Fixing WordPress
In reply to: Hostname / FTP server for when installing a WordPress PluginIn order to use FTP protocol, you need to have an FTP server running. FTP server is not bundled with your XAMPP package, therefore you can not connect to your localhost via FTP.
Forum: Fixing WordPress
In reply to: flash file (.swf) upload to my media library is failed all the time.And when you navigate to the media library -> add new, right underneath the ‘Drop files here’ box, there should be info saying: Maximum upload file size: 2MB… is it 2MB or 8MB?
Forum: Everything else WordPress
In reply to: Finding helpPlease get in touch [redacted]
Forum: Fixing WordPress
In reply to: flash file (.swf) upload to my media library is failed all the time.Is the file too big? Is there enough space left in your hosting account?
Forum: Fixing WordPress
In reply to: multiple posts when you click a categoryWhat is set in dashboard->settings->reading?
Can you post your category.php file?Forum: Fixing WordPress
In reply to: HostingDo you have a backup of your website?
Forum: Fixing WordPress
In reply to: Favicon not appearing in address barYes, because in Chrome you only see favicons in the tabs and not in the address bar, and that’s how the browser works.
Forum: Fixing WordPress
In reply to: Search Images Outside of the Uploads / Media FolderAs a ready to use solution you may want to try this maybe? Never used it but looks like it does what you need to be done.
Forum: Fixing WordPress
In reply to: How do you Remove a Read More Button?A link would be nice. You first need to make sure that you edit the right file. The file for single post preview, category preview, default etc will be different. Add something to it to make sure you’re editing the right one, check other files too.
Here is the template hierarchy that may be helpful.