sillydwa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress adress delited from the admin panelyour welcome π
Forum: Fixing WordPress
In reply to: Page Content is not showingidk have you tried re creating the pages on a new page maybe call it test-about and then if that works delete old about file and rename the new file appropriately…
Forum: Fixing WordPress
In reply to: ImagesWhen i click on the link to your pictures not showing up in your post the address is http://i2.wp.com/polkadotsandcurry.com/wp-content/uploads/2015/03/P1080771.jpg what is the i2.wp.com in front of the piture. should the url not be http://www.polkadotsandcurry.com/wp-content/uploads/2015/03/P1080771.jpg ??
i goto i2.wp.com and it gives me some sorta invalid parameters error
Forum: Fixing WordPress
In reply to: WordPress adress delited from the admin panelopen your wp-config.php file using your ftp and add
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Change http://www.example.com to your site url
Forum: Fixing WordPress
In reply to: How to increase my logo size?I use a plugin to change around my css code. I use Simple Custom CSS
from my browser it looks to me like your logo is stored in a class called
.oi_logo_placeso for me the simplest thing to do is use the plugin and change the css associated with your logo.Hope this may help you
Forum: Fixing WordPress
In reply to: Register linkAbsolutely Beautiful!!! That worked!!! You my friend are awesome π thanks for the quick help!!!
Forum: Fixing WordPress
In reply to: Trackback Spamhttp://akismet.com/
Used by millions, Akismet is quite possibly the best way in the world to protect your blog from comment and trackback spam. It keeps your site protected from spam even while you sleep.Forum: Fixing WordPress
In reply to: Register linkok so this particular code is working for the login and logout
add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2); function add_login_logout_link($items, $args) { ob_start(); wp_loginout('index.php'); $loginoutlink = ob_get_contents(); ob_end_clean(); $items .= '<li>'. $loginoutlink .'</li>'; return $items; }how would i modify this to show register if the user is logged out and not if the user is logged in.
I made a boo boo and posted code from an old site originally I apologize for the confusion
Forum: Fixing WordPress
In reply to: Register linkI added the code as follows
add_filter( 'wp_nav_menu_items', 'add_loginout_link', 10, 2 ); function add_loginout_link( $items, $args ) { if($args->theme_location == 'primary-menu') { if(is_user_logged_in()) { $items .= '<li><a href="'. wp_logout_url() .'">Log Out</a></li>'; } else { $items .= '<li><a href="'. site_url('wp-login.php') .'">Log In</a></li>'; $items .= '<li><a href="'. site_url('wp-login.php?action=register') .'">Register</a></li>'; } } return $items; }it has made the login / Logout Link disappear and all that is shown is the Register link.
Forum: Fixing WordPress
In reply to: Import failure: 2 posts cut off prematurely / incompletealso there is some other things i noticed with posts on your site..
https://prudentaberration.wordpress.com has a wider width than
http://prudentaberration.comhttp://prudentaberration.com/category/south-america/ is missing some of the pictures that are on https://prudentaberration.wordpress.com/category/south-america/
I dont know if you noticed that or not.. just thought I would bring that to your attention as that may be a sign or something bigger????
Forum: Fixing WordPress
In reply to: Import failure: 2 posts cut off prematurely / incompleteπ np, just throwing ideas in the air π Like I said i’m new so don’t hate me for that π
Forum: Fixing WordPress
In reply to: This is insane. A rant…It was a learning curve for me as well I am very new to WordPress but it is by far the easiest of the CMS (imho), The plugins are amazingly simple to use. The hardest thing that I find with WordPress is getting a host(free) that allows all the WordPress Functionality. I have yet not to find a solution to anything that I needed done.
Forum: Fixing WordPress
In reply to: Import failure: 2 posts cut off prematurely / incompleteI noticed that your original link is
https://prudentaberration.wordpress.com/2014/09/25/land-of-the-wange/
which has a 2014/09/25 in the address but the cut off one is http://prudentaberration.com/land-of-the-wange/ with no 2014/09/25I am new to wordpress and I have come to realize that WordPress can be very picky at times.. I don’t know if that is the problem but maybe your PermaLinks are causing the issue?