Archie Makuwa
Forum Replies Created
-
Hmm, why did you do that? Did you get a second domain name or something?
Anyways, you need to manually edit the configurations in your database in the options table. You need to find the following in your wp_options (or whatever you named your options table):
– siteurl – change it to your domain name (full https://…)
– home – also change thisWatch this video – but follow the above instructions please. You are not editing the admin email but the above rows in your table.
Forum: Fixing WordPress
In reply to: URL keep the current oneYou cannot resolve that issue if I am correct. Only one domain has to be used as your primary or home domain name and it that case, unifun.am is your default. Sadly, I do not think it’s possible.
#But I could be wrong – I answered from my maximum intellectual ability.
Hi,
Have a look at the following thread. It can be caused my several factors and all of them are listed in the link.
Forum: Fixing WordPress
In reply to: Use as a website not a blogHi,
I went to https://www.casaflor.co.uk/shop shows a page without any content.
Have a look at this for a clearer understanding of pages and posts: https://www.socialbrite.org/2010/04/02/the-difference-between-wordpress-posts-and-pages/
Forum: Fixing WordPress
In reply to: Custom Navigation?Sure we do,
Yout pages will have links by default right? Yes. and easier method will be to write static html and create divs, eg:
<div id="feature-strip"> <div id="galleries"> <div class="fbox f-seen"> <a id="n-asseenin" title="" href="/category/as-seen-in/"> <strong>Frankie Magazine</strong> </a> </div> <div class="fbox f-portfolio fboxend"> <a id="n-asseenin" title="" href="/category/as-seen-in/"> <strong>Frankie Magazine</strong> </a> </div> ... <div class="fbox f-personal fboxend"> <a id="n-asseenin" title="" href="/category/as-seen-in/"> <strong>Frankie Magazine</strong> </a> </div> </div> </div>
For a more dynamic linking procedure, you may try a dump code along the lines:
<a href="<?php bloginfo('url'); ?>/about"</a>
It’s pretty straight forward – basic php / html
Forum: Fixing WordPress
In reply to: Use as a website not a blogThat is because you are using posts templates instead of pages to render your website. You might want to avoid using posts to create pages unless you know what you are doing and you can manipulate WordPress / Php beyong an average user
Forum: Fixing WordPress
In reply to: backing up a blogForum: Fixing WordPress
In reply to: backing up a blogThere are hundreds and hundreds of ways to do that…
[ Moderator note: link fixed, careful with that link button. ]
Plugins:
I recommend BackupWP: https://www.ads-software.com/plugins/backwpup/Manual:
I recommend basic understanding of mysql and wordpress (not necessarily php). Plenty of tutorials online. In fact, give me a moment and I will write one right now and send you the link.Forum: Fixing WordPress
In reply to: No Avatar – changing default text outputIf you have selected Gravatar under your the WordPress settings, you only need this piece of code (since it’s pretty much built-in):
<?php # get post data $temp_post = get_post($post_id); # grab the author meta $user_id = $temp_post->post_author; # grab the email address field $user_email = get_the_author_meta('user_email',$user_id); # if you wish to display name $display_name = get_the_author_meta('display_name',$user_id); # display field echo get_avatar( $user_email, $size = '150', $default = '<path_to_url>' ); ?>
Each time a user posts something, their avatar will be displayed… hope that answers your question.
Forum: Fixing WordPress
In reply to: No Avatar – changing default text outputHmm… in that case the Gravatar G logo is supposed to be displayed. Can I see the code you are using to display the avatar?
You have to create that yourself in a template – a custom loop that obeys your commands. The sample code is as follows:
$loop = new WP_Query( array( 'post_type' => 'companies', 'cat' => 'region', 'order' => 'DESC') );
Forum: Fixing WordPress
In reply to: No Avatar – changing default text outputI think that depends on how you set up your avatars initially to be displayed. What default avatar type are you using (WordPress, Gravatar, Monster ID, etc?
Forum: Fixing WordPress
In reply to: How to set up a website for user′s adsYou can do that your self – hand code (it’s always a better option). It’s pretty easy ??
Or you can try: https://www.ads-software.com/plugins/another-wordpress-classifieds-plugin/ (you may want to pay for the premium plugin)
Forum: Fixing WordPress
In reply to: Can google download robots.txt any faster?There is not set time or way around to get Google crawlers to read your robot.txt. The time varies on various factors, such as the popularity of your website, site structure, content, etc.
Patience is virtue – it can take anything from 12 hours to 6 weeks for your site to be crawled. In the meantime, you may want to consider other alternative options: Advertising, business directory listing, adwords, word of mouth, etc.
Forum: Fixing WordPress
In reply to: Twitter Feed not workingHi,
Here is an easier option for non-developers. It works 100%:
https://tweet.seaofclouds.com/