mhd27
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Creative Blog] Change Background ColorThe background color doesn’t change at all. It’s okay; I’ll just keep it the way it is. Thanks for the help.
Forum: Themes and Templates
In reply to: [Creative Blog] Change Background ColorThanks, but the post area background changes to gray also, instead of staying white.
Forum: Themes and Templates
In reply to: [Creative Blog] Change Background ColorThanks for the reply. I would like the entire page to have a background color though. I simply want to keep the post area background with the text white, like https://i.imgur.com/RKxq0xd.png.
Forum: Themes and Templates
In reply to: [Creative Blog] Remove White Gap Under Header ImageThanks a lot. That worked.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostThanks so much. That solved it! Sorry if I was not explaining things clearly before.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostOh, okay. I was hoping for the content to show up automatically after creating a post without me having to do anything. I have only found a plugin that still makes me have to click at the end of the text and press enter on each post. I just wanted to save time and not have to do that for every post. I’ll figure something out. Thanks for all the help.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostIs add_filter(‘the_excerpt’, ‘add_before_content’);
already a custom excerpt? Because it is added. I left a theme review yesterday. Thanks for all the help.Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostThat fixes the content page part, but now there’s two “The links in the post below may be affiliate links.” on the blog pages…one hyperlinked and one as text.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostOops, not resolved. I just noticed the hyperlink only appears on a page and not within a post. It doesn’t show up on the post when clicking on the title.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostThanks a lot; that code worked. https://www.mikeshowlingdeals.com/privacy-policy/? It works for me.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostSorry, I am new to all this. Does the code have to be something else than this? `function add_before_content($content) {
return ‘<a href=”www.mikeshowlingdeals.com/privacy-policy/”>The links in the post below may be affiliate links.</a>
‘.$content;
}
add_filter(‘the_excerpt’, ‘add_before_content’);`Thanks.
Forum: Themes and Templates
In reply to: [Creative Blog] Hyperlink Predetermined Text on Every PostThanks for the reply. Replacing add_filter(‘the_content’, ‘add_before_content’) to add_filter(‘the_excerpt’, ‘add_before_content’) causes the website to go down though, and I have to edit functions.php and put back the default code.