Ryan Yu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Editing title textHi 1531bkt,
It should work ok. OR probably I am looking at a different thing.
Can you send me the url and a screenshot of the area having the issue?
Forum: Fixing WordPress
In reply to: Editing title textHi 1531bkt,
Could you send me your functions.php code? You can use pastebin.com.
Forum: Fixing WordPress
In reply to: Editing title textHi 1531bkt,
Try to remove the bit below:
<?php _e( 'Currently browsing', 'pinboard' ); ?>
Forum: Fixing WordPress
In reply to: Unable to access Admin panel.To fix the issue, you need to access to your server, specifically your database.
It seems your site is hosted on GoDaddy so contact and ask them to send you the login details.Forum: Fixing WordPress
In reply to: Unable to access Admin panel.Hi Devan,
Ok so let me clarify few things.
1. Which website you are working on at the moment? foreverlovekids or aloveforever?
2. Which hosting are you using? You should be able to get the server access from the hosting company.
3. What changes exactly have you made when you say
… I attempted to change it to “aLoveForever.org” …
Forum: Fixing WordPress
In reply to: Unable to access Admin panel.Hi Devan,
To change the domain name, there are several things need to be done.
This article below will give you a good idea of what needs to be done.
https://codex.www.ads-software.com/Changing_The_Site_URLHave a read and if you have any questions, feel free to let me know.
Forum: Fixing WordPress
In reply to: site titleNo worries ??
Forum: Fixing WordPress
In reply to: site titleIt seems your title tag is empty.
Login to the backend and go to Settings > General and see if the “Site Title” has any value in it.Forum: Fixing WordPress
In reply to: site titleHi CreativeVi,
Can you post your site url?
And are you having a problem with the title tag or actual title on the page?
Forum: Fixing WordPress
In reply to: Editor Missing in 3.5.1Have you tried with Twenty Twelve theme? Note though I wouldn’t recommend switching the theme on the live site. If you have any staging server, compare your theme with Twenty Twelve theme.
Forum: Fixing WordPress
In reply to: Putting a "thumbs up" / "thumbs down" on WordPress articlesHi spin_queen,
There would be some options you can think of.
– Facebook link button (probably the most common one).
– Love Claw at https://loveclaw.com/ (one of my clients came across this and it looks quite interesting).
– WP Plugin: https://likebot.com/And start with you can analyze your social media measurement with Google Analytics.
https://www.google.com.au/analytics/features/social.htmlForum: Fixing WordPress
In reply to: Date and Author not showing on certain posts.. but they do on pages.Try remove/comment out the line below and see if it works.
before' => theme_get_metadata_icons( 'date,author', 'header' ),
Forum: Fixing WordPress
In reply to: Date and Author not showing on certain posts.. but they do on pages.Look at this part of the code.
/* Start the Loop */ while (have_posts()) { the_post(); get_template_part('content', get_post_format()); }
You will have to check a template called something like content-post.php or something starting with “content-” in the file name.
Forum: Fixing WordPress
In reply to: Date and Author not showing on certain posts.. but they do on pages.Hi avocado1,
The posts are not displaying the date and author information but on the pages they are (please see https://www.lostinthemanor.co.uk)
Please check index.php and see if the code is added to display the date and author details. Please see the links below to get the code.
https://codex.www.ads-software.com/Function_Reference/the_date
https://codex.www.ads-software.com/Function_Reference/the_authorI also can’t get rid of the underlining on the post titles, is there a way i can do this?
Add the code below in style.css
h2 a { text-decoration: none; } h2 a:hover { text-decoration: underline; }
Forum: Fixing WordPress
In reply to: Plugin shortcode not working on custom themeHave you tried to create your own simple shortcode and see if it is working?
If you are not sure how to add the shortcode, check this out.
https://codex.www.ads-software.com/Shortcode_APIIf that doesn’t work too, then as esmi said, probably your theme isn’t quite doing correctly.