asked in
Website Development & Programming
Updated

I have seen the film to do this but not see the move button.

I found it. Thx guys. You all were very helpful.

ya I agree, I've seen it too. The only thing left out of apache1 description is to then click on manager, then when the next screen comes up you'll see the move button on the top tier row of buttons. Hope that clarifies it better.

Hi. Move button is located under Manage my websites--- then you will find three buttons, from right to left...the third button is move button and it is sky blue in color.

Go to SiteRubix you will find it there just under you website. This link from Carson may help
https://my.wealthyaffiliate.com/everything-wordpress/how-do-i-move-a-wordpress-site-from-another-web-host-to-wa

Where is the move button to move a site?

Where is the move button to move a site?

asked in
Website Development & Programming
Updated

I have seen the film to do this but not see the move button.

I found it. Thx guys. You all were very helpful.

ya I agree, I've seen it too. The only thing left out of apache1 description is to then click on manager, then when the next screen comes up you'll see the move button on the top tier row of buttons. Hope that clarifies it better.

Hi. Move button is located under Manage my websites--- then you will find three buttons, from right to left...the third button is move button and it is sky blue in color.

Go to SiteRubix you will find it there just under you website. This link from Carson may help
https://my.wealthyaffiliate.com/everything-wordpress/how-do-i-move-a-wordpress-site-from-another-web-host-to-wa

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training
asked in
Social Engagement & Marketing
Updated

I know the affiliate link that appears on most blogs is that people post I can use to promote but if I click facebook like does my affiliate link go with it.

I would be curious to know the answer to this as well! :)

You can try it. Then have someone who know go on their Facebook and try the link.

Thanks Daren I will try that. I think it does but wanted to make sure. I appreciate your reply.

Let's know what you I find out.

See more comments

If I click facebook and share share does my own affiliate link follow it?

If I click facebook and share share does my own affiliate link follow it?

asked in
Social Engagement & Marketing
Updated

I know the affiliate link that appears on most blogs is that people post I can use to promote but if I click facebook like does my affiliate link go with it.

I would be curious to know the answer to this as well! :)

You can try it. Then have someone who know go on their Facebook and try the link.

Thanks Daren I will try that. I think it does but wanted to make sure. I appreciate your reply.

Let's know what you I find out.

See more comments

asked in
Website Development & Programming
Updated

The footer.php code is below: I want to get rid of the powered by Wordpress. I have looked at an explanation of this however the code in the explanation is not the same that I h

Interesting!

Ian, Your instructions was right on. Thanks its a message important to remember. I am sure many would love to get it.

It's a 30 second job to remove.

It's in the functions.php file in Atahualpa not the footer. It's as though they are trying to hide it from you :-) . ( I use that theme on an old property site of mine. )

Open that file, look a few lines down from the top and just remove the relevant bit beginning :


Powered by WordPress & Atahualpa

Just that don't touch the ' at either end of that section of code.

Save it and you're done. :-)

How do I get rid of change my footer?

How do I get rid of change my footer?

asked in
Website Development & Programming
Updated

The footer.php code is below: I want to get rid of the powered by Wordpress. I have looked at an explanation of this however the code in the explanation is not the same that I h

Interesting!

Ian, Your instructions was right on. Thanks its a message important to remember. I am sure many would love to get it.

It's a 30 second job to remove.

It's in the functions.php file in Atahualpa not the footer. It's as though they are trying to hide it from you :-) . ( I use that theme on an old property site of mine. )

Open that file, look a few lines down from the top and just remove the relevant bit beginning :


Powered by WordPress & Atahualpa

Just that don't touch the ' at either end of that section of code.

Save it and you're done. :-)

asked in
Website Development & Programming
Updated

I want people to make comments but I do not want to show how many comments are made. Is this possible?

I would not do it the more comments the better it is for you all the best

I am not talking about no comment I am talking about showing the number of comments on the site. The comments remain.

That's good to know IMc. Thanks.

Yes. It's possible. But I'm going to try to put you off trying to do it.

