threestyler
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: hi, i am trying to customize my site by deleting post items…Change the folder permissions via FTP on the wp-content/themes/theme_name directory to 766. If you still have problems, try 767 or 777.
https://codex.www.ads-software.com/Changing_File_Permissions
Forum: Plugins
In reply to: in_category: Trying to not display content in subcategories… How?You could try including cats by id or excluding cats by id:
<?php query_posts($query_string . '&cat=3'); ?>
<?php query_posts($query_string . '&cat=-3,-4,-65'); ?>
Forum: Plugins
In reply to: Show posts category with navigationIf you just want to split a page up then use
<!--nextpage-->
Otherwise what you need is a special category template so when you view this category they are displayed differently from the default.Forum: Fixing WordPress
In reply to: total lock outI’m not sure where you think your deleting it but the file/theme still exists on your server.
Forum: Fixing WordPress
In reply to: total lock outpost the full contents of your functions.php in here.
Forum: Fixing WordPress
In reply to: Add spans to generated menuOh, I was confused as you were mentioning ‘link title’ I assumed you meant the posts title not the header navigation. So what you need to do is add the styling to the menu navigation in header.php inside the following div:
<div class="menu-header">
Forum: Fixing WordPress
In reply to: How To Get Pretty PermalinksSounds like WordPress was having trouble writing the redirect rules of your pretty permalinks to .htaccess
You could always try and manually add the redirect rules.
open .htaccess in your WordPress installation root and add the following:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
then change the permalink structure in the wp-admin panel to:
/%category%/%postname%/And see if that works. If .htaccess does not exist in your root then simply create a txt file htaccess.txt upload via ftp to the root and rename to
.htacess
Forum: Fixing WordPress
In reply to: Add spans to generated menuIs there loop-index.php in the template as well? you need to post the code from that instead.
you want to look for something like:
<h2><a href="<?php echo get_permalink() ?>"><?php the_title(); ?></a></h2>
and modify to your requirements:
<li><span><a href="<?php echo get_permalink() ?>"><?php the_title(); ?></a></span></li>
Forum: Fixing WordPress
In reply to: It won’t let me log in!You need to modify the url from phpmyadmin in your hosting cpanel.
In phpmyadmin select your wordpress database – then the wp_options table and edit the ‘siteurl’.
Forum: Fixing WordPress
In reply to: Redirecting issue – change index.php name?You need to take a look at 301 redirects via htaccess or a plugin.
Take a look at the following plugin example.
Forum: Fixing WordPress
In reply to: How to link page with sidebar widget category link?Can you post a link to the plugin you used to solve this in case anyone else has the same problem and comes across this post.
Forum: Fixing WordPress
In reply to: Add spans to generated menuyou need to wrap your code around
<?php the_title(); ?>
calls in the loops on whichever templates you want it to appear ie:index.php
single.php
category.phpetc
Forum: Fixing WordPress
In reply to: How to get WordPress to write the post linkThis is what you need:
<a href="https://facebook.com/share.php?u=<?php the_permalink() ?>&t=<?php echo urlencode(the_title('','', false)) ?>">Facebook</a>
Forum: Plugins
In reply to: Inserting Shelfari widget – how?In your WordPress admin panel under ‘Appearence’ Menu choose widgets, pick a ‘Text’ widget, paste in your code and drag it over to the sidebar area on the right. If it gives errors you may need the phpexec or php widgetify plugin that allow you to execute code in your site/sidebar.
OR
try this plugin
Forum: Plugins
In reply to: Show posts category with navigationCan you provide some more information:
- Which theme your using
- what your settings are in admin > settings > reading for number of posts
- the pagination plugin you are using
From what you have said you should be able to achieve this by simply changing the settings in the reading section of the admin panel to 10 posts and using the wp-pagenavi plugin.
Otherwise you could also limit the # of posts displayed via the loop but answer the above before we go there.