WordPress help - Ask your questions

Status
Not open for further replies.
so I think plus reps are well deserved in this instance. I also think bk071 has been a great asset, so plus reps to him too.

OriginalEXE is the man... All I did was just search the plugin directory and voila xD
 
For sure, but good help is good help. Just saying :)
 
Where can I find a good and free wordpress review theme?
 
Where can I find a good and free wordpress review theme?

Elegant themes Inreview is a great one... I personally use it.

Oh you're looking for free... well, here you go:
Code:
http://www.mediafire.com/download.php?04vzic05fnjgk9c

VT scan result:
Code:
https://www.virustotal.com/file/c713e341d6630a02db95f0457def440259cae5aa25915062fcf79ee8bc47c271/analysis/1337859893/
Not sure why "ClamAV" is showing that false positive... its a clean theme, I promise.
 
Last edited:
This is really nice thread. Thank you for helping in WP difficulties.

My question is about WP plugins for adding amazon affiliate. I have arrived at plugin amazonfeed, but not yet tried it. Is this plugin good? or suggest me the nice plugin which will hide code. Thanks in advance.
Unfortunately I can't give my opinion here because I was never in micro niche websites or Amazon affiliate. Sorry.
 
Hello OP.
Can you please suggest me a plugin so that I can show path for the post on post page.
It should look like: Homepage -->Category-->Sub Category
 
Last edited:
Hey there!

Please let me know how to add the author link automatically with the rel="author" tag beside it.

For it this is used :

<?php the_author_link(); ?>

is there any other way to show it, as i need to apply for Google authorship, i need to put rel="author" in the link.​
 
Hey there!

Please let me know how to add the author link automatically with the rel="author" tag beside it.

For it this is used :

<?php the_author_link(); ?>

is there any other way to show it, as i need to apply for Google authorship, i need to put rel="author" in the link.​
Add this to your theme function.php file:

Code:
function display_author_link() {
		$url = get_bloginfo ( url );
		$authorid = get_the_author_meta( ID );
		$nicename = get_the_author_meta( user_nicename );
		$authorname = get_the_author();
		$authorlink = '<a href="';
		$authorlink = $authorlink . $url;
		$authorlink = $authorlink . '?author=';
		$authorlink = $authorlink . $authorid;
		$authorlink = $authorlink . '" title="All posts by ';
		$authorlink = $authorlink . $nicename;
		$authorlink = $authorlink . '" rel="author">';
		$authorlink = $authorlink . $authorname;
		$authorlink = $authorlink . '</a>';
		echo $authorlink;
}

Now when you want to display teh author url with rel="author", you can call it with:
Code:
display_author_link();

Hope it helps :)
 
I have installed breadcrumbs but I can't see any hierarchy on post page right now. :( I think I have to insert a code somewhere. Can you please tell me whereto insert that code?
What theme are you using?

This is the code:
Code:
<div class="breadcrumbs">
    <?php if(function_exists('bcn_display'))
    {
        bcn_display();
    }?>
</div>
 
Hi BHW, I am not very active on forums but I follow you every day, and I want to repay for everything I received from this forum and it's members.

I have noticed that many users here are struggling with WordPress and that is why I want to offer my help in this topic. I have used WordPress for a very long time and I believe I can help many of you.
Feel free to ask questions about anything, styling, hosting, domains, plugins, themes, optimization etc.

Looking forward to helping you with your WordPress issues.

OriginalEXE

Hi, thank you for this!

I am brand new to creating websites, and using wordpress. Can you direct me to a good place where I can learn how to add wordpress to my site, and the basic steps (I just bought the name and got free hosting). The site, right now, has nothing on it. Any help (from anyone) would be greatly appreciated!

Thank you
 
I added some sales funnel pages to my site (custom wp templates from Codex) but I'm getting 400+ errors with validation. Is there a firebug addon that can tell me the actual .php file I have to edit? Firebug doesn't dig that deep but I know of numerous firebug addons that may do the the job.

Also, my page isn't displaying in IE and I wonder if it's due to the 400+ errors or something else.
 
Hi, thank you for this!

I am brand new to creating websites, and using wordpress. Can you direct me to a good place where I can learn how to add wordpress to my site, and the basic steps (I just bought the name and got free hosting). The site, right now, has nothing on it. Any help (from anyone) would be greatly appreciated!

Thank you
You can start with this website: http://www.wpbeginner.com/
 
Please tell me where should I insert this code. I am using Magazine Basic 2.7.7 by c. bavota.
http://wordpress.org/extend/themes/magazine-basic
Appearance -> Editor -> Find this code:
Code:
<div id="mainwrapper">
Below that, paste your code:
Code:
<div class="breadcrumbs">
    <?php if(function_exists('bcn_display'))
    {
        bcn_display();
    }?>
</div>

So now, it should look like this:
Code:
<div id="mainwrapper">
<div class="breadcrumbs">
    <?php if(function_exists('bcn_display'))
    {
        bcn_display();
    }?>
</div>

Clikc UPDATE FILE and you are golden :)
 
I added some sales funnel pages to my site (custom wp templates from Codex) but I'm getting 400+ errors with validation. Is there a firebug addon that can tell me the actual .php file I have to edit? Firebug doesn't dig that deep but I know of numerous firebug addons that may do the the job.

Also, my page isn't displaying in IE and I wonder if it's due to the 400+ errors or something else.
I believe there is no way to find out .php files because they are on the server and your browser never sees them.
 
Hey original and everyone else :) What are your 5 favourite plug ins and why?
 
Status
Not open for further replies.
Back
Top