Radices
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment notification not coming throughSounds too simple but have you checked the spam folder? When you set-up a user does the email notification work?
Forum: Hacks
In reply to: Metabox on certain custom page templates onlyTry this thread it looks like what your are looking for.
http://wordpress.stackexchange.com/questions/82477/how-to-add-add-meta-box-to-specific-page-template
Forum: Fixing WordPress
In reply to: Site got hackedRemain calm and carefully follow this guide. When you’re done, you may want to implement some (if not all) of the recommended security measures.
Forum: Fixing WordPress
In reply to: How to get this kind of next previous option on your wordpress siteYou could do the top part with a Slider Plugin.
Forum: Fixing WordPress
In reply to: how to get today's date automatically in post title wordpressThere are a few ways to do it. You can edit the themes template files and add the code or you can make create a filter. Check out this thread:
Forum: Fixing WordPress
In reply to: Word press 4.4 update problemWhat is the name of the file in your themes folder?
Forum: Fixing WordPress
In reply to: Out of Memory?How much memory are you allocating to PHP? Dose you host allow you control of the php.ini?
Forum: Fixing WordPress
In reply to: Update WordPressHow are you trying to do the update? Keys are used for SSH and SFTP. I have heard there are some issues with the update asking for FTP credentials.
Forum: Fixing WordPress
In reply to: MY wordpress crashed after trying to plug in bbpressHello Hugh,
Rename the plugins folder using FTP or cpanels file manager and that will disable all the plugins. When you have regain access to the site you can name it back and activate the plugins.
Forum: Fixing WordPress
In reply to: Login issuePlease post the URL.
Forum: Fixing WordPress
In reply to: How do I add a non-post paragraph of text at top of Post page?That’s great! Editing template files is a bit easier to start with but note that if you change themes you will need to do it over again, where as the functions method would work with any theme … you’d just have to copy your functions.php file over.
Good job!
Forum: Fixing WordPress
In reply to: Clone website and redireccto adminAwesome ..Please mark this Resolved in the right sidebar.
Forum: Fixing WordPress
In reply to: How to share a line of text on social mediaIt will share a snippet and link back to the post. Can you link to the site so we can see how the quotes are organized?
Forum: Fixing WordPress
In reply to: How do I add a non-post paragraph of text at top of Post page?Your welcome. Let us know if you need more help or mark this resolved when you get it working please.
Forum: Fixing WordPress
In reply to: How do I add a non-post paragraph of text at top of Post page?Sorry this might be better.
http://codex.wordpress.org/Plugin_API#Filters
First thing is you should create a child theme and do your customization on it so you do not lose the changes if you update the parent theme.
https://codex.wordpress.org/Child_Themes
The concept is that you can put a function in the child themes functions.php file that will add content to a page. Throughout WordPress there are hooks that will fire your code at specific times. So you need to find the correct hook to add your text to the top of the blog roll page.
https://codex.wordpress.org/Function_Reference/the_content
Here is an example of adding text to the bottom of every post. The
if(is_single())is for individual blog posts. Not sure right off what it should be for the blog roll page but look here.https://codex.wordpress.org/Function_Reference/is_singular
add_filter ('the_content', 'insertSubscribeNewsLetter',5); function insertSubscribeNewsLetter($content) { if(is_single()) { $content.= '<h3>Sign up for free updates to make your life more epic!</h3>'; } return $content; }EDIT:
Since you want to put your message at the top you’d do it this way$custom_content = 'YOUR CONTENT GOES HERE'; $custom_content .= $content; } return $custom_content;You could also edit the themes template page and put the code (text) directly in it.