I learned through trial and error, you remember quickly once you've taken your site offline a few times by editing or deleting the wrong things. :-)

+++

You'll need to delete a bit of code to do it. However, you won't find deleting bits of code in Wordpress theme files on anyone's list of 'Recommended things to do to your site'. The reason being you can screw up your site very easily if you get it wrong

But go into Appearance > Editor. Then you are going to have to look through the files to see which pages have code relating to comments. This can be in various places. The theme I'm suing for my niche site has a Comments.php file. Some themes don't so you'd need to open up files and track it down.

Might be worth backing up the theme files just in case before you do anything.

The code will look something like this - but may well vary depending on the theme. This is from my current theme. It's the bit that shows the number of comments. If you simply didn't want Zero to show when there were no comments you could just delete that 0 you can see in the code:


<?php
printf( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'generate' ),
number_format_i18n( get_comments_number() ), '' . get_the_title() . '' );
?>

And away you go . . . if you know what that means then go ahead and edit it and remove the comments number.

If not, then refer back to best advice - don't do it or worry too much about it. It's not difficult to do, but is one of those things that can wait until you are happy tinkering with PHP files.


See more comments

Can I not show the number of comments?

Can I not show the number of comments?

asked in
Website Development & Programming
Updated

I want people to make comments but I do not want to show how many comments are made. Is this possible?

I would not do it the more comments the better it is for you all the best

I am not talking about no comment I am talking about showing the number of comments on the site. The comments remain.

That's good to know IMc. Thanks.

Yes. It's possible. But I'm going to try to put you off trying to do it.

I learned through trial and error, you remember quickly once you've taken your site offline a few times by editing or deleting the wrong things. :-)

+++

You'll need to delete a bit of code to do it. However, you won't find deleting bits of code in Wordpress theme files on anyone's list of 'Recommended things to do to your site'. The reason being you can screw up your site very easily if you get it wrong

But go into Appearance > Editor. Then you are going to have to look through the files to see which pages have code relating to comments. This can be in various places. The theme I'm suing for my niche site has a Comments.php file. Some themes don't so you'd need to open up files and track it down.

Might be worth backing up the theme files just in case before you do anything.

The code will look something like this - but may well vary depending on the theme. This is from my current theme. It's the bit that shows the number of comments. If you simply didn't want Zero to show when there were no comments you could just delete that 0 you can see in the code:


<?php
printf( _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'generate' ),
number_format_i18n( get_comments_number() ), '' . get_the_title() . '' );
?>

And away you go . . . if you know what that means then go ahead and edit it and remove the comments number.

If not, then refer back to best advice - don't do it or worry too much about it. It's not difficult to do, but is one of those things that can wait until you are happy tinkering with PHP files.


See more comments

asked in
Getting Started
Updated

I am needing feedback and comments on manuelwashington.biz

I got a warning when click on your link (see the image)

Also on your home page I really like the story of how you turned the oxygen tank and the wheelchair over to the senior citz. It is personal, it engages the reader and it has an impact. I would like to see that story come to life on the home page. I like the picture of you on your WA profile. You are standing and you look lean and healthy and it is nice and green. That picture in itself is a kind of testimonial. I think it should on your home page. I probably get a bit carried away with pics. I just love downloading them. My about page is on enlightenmentroad.com which is about all that I have on there at the moment.
I also get pictures from Dreamstime, although I believe there are place where you can get images for free.

Thank you so much for your input in http://manuelwashington.biz and because of it I have added a little more to the About me page and will be adding some more pictures as well to the home page. You input was very helpful. I certainly appreciate the comments and suggestions and will be implementing more in the future. Thanks a million.

Hi Manuel, sorry it has taken me some time to get back to you. I am still getting a little lost in the community. And my own site is driving me a little mental as I seem to spend whole days working out basic steps to make things work before I can even get around to the content. I have just looked at your site again and that is just looking so good. It just comes alive with healthy inspiration. I love the little slidy thing at the side that fades in and out. And having the picture of you makes it real and engaging and I think that makes it a journey that others would be inspired to follow. I know I am.

