x500.net
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show Post Date?hmm… you really need to change the template code in order to make it display something else than what it’s there at present.
Forum: Fixing WordPress
In reply to: Permalink structure removing part of URLtry echo’ing the variable that suppose to contain the ‘products’ string and see if it’s still there.
Forum: Fixing WordPress
In reply to: Can't write or edit page or articles — timeoutdo you want to try this before messing with the WP code?
Forum: Fixing WordPress
In reply to: Larger Audio Files; what's the preferred method?add this to the theme functions.php file
@ini_set( 'upload_max_size' , '64M' ); @ini_set( 'post_max_size', '64M'); @ini_set( 'max_execution_time', '300' );
or this to php.ini file
upload_max_filesize = 64M post_max_size = 64M max_execution_time = 300
or this to .htaccess file (if you use apache)
php_value upload_max_filesize 64M php_value post_max_size 64M php_value max_execution_time 300 php_value max_input_time 300
or just use sound cloud or other music hosting site.
Forum: Fixing WordPress
In reply to: Can't write or edit page or articles — timeoutany custom rewrite rules added to .htaccess?
Forum: Fixing WordPress
In reply to: Permalink structure removing part of URLIs the link echo’ed by the_permalink() function or is it built of custom variables?
Forum: Fixing WordPress
In reply to: guide redirect permalink .htmlif you change to just /%postname% , the .html will not work. you need to be exact when setting up the permalink structure. if you want your posts to be visible under link.html, make sure you add the .html so it reads:
/%postname%.html
Forum: Fixing WordPress
In reply to: different colors menu wordpressPlease note that :nth-child selector in Internet Explorer works since version 9. You’ll need to use JavaScript code such as https://selectivizr.com/ or IE9.js to make it work in IE8 and earlier.
Forum: Fixing WordPress
In reply to: different colors menu wordpressadd css class to each menu element and style each class in style.css file.
Forum: Fixing WordPress
In reply to: guide redirect permalink .htmlis it exactly
/%postname%.html
??Forum: Fixing WordPress
In reply to: guide redirect permalink .htmlif you need .html at the end of the url, use /%postname%.html
Forum: Fixing WordPress
In reply to: guide redirect permalink .htmldashboard->settings->permalinks
custom structure: /%postname%
save changesForum: Fixing WordPress
In reply to: How to change the no-results.php texteither way, the most important is that you got it working now.
Forum: Fixing WordPress
In reply to: How to change the no-results.php textIt’s because of not escaped single-quotes.
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'sixhours' ); ?></p>
make it
<p><?php _e( 'Sorry, I haven\'t written anything like that yet. Please send me a message and I\'ll answer it for you.', 'sixhours' ); ?></p>
notice backslashes right in front of single-quote characters.
Alternatively, you can write it this way:<p><?php _e( "Sorry, I haven't written anything like that yet. Please send me a message and I'll answer it for you.", 'sixhours' ); ?></p>
so you replace the opening and closing single quote with double-quotes
Forum: Fixing WordPress
In reply to: How to change the no-results.php textpaste your no-results.php file here