Quantcast
Channel: WordPress.org Forums » All Posts
Viewing all 130106 articles
Browse latest View live

cavalry on "Comments not working."


sioy on "How can I categorize my pages?"

$
0
0

I'm building a site with mostly pages so that it looks suitably web-sitey (rather than like a blog).

I would like to be able to categorize my pages (like you can with posts), this would make it easier to organize my menus using Display Widgets plugin which would allow me to specify which category a given menu appears on.

xdecimos on "wp_remote_post help"

$
0
0

Hey guys

I know that it shouldn't be as hard as it is but I can't get it to work somehow. I know that it may be easy to fix but I just started to learn all of this and yeah. Gotta teach myself all of that.
What I created so far is the link in order to retrieve the code.
After that I've got to get a request from api.twitch.tv/kraken/oauth2/token but it doesn't work somehow. What did I do wrong?

<?php

$usercode = $_GET['code'];

$args = array(
	'method' => 'POST',
	'body' => 'client_id=91th8b4i2ouxdfn660xojhu1eqfaonu&client_secret=dqhzi4h2k2rnb67bzbno9kva43uwmf9&grant_type=authorization_code&redirect_uri=http://decimo.net/token.php&code=', $usercode);

$answer = wp_remote_post('https://api.twitch.tv/kraken/oauth2/token', $args);
if( is_wp_error( $answer ) ) {
   $error_message = $answer->get_error_message();
   echo "Something went wrong: $error_message";
} else {
   echo 'Response:<pre>';
   print_r( $answer );
   echo '</pre>';
}
?>

I just get a blank page. Is it maybe because I put the file @root of WP-folder?

Thanks a lot

Nimhloth on "Images broken when uploaded"

$
0
0

I just set up a brand new WP for the student organization I belong to. I was trying to upload images from past events and it worked for the first 12 or so, but now every one I try to upload shows up as broken in the thumbnails and media library.

I have already tried disabling all addons and reverting to the default theme and still get the same problem.

smudgeyjoe on "Spammed to Death )-B Yikes!!"

$
0
0