Thanks Catherine, once you get the community figured out , I know things will then move along so much better. Thank again you helped me a lot.

Hi Manuel. I am hugely interested in your topic and think it is so important. Lots of scope here to keep us all informed. At the moment the site is a little flat for me. I can however see that the content is coming along well. I would like to see some green and some graphics. I love pictures and I really respond to those when I visit someone's site. I am sure all of this will come as you learn. Also I just keep changing themes until I find one that I like.

Hello Manuel,
I left comments on your site. The only thing I would suggest is that where the "404" is you should immediately write something that will be as your cover page, or static blog...or...at the very least a message to guests saying "Under Constructions but please feel free to visit what I have started."

The 404 issue I do not see. Could you check again to see if it is still there and direct me exactly where it is located.

Hi Manuel, Great story and great content but I feel your site
needs some restructuring.

For example, line length is far too long and needs to be reduced to around 14-15 words at its present size, too long a line length tends to make the lines of text run into one another. This can be done by making your main content around 600px wide which will give some space around your site that can have a different background color.

One problem I found is that when I click on your link it takes me to a page that says "Nothing Found" until I click on your Home or About Me menu tabs. I'm not sure but maybe making your Home page a static page may solve this.

If it's of any help maybe my site, www.safeweightloss4all may give you some ideas, or if you prefer, maybe send me a PM with any questions you may have and I will do my best to answer them.

Manuel, love your chosen niche, it's got one hell of a lot of possibilities, but your site needs some TLC. In the meantime here's to your health, wealth and the time to enjoy both.

Harry thanks on the line length. I am checking that out right now. I certainly agree with you. The other issues I will be working on after the line length. Boy I appreciate you helping me out.

Hi, Manuel, your welcome. Anything else I can help you with don't hesitate to get in touch. I'll take another look at your site and see how you're doing.

Good job! You are doing good work by sharing the benefits of organic foods. Your personal story is inspirational. I'm sure visitors will appreciate it. There are some minor surface errors that I'm sure you'll find when you sweep the site again.

Yes I do have a few. I am correcting those one at a time. Thanks for your comments. Greatly appreciated.

off to a good start just move your about me and privacy to the end of your menu... have left you a comment

For some reason I am having some problems with that. It seems to be there at one time and then poof it goes back. I have a couple of other issues but will come back to this one because it is really important visually. Thanks for much for you comments.

if you go to appearance and click menu you can just move them around, sometimes it takes me a number of goes to get the hang of some of the training

It took me several times to make it work. I had to move all of them in different orders and then finally I moved them where I wanted them and it took ok. Thanks Katie for your help. That is what I like about WA. People like you.

Glad you have it sorted it can be so frustrating sometimes but it is good to be able to get the hang of it and we learn eventually lol

Hi Manuel. And you are even standing!, I have left you a comment on the site...

Standing , move, exercising. Of course I have loss a few steps along the way but making up for it walking trails . Thanks for leaving a comment . Greatly appreciated.

I think you have an excellent start on this with some valuable content. I think being so willing to share your personal story gives you a lot of credibility and will help people to grasp the level of passion you feel in what you are sharing information wise! Great work on it so far! :-)

Thanks Steph . Greatly appreciated. Yes it is a work on progress or as they under construction.

See more comments

Could you please add comments and do a feedback on my site?

Could you please add comments and do a feedback on my site?

asked in
Getting Started
Updated

I am needing feedback and comments on manuelwashington.biz

I got a warning when click on your link (see the image)

Also on your home page I really like the story of how you turned the oxygen tank and the wheelchair over to the senior citz. It is personal, it engages the reader and it has an impact. I would like to see that story come to life on the home page. I like the picture of you on your WA profile. You are standing and you look lean and healthy and it is nice and green. That picture in itself is a kind of testimonial. I think it should on your home page. I probably get a bit carried away with pics. I just love downloading them. My about page is on enlightenmentroad.com which is about all that I have on there at the moment.
I also get pictures from Dreamstime, although I believe there are place where you can get images for free.

