transpersonal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can’t use iframe in postNever mind, it was my theme that was the problem. The iframe works fine in the default Cubrik theme so I have to see what the problem is with my current theme.
Forum: Fixing WordPress
In reply to: Usermenue after login / UserFrontendNot sure this will help but this is what I used to use:
<?php global $user_ID, $user_identity, $user_level ?> <?php if ( !$user_ID ) : ?> <a href="http://www.YourSite.com/wp-login.php">Log in</a> | <a href="http://www.YourSite.com/wp-login.php?action=register">Register</a> <?php else : ?> Welcome <strong><?php echo $user_identity ?></strong> | <a href='<a href='<?php echo wp_logout_url(); ?>&redirect_to=/'>Logout</a> <?php endif; ?>The above code will show two text links:
Log In | Register
After logging in the page will show this message:
Welcome NAMEOFUSER | Log Out
—————–
If you want users to be able to write and edit posts, you need to go to Settings >> General and change New User Default Role from Subscriber to Author. To acess the dashboard the user will need to go to:
For more on user roles see this:
Forum: Fixing WordPress
In reply to: http://www. works, http:// doesn’tIf you want just http:// you can go to settings >> general and change your blogs address to http://myblog.com there.
Forum: Fixing WordPress
In reply to: Its official I am a moron, help with login requiredI don’t know about WordPress for Morons but there is a WordPress for Dummies book 😉
Forum: Fixing WordPress
In reply to: Embed Youtube Videos in PostTry changing the default player size. Download the plugin’s page via ftp and do a Control + F to open up the find dialog box, type Youtube and change the width and height values to suit your taste. Save and upload.
Forum: Fixing WordPress
In reply to: Why cant I use relative paths to my images ?Not sure what the problem is because for my theme I can use relative paths. I guess it’s because I have a images folder inside my theme’s folder.
it will take me AGES to go through and manually change the links to all my images !
For this problem you can use this plugin (a lifesaver):
Forum: Fixing WordPress
In reply to: text linkthat opens video? PLEASE help!This plugin does exactly that:
I think the image url’s need changing. Try making a database backup. Then download another DB copy. Open this in an html editor and do a search and replace for your old image path to your new image path. Then save and upload the new DB copy.
Forum: Fixing WordPress
In reply to: Insert image from URLI think websites that have large site directories with associated screen shots put them there manually. Otherwise you need some complex spidering program to do what you are asking for. If I needed to do this I would just hit the Print Screen key and resize the image in an editor and upload and link that.
Forum: Fixing WordPress
In reply to: Embed Youtube Videos in PostThis is arguably the best plugin to post embedded videos from not only youtube but a ton of other sites:
http://wordpress.org/extend/plugins/wordpress-video-plugin/
After activating the plugin, use this syntax to embed videos:
[youtube vIwm9jUjLvk]
The “vIwm9jUjLvk” is the numbers/;letters you get after the v= in a youtube video’s page url.
If you want a different size then the default, you can use:
[youtube id width height]
For more see this:
Forum: Fixing WordPress
In reply to: Its official I am a moron, help with login requiredIf you want to comment you can just do so using your admin account. If you want others to register to post comments make sure the “Anyone can register” check box in Settings >> General is checked. Whoever wants to register needs to go to:
http://www.YourSite.com/wp-login.php?action=register
and after registering they need to log in at this address:
Forum: Fixing WordPress
In reply to: Need help pleasDid you get this from the footer of a theme released by web2feel? If so I say forget the stupid warning and replace it with the following:
<div class="clear"></div> <div id="footer"> <center>Copyright ©2009 YourSite.com - All Rights Reserved.</center> <?php wp_footer(); ?> </div> </body> </html>Forum: Fixing WordPress
In reply to: Disable Spellcheckhttp://wordpress.org/extend/plugins/tinymce-advanced/ this plugin may be able to be used for that.
Forum: Fixing WordPress
In reply to: What is the code to list the most popular tags?Yes, that’s what I meant. I actually don’t want the tags that have been used the most to show. What I want is the Tags that haven been associated with the most popular posts to show in order.
For example, if I have a post called “Dogs” that has 100 views and used the tag “animal” for that post. And I also have a post called “Shoes” which got 50 views and used the tag “Clothes” for it. Then I want Dogs to appear in list format before Clothes.
Kind of like a popular posts list but instead of the post title I want the tags for the post to show (in a list format).
Forum: Fixing WordPress
In reply to: How can I enable WYSIWYG view for custom fieldsThanks a lot esmi and t31os_. This is what I’m doing now. I am using this in my template:
<?php $website1 = get_post_meta($post->ID,'website1',true); if($website1) echo '<a href="'.$website1.'">'.strip_tags($website1).'</a>' ?> <br /> <?php $website2 = get_post_meta($post->ID,'website2',true); if($website2) echo '<a href="'.$website2.'">'.strip_tags($website2).'</a>' ?> <br /> <?php $website3 = get_post_meta($post->ID,'website3',true); if($website3) echo '<a href="'.$website3.'">'.strip_tags($website3).'</a>' ?>and this in the Custom Field Template (with the “In case that you would like to add p and br tags in textareas automatically” option unchecked):
[website1] type = textfield size = 35 hideKey = true [website2] type = textfield size = 35 hideKey = true [website3] type = textfield size = 35 hideKey = trueThis works great. Thanks again guys for the help!