WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show comment count in meta description?Forum: Fixing WordPress
In reply to: Redirecting to my main websiteCan we get a hint where you did this?
In wp-admin?
In .htaccess?
In cPanel?
At domain registar?
Using javascript on specific page?
A 301 redirect plugin?There is a lot of ways to do this and each requires a different answer.
Forum: Fixing WordPress
In reply to: How to make my theme responsiveThis is not going to be an easy answer. There is a lot that needs to be done to make it responsive.
If you dont understand CSS that well maybe you should look into a plugin that will display a mobile site for you.
Forum: Fixing WordPress
In reply to: Make entire sidebar widget a link?Wrap everything in
<a href="">widget code</a>.But how to do it greatly depends on your theme and what widget type it is.
Forum: Fixing WordPress
In reply to: Error Shortcodes Too Few ArgumentsIs this the elegantthemes or the free theme found here in the directory?
If it is the eleganttheme you should ask their support.
Forum: Fixing WordPress
In reply to: customize pages list on widgetI only see 2 text widgets and tag widget.
I dont see a widget title Pagine
Forum: Fixing WordPress
In reply to: permalinks on, no pages workFind .htacess in your root folder and make sure this is what it looks like.
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressForum: Fixing WordPress
In reply to: permalinks on, no pages workTurn on permalinks from general > permalinks and select the output there. Do you get the same problem?
Forum: Fixing WordPress
In reply to: Can't access my new WordPress site.How did you create it? Did you use 1 click install, fantastico, or something that created the site for you?
If so go back in your cPanel and find where it lists that you did install it. It will contain a link to your live site that it made. Click it.
If it still gives you an error contact Hostgator support.
Forum: Fixing WordPress
In reply to: customize pages list on widgetCan you give a link to your site?
Your widget you are using might not attach the right CSS in the output to allow you to target it through CSS.
Forum: Fixing WordPress
In reply to: How To Use HyperlinkYes it looks like a chain in the VISUAL view when editing the page. Is that what you mean?
Forum: Fixing WordPress
In reply to: WP Adding Linebreaks: Not using Pages as a way outI have been through this so I know how you feel. To fix the shortcode problem what worked for me is to put them next to each other instead of on a new line.
So instead of doing this
[myshortcode]
[anotherone]I did this
[myshortcode][anotherone]
and it didn’t add a paragraph. Your theme might be different and you might need to do some CSS stuff to get it done though.
Forum: Fixing WordPress
In reply to: The pages won't publishHere is how to reset your plugins.
Forum: Fixing WordPress
In reply to: Pictures DisappearingWell I can tell you I can see it on my computer on FF/IE/CHROME.
Only guess at this one is clearing browser cache and refreshing.
Forum: Fixing WordPress
In reply to: Removing 'Posted by admin' and 'Bookmark the permalink.'Assuming you mean this theme
http://wordpress.org/extend/themes/newschannel
To remove those add this to your style.css to get rid of those.
.entry-meta { display: none; }