Thank you so much for your input in http://manuelwashington.biz and because of it I have added a little more to the About me page and will be adding some more pictures as well to the home page. You input was very helpful. I certainly appreciate the comments and suggestions and will be implementing more in the future. Thanks a million.

Hi Manuel, sorry it has taken me some time to get back to you. I am still getting a little lost in the community. And my own site is driving me a little mental as I seem to spend whole days working out basic steps to make things work before I can even get around to the content. I have just looked at your site again and that is just looking so good. It just comes alive with healthy inspiration. I love the little slidy thing at the side that fades in and out. And having the picture of you makes it real and engaging and I think that makes it a journey that others would be inspired to follow. I know I am.

Thanks Catherine, once you get the community figured out , I know things will then move along so much better. Thank again you helped me a lot.

Hi Manuel. I am hugely interested in your topic and think it is so important. Lots of scope here to keep us all informed. At the moment the site is a little flat for me. I can however see that the content is coming along well. I would like to see some green and some graphics. I love pictures and I really respond to those when I visit someone's site. I am sure all of this will come as you learn. Also I just keep changing themes until I find one that I like.

Hello Manuel,
I left comments on your site. The only thing I would suggest is that where the "404" is you should immediately write something that will be as your cover page, or static blog...or...at the very least a message to guests saying "Under Constructions but please feel free to visit what I have started."

The 404 issue I do not see. Could you check again to see if it is still there and direct me exactly where it is located.

Hi Manuel, Great story and great content but I feel your site
needs some restructuring.

For example, line length is far too long and needs to be reduced to around 14-15 words at its present size, too long a line length tends to make the lines of text run into one another. This can be done by making your main content around 600px wide which will give some space around your site that can have a different background color.

One problem I found is that when I click on your link it takes me to a page that says "Nothing Found" until I click on your Home or About Me menu tabs. I'm not sure but maybe making your Home page a static page may solve this.

If it's of any help maybe my site, www.safeweightloss4all may give you some ideas, or if you prefer, maybe send me a PM with any questions you may have and I will do my best to answer them.

Manuel, love your chosen niche, it's got one hell of a lot of possibilities, but your site needs some TLC. In the meantime here's to your health, wealth and the time to enjoy both.

Harry thanks on the line length. I am checking that out right now. I certainly agree with you. The other issues I will be working on after the line length. Boy I appreciate you helping me out.

Hi, Manuel, your welcome. Anything else I can help you with don't hesitate to get in touch. I'll take another look at your site and see how you're doing.

Good job! You are doing good work by sharing the benefits of organic foods. Your personal story is inspirational. I'm sure visitors will appreciate it. There are some minor surface errors that I'm sure you'll find when you sweep the site again.

Yes I do have a few. I am correcting those one at a time. Thanks for your comments. Greatly appreciated.

off to a good start just move your about me and privacy to the end of your menu... have left you a comment

For some reason I am having some problems with that. It seems to be there at one time and then poof it goes back. I have a couple of other issues but will come back to this one because it is really important visually. Thanks for much for you comments.

if you go to appearance and click menu you can just move them around, sometimes it takes me a number of goes to get the hang of some of the training

It took me several times to make it work. I had to move all of them in different orders and then finally I moved them where I wanted them and it took ok. Thanks Katie for your help. That is what I like about WA. People like you.

Glad you have it sorted it can be so frustrating sometimes but it is good to be able to get the hang of it and we learn eventually lol

Hi Manuel. And you are even standing!, I have left you a comment on the site...

Standing , move, exercising. Of course I have loss a few steps along the way but making up for it walking trails . Thanks for leaving a comment . Greatly appreciated.

I think you have an excellent start on this with some valuable content. I think being so willing to share your personal story gives you a lot of credibility and will help people to grasp the level of passion you feel in what you are sharing information wise! Great work on it so far! :-)

Thanks Steph . Greatly appreciated. Yes it is a work on progress or as they under construction.

See more comments

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training