Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I change the location of the Share this buttonsDo you have access to the php files?
What theme are you using?
Are you using a plugin for your sharing buttons?Forum: Fixing WordPress
In reply to: Changing Link Color and Hover ColorDo you have any experience with CSS?
You would need to find the proper class name to focus on to change the designated color.
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
Forum: Fixing WordPress
In reply to: Category page 2 returns 404 errorDefinitely worth a try! You would likely have more control over it that way. Or separating them into two (although if it’s a loop/query issue without pagination being included, I don’t know if that will work either.
ie:
<?php next_posts_link( 'Older Entries' ); previous_posts_link( 'Newer Entries' ); ?>(I’m sure you’ve already checked out this page: https://codex.wordpress.org/Pagination)
Forum: Fixing WordPress
In reply to: Category page 2 returns 404 errorAh, okay – I see.
Well, one issue that might be preventing it from working is that it isn’t within your ‘loop’. Have you tried moving it upward within it?
Forum: Fixing WordPress
In reply to: How to change a link to go to another page in your WP site?It might be; it would depend on how it was originally set up. Is there a link to the live site? Was it a custom theme?
Forum: Fixing WordPress
In reply to: Website is in english but google says its in macedonianAnother idea is to add <meta name=”language” content=”english”> to your head.
Forum: Fixing WordPress
In reply to: Website is in english but google says its in macedonianHave you tried asking in the Adsense forums? (https://productforums.google.com/forum/#!forum/adsense)
From what I can tell, your site has
<html lang="en-US">set, so not sure why it would be picking up as anything else.Forum: Fixing WordPress
In reply to: READ MORE link does not workHow did you implement the shift so it added the link to the general blog page?
When I click the ‘read more’ link, it brings me to a different page (with more blog posts) – Is that not the desired result?
Depending on your access to files and your experience with code, I would recommend looking over: https://codex.wordpress.org/Customizing_the_Read_More
Forum: Fixing WordPress
In reply to: Category page 2 returns 404 errorI think the error might be thrown because of line 3 –
if ( in_category('technical-blog')) : ?>
How is your blog organized? It looks like the other ‘categories’ aren’t having this applied because they aren’t in that conditional statement.Is there a php file for category?
Forum: Fixing WordPress
In reply to: Navigation menu format issueWere you editing the CSS/styling? Where were you making updates?
Your list items are now display: block instead of inline-block (one way of making them horizontal).Forum: Fixing WordPress
In reply to: Warning: Cannot modify header informationI have found this error is usually related to a ‘whitespace’ issue somewhere in the first file named (in my case, it’s been at the end).
Have you made changes to that nav-menu.php file?
Forum: Fixing WordPress
In reply to: Category page 2 returns 404 errorI know you’ve said you changed permalinks but have you tried just resaving them as the type you actually want? Sometimes that resets the htaccess file.
Also, have you seen this thread?
Do you have access to the php files still?
Forum: Fixing WordPress
In reply to: Footer dissappearedI can see your footer currently – did you get this sorted?
Forum: Fixing WordPress
In reply to: comment author name showing with "post author" textWhat theme are you using? Do you have any experience using php or editing CSS?
Forum: Fixing WordPress
In reply to: "Site Content" on visible on PagesWhat do you mean by ‘site content’ list? Is your site live somewhere?