wptorgue
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Set posts per page category to oneYou need to set up a different template for either home or the category page, and in this template – configure your new limit (or extension, depending on you want your site to mostly show 1 or mostly show all).
use the help of WP_Query.
This is probably best asked to the specific developer of the event manager plugin. Try the plugins page, or the developers webpage.
Forum: Fixing WordPress
In reply to: No links in search resultsYou will need to set up a link somewhere on the page. I recommend using the default option; in the <h2> title of the post, like so:
<h2><a href='<?php echo get_permalink($post->ID)?>'><?php the_title(); ?></a></h2>
or similar
The permissions, unless php is running as root (highly unlikely) is not enough. The file permissions are simple sets of three, ReadWriteExecute – again in pairs of three, Owner, Owners Group, Anyone, in your case: Owner: ReadWriteExecute; Group: ReadExecute; Anyone: ReadExecute;
Most likely the user PHP/Apache is not the owner of the folder. Therefore enable write for group/anyone.
How did you make database 2 ? did you copy the content of database 1 to database 2
Forum: Fixing WordPress
In reply to: page brokenMarked as spam. Reference to site which refers to illegal content
Forum: Fixing WordPress
In reply to: How do I remove option to post from front page of my website?You double posted this, but Ill give it a go anyway.
The frontpage has comments on it, because the theme you use, lists posts. Posts are by default comment-enabled, and even when not, they often show the text “Comments disabled”.
Your best option is to
1) disable comments completely within wordpress – in the settings, and
2) alter the theme a bit, to completely avoid any reference to comments.– There you have it; comments gone from sight, not from engine
Forum: Fixing WordPress
In reply to: How to redirect old links indexed by Google?You can use one of the multiple plugins to handle this, or you can alter you .htaccess file. You need to make complete list of what urls are “lost” and what urls are the new versions of the “lost” ones.
This is a procedure best done before moving.
Forum: Fixing WordPress
In reply to: Simple 'read more' problem, probably a quick answer?!You can filter the excerpt links, like so;
function new_excerpt_more($more) { global $post; return '<a href="'. get_permalink($post->ID) . '">Read the Rest...</a>'; } add_filter('excerpt_more', 'new_excerpt_more');
Source: https://codex.www.ads-software.com/Function_Reference/the_excerpt
“Error, the file permissions could not be set” is usually a problem with the folder-persmissions on your upload folder. Can you list the permissoins each uploadfolder has?
Typical solution:
Try doing a chmod +w /wp-content/uploads on your server, this might resolve the problem. This is done often through FTP programmes, select the folder and find the “Folder attribute” option in you FTP programme.Forum: Fixing WordPress
In reply to: Fiddling around with wp_nav_menuAny idea how to, without CSS, show only the menu which is currently selected, in wp_nav_menu ?
Forum: Fixing WordPress
In reply to: Using htaccess to 301 redirect, not workingyes indeed I do ??
First of all – the wordpress rules are redirecting every URL (that are not real files or directories) to index.php. So – this means that the .htaccess file will never execute your last rules of redirects.
However; in your case that wouldn’t do much of a difference; you see – htaccess files are a bit more tricky than common logic dictates: You might very well experience, if you move your “Redirect 301” lines above the mod_rewrite rules, that they will still have no effect – mod_rewrite always gets executed BEFORE any redirect statements.
So; you will have to convert them to “RewriteRule” statements instead I am agraid.
(so in conclussion: 1) move the three lines ABOVE the #being wordpress. If this works – hurray. 2) convert the lines to rewrite lines instead.
Forum: Fixing WordPress
In reply to: Deleting a Phantom PageDo you have any idea how to use PHPmyadmin (or any other mysql tool)? You might be able to go into the database itself and locate it there – search for anything with slug “blog”.
maybe the error are in the rewrite rules wordpress itself makes, so try looking into these (also in mysql).
Sorry, thats all I can come up with.
Forum: Fixing WordPress
In reply to: Extra unwanted characters in URLIt looks like you have some kind of javascript plugin that alters your URL. Try to toggle your Javascript on/off to see what is causing it (it looks like a trackingcookie)
Forum: Everything else WordPress
In reply to: Feed for replies on THIS forumIf the feature list is to be opened;
– it would be sweet to have some ajax script load and append html if any answers has been made to a post, before one posts a duplicate answer
– my list of posts, including new posts-comments since last login (i dont want to check the “notify me with email” on the posts i comment)
– live updated lists, if possible (posb. just a jquery lookup/table refresh)