All of a sudden tonight, I began to be overwhelmed with spam, the same comment to all my posts from a number of different places, all different senders. I'm a techie, but new to blogging and Wordpress. Since May 1. My site is not a For Profit site. I am a retired public school and now Bible teacher. 65 years OLD. I mention this because I'm hoping there is an alternative to CAPTCHA. My church uses CAPTCHA on the church website for prayer requests, and there is a significant problem for senior citizens, but not me (-; Too many CAPTCHAS are hard to read if you have really good eyes, and if your eyes are not good, they are impossibly frustrating. It is terrible when I have an emergency prayer request, am racing and desperate, and can't get my request sent because I can't get past CAPTCHA. If it is the only answer, I will do it, but I am really reluctant to. I really appreciate your help. They are dinging in just as I write this request for help. Thanks and God Bless

umdechai on "Display post title from page slug"

$
0
0

I want to display links to each post outside of the Loop.

This code works:

<ul class="nav">
<li><a href="#how"> <?php echo get_the_title(6); ?> </a></li>
<li><a href="#logistics"> <?php echo get_the_title(9); ?> </a></li>
<li><a href="#who"> <?php echo get_the_title(11); ?> </a></li>
<li><a href="#tips"> <?php echo get_the_title(13); ?> </a></li>
</ul>

But, it's calling the title based on the post ID. I want to call the title based on the slug. Any way to do that?

leo16983 on "Can't open link in new tab/window"

$
0
0

http://www.questionyourshrimp.com

none of my links now open in a new window for some reason, no sure when it happened but it used to.

example

www.questionyourshrimp.com/learn-more/

the links at the bottom of the page have this html but doesn't work

“Cheap Shrimp, Hidden Costs.” - // <a href="http://www.internationalreporting.org/shrimp/">CLICK HERE</a>

“Murky Waters” - // <a href="http://www.linktv.org/video/7119">CLICK HERE</a>

“Grinding Nemo” - // <a href="http://www.youtube.com/watch?v=MqW8V4Qjl1I">CLICK HERE</a>

please advise

many thanks

Leo

grahamjones on "Categories not working suddenly"

$
0
0

I have a serious issue with my categories. IN the Post Edit screen, the Category list is empty when the tab "All Categories" is selected. There are, though, several categories available, all of which have been available normally...! The "Most Used" categories does indeed list the most used ones, but if I select one, update the post, the selected category is not applied to the post.

I have deactivated plugins, but that had made no impact.

The theme has been in place for ages and all has been working OK previously.

What could be wrong?


simkisp on "Lost password - tried to edit functions.php to reset and now I can't access"

$
0
0

website is family-friendlyescapes.com
I lost the family-friendlyescapes.com/wp-login.php password and I cant retrieve view the email option.
I tried to edit the functions.php file as per many codex recommendations such as http://codex.wordpress.org/Resetting_Your_Password#Through_FTP
by adding this code to the functions.php file.

wp_set_password('password',1);

when I try to access family-friendlyescapes.com/wp-login.php i receive the following error:

Fatal error: Call to undefined function wp_set_password() in /home/content/02/10435102/html/wp-includes/functions.php on line 2

my functions.php file looks like this with the remaining lines un touched:

<?php
wp_set_password('admin',1);

/**
* Main WordPress API
*
* @package WordPress
*/

require( ABSPATH . WPINC . '/option.php' );

I can't see what I am doing wrong and really need to get access to my site as its for my wife and her new start up.

Any help greatly appreciated.

worldsimon on "My Menu is not updating even after deleting the whole thing!"

$
0
0

Hi There,
I am working with WordPress for a new site of mine and the menu is not updating. I completely deleted it at one stage and it is still there I have De-activated all my plugins and reverted back to the twenty-twelve theme and the issues still there. I do not understand and it is real frustrating me!
I would really appreciate so ideas here. I am a word press novice but this should be simple!
the site is http://www.prestigepropertyasia.com
Thanks

danielfooddiary on "Internal Server Error"

$
0
0

Can anyone help?

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@danielfooddiary.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

mattdodd113 on "Only display the first two posts in a category"

$
0
0

Hi there,

I'm new to Wordpress and my understanding of PHP is limited at this time.

I am running a site for a friend and wanted to change the code that currently exists in the homepage sidebar (see below).

I want to be able to display the first two posts in category 1, rather than all of them.

The existing code is below:

<div id="newsslideshow">
    <h2>Latest Bulletin</h2>
    <div id="newsslideshowscroller">
      <?php
      global $post;
      $myposts = get_posts('category=1');
      foreach($myposts as $post) :
      setup_postdata($post);
      ?>
    <div class="slide">
      <h3><?php the_title(); ?></h3>
      <p><? echo bm_better_excerpt(100, '...'); ?></p>
      <p><a href="<?php the_permalink(); ?>">Read more >></a></p>
     </div>
    <?php endforeach; ?>
</div>

Is it possible to edit this code above to make this happen? And if so what should it be.
Any help on this would be much appreciated. Thanks.

proverbs31woman on "How does the featured image work?"

$
0
0

I can't find anywhere a description of how the featured image works which is why I'm asking here.

I'm using WP 3.5.1. And have a photography blog. I've installed a new theme and will be featuring some of my latest posts on the home page, completed with a featured image from each post. I've got it set up in the widgets to show on the home page.

Now, in the past, all images I've featured in my photoblog have been hosted in Flickr and I've used an embed code to show the image in the post. I believe in earlier versions of WordPress you used to be able to click on the image and at the bottom of the screen click on 'featured image' but it appears in 3.5.1 that is not the case. So it looks like I'm actually going to have to upload the image I want to feature - is that correct?

The reason why I don't host all my images on my blog is because of web space. I have hundreds of photos, actually more like thousands, which would use up a lot of web space, which is why I use an embed code from Flickr, rather than uploading the images to my blog.

So, if someone can point me to how the featured image works please and verification that I can't actually use an image already embedded in a post as a featured image?

My site, in case that's important, is http://dandenong-ranges-photography.com.au/

konstman on "Can Not Publish My Content"

$
0
0

I have just made a WP site and set it up with a theme. I have installed the needed plugins and made my first post and was able to preview my site successfully! But after I go to my site just typing in my URL, my site looks like it just had a theme installed without the bells and whistles? I tried what I could and cannot get my site to look how I want it to look? After I'm done posting on my WP site and everything and previewing it, it's perfect and when I go to it, it looks undeveloped? Thank you guys for your help in assisting me in this matter!

Alagados on "The requested URL /www/wp-login.php was not found on this server."

$
0
0

Hello everyone,

I am quite new to all this blogging sphere, and currently just trying to help a friend who knows even less than I do on the subject...so please apologize if everyhting I say lacks precision, technical details...

A few months agos, I created a wordpress blog on an existing host at the following adress : http://www.paroquiansalagados.com.br/blog . Given the poor quality of the services provided by our host at the time, we decided to move the blog to a new host, at the following adress : http://www.paroquiadosalagados.com

Before doing so, I have tried to read as much as possible about wordpress blog migration on google, and I thought I had followed every step (backing up all files, including database, updating everything to the new host via ftp client, creating the new database on the new host, uploading the content of the past database, and finally updating the content of the config.php file). My new host is OVH, and I have uploaded all my files in the directory called "www". Before doing all this, I had also changed to Wordpress URL and the site URL to the new host (http://www.paroquiadosalagados.com) in the general settings.

At present, the blog seems to be functionning on ne new address. Yet, I CANNOT manage to reach my wordpress administration panel from this new URL; Each time I try to reach the adress "www.paroquiadosalagados.com/www/login", or "www.paroquiadosalagados.com/www/wp-login.php", I seem to be automatically redirected and I get the message "The requested URL /blog/wp-login.php was not found on this server."

Yet, I can always login via the old URL, which is still working : http://www.paroquiansalagados.com/blog

Can any one give me a clue about all this ??? I do not care if my previous blog (on the past host) has to be deleted...

Thanks in advance!


lenscraft on "Jetpack Carousel only working when I'm logged in?"

$
0
0

If you visit this page on my site, you will notice that you get the cool JetPack Carousel mosaic, but the titles are stuck in the 'up' position. If I'm logged into the site and browsing, I don't have this problem, but it begins the minute I log out.

Likewise, the Carousel itself stops working when I am logged out. If you click on any image, you see the standard page for that image, not the carousel display.

Does anyone have any idea as to why this might happen?

Vienen on "Images not loading after migrating from local to live server"

$
0
0

I have just migrated my local wordpress to live server. All seems ok. But my friend confirmed that my images/Slider images were not loading. The images are in my pc. Should I upload them to the themes>Images folder? And how do I update the links to load from there? I am new to wordpress. Please consider being detail. Thanks

thadjus on "New Wordpress Domain - Error 324 (net::ERR_EMPTY_RESPONSE)"

$
0
0

please help, i recently just moved my wordpress install from one domain hosted on godaddy to the same hosting account just to a new domain, i went thru the applications then move domain, everything works fine but when you go to check out and enter in your information thats when the error in the title comes up, even in chrome firefox and IE, i think its a problem with the database but i dont know what to look for or how to fix it, can anyone please help, thank you

the site is http://www.babesandfelines.com

clintmyster on "Implementing some javascript/jquery code into website"

$
0
0

Hi guys,

I have some code that I would like to implement on this page: http://visiontuitiongoldcoast.com.au/subjects-and-pricing/

The code can be found here:
http://www.mediafire.com/?csog61t1121y80q

The guy that made the code for me is on holidays and I really want to get this up and running asap! He mentioned to try adding everything manually but I'm struggling! There is a css file, an image, some js and a contact-form-handler. The html file is how it should look like.

Can anyone help me get this code implemented please?

datoseb on "Wp admin custom acces"

$
0
0

I created a new user in the administration and wanted to give him only option that can work on editing themes when hi is logged in the administration through wp-admin, other sections would be locked and impossible to touch. I tried a couple of different plugins but nothing. Last plugin that I tried Advanced Access Manager would not let me login to wp-admin if i tryed to log into the administration with a new created user using another browser. Please help me someone, this is very important for me.

Thanks in advance

Viewing all 130106 articles
Browse latest View live




Latest Images