WordPress help - Ask your questions

Status
Not open for further replies.
Hello Originalexe

Thank you for giving your time to answer question on Wordpress. I have a question. I would like to have thumbnail picture which can then be clicked and opens to large picture and then click large picture which then opens to my website. Is this possible. If so, how do I do it.
You mean like when visitor comes to your homepage, you would have all that?
 
Hi OriginalEXE,

Can you explain me how I put custom meta tags in wp?

For example the author tag.

Thank you
 
Hello Originalexe

I want to blog on post from wordpress with thumbnail in post. Then from thumbnail go to larger picture and from there to my web site.
 
Hello Originalexe

I want to blog on post from wordpress with thumbnail in post. Then from thumbnail go to larger picture and from there to my web site.
I imagine you would need to edit attachment.php for that and link it to your website. It would require some basic php skills.

In attachment.php, first you check if it's the attachment you need (attachments are also stored in databse like posts, so just check if oyu have the right id (is_single(idhere)) and if yes, link the attachment to your website.
 
hello sir , i have another question,

yesterday i got a work to integrate word press to a site. but on that theme each page different design .. what we have to do that time ..
 
hello sir , i have another question,

yesterday i got a work to integrate word press to a site. but on that theme each page different design .. what we have to do that time ..
So if I understand you correct, you need different design on each page, right?

I would do it this way:

First, create all the content, pages, posts etc. Then, edit page.php and include multiple hooks to check what page is being displayed.

For example:
PHP:
if(is_page('home')) {
//layout of the home page....
} elseif(is_page('about-us')){
//layout of the about us page...
} elseif...

That way you can create multiple html layouts and have the style for each of them in your style.css
 
Last edited:
yes .. am doing like thid , but what will happen when people need new page dynamically
 
I have created a site that while I was starting it I had it set to not be indexed by the search engines. Now that I have completed the site I have turned the setting off in the privacy settings and have added the site to my google webmaster tools. But when I try to submit my sitemap ect it shows up as robots.txt will not allow google to crawl the site......I have checked my robots.txt and its all set to allow. I have double checked my privacy settings and the site is set to allow bots to craw/index. So now I am a bit lost. Anyone got any ideas ?
 
I have created a site that while I was starting it I had it set to not be indexed by the search engines. Now that I have completed the site I have turned the setting off in the privacy settings and have added the site to my google webmaster tools. But when I try to submit my sitemap ect it shows up as robots.txt will not allow google to crawl the site......I have checked my robots.txt and its all set to allow. I have double checked my privacy settings and the site is set to allow bots to craw/index. So now I am a bit lost. Anyone got any ideas ?
Try installin WordPress SEO by Yoast, det indexing rules there, and than wait day or two.
 
Hey EXE. I am building a wp site, but it's hosted on someone else's hosting account. I have a log in for the dashboard, at least I did until today. I cant log in nor can my friend whos hosting account it is. We cant even reset the password from our email accounts. The site is still up minus a lot of content and no menus. The better security plugin had been installed and activated. Any ideas? Thanks mate.
 
Hey EXE. I am building a wp site, but it's hosted on someone else's hosting account. I have a log in for the dashboard, at least I did until today. I cant log in nor can my friend whos hosting account it is. We cant even reset the password from our email accounts. The site is still up minus a lot of content and no menus. The better security plugin had been installed and activated. Any ideas? Thanks mate.
It sounds like something is wrong with database. For recovering password, go to phpMyAdmin - database name - users table - find your admin username, click on edit, go here: http://www.adamek.biz/md5-generator.php and convert your new password to MD5 hash, and paste it in the password field next to your username in the database.

Save, and login.
 
It sounds like something is wrong with database. For recovering password, go to phpMyAdmin - database name - users table - find your admin username, click on edit, go here: http://www.adamek.biz/md5-generator.php and convert your new password to MD5 hash, and paste it in the password field next to your username in the database.

Save, and login.

And that will be in the hosting service cpanel?
 
Status
Not open for further replies.
Back